Skip to main content

All Questions

3 votes
1 answer
157 views

Mail Client - Displaying email details for selected JTable Row

I'm trying to write a very simple IMAP email client in Java. There is one table per account with multiple multiline rows. The last selected row of one of the tables should be displayed in an extra ...
Tobias Grothe's user avatar
2 votes
1 answer
120 views

MVC pattern in my Repair Shop application

I am currently learning Java programing by building real life business application for repair shops. I am posting this code so I can get critical review, and change my application architecture if ...
Zoran Jankov's user avatar
1 vote
2 answers
2k views

Using decorator and strategy pattern for dynamically generating SQL queries

This is a link to my application that actually runs on the design specified in the image. The idea behind the image is that the SubjectInfoViewer behaves as the ...
Muhammad Luqman's user avatar
1 vote
1 answer
70 views

File-copying Manager

I have the following java class which has many private variables and methods: ...
cssGEEK's user avatar
  • 947
3 votes
1 answer
285 views

Swing application: Working with GridBagLayout and Mediator pattern

SCENARIO: As a follow-up of this question on Stackoverflow asked few days back, I am working on a swing application(article tagging tool) where the user(on an initial jpanel) would fill up some ...
Sandeep Chatterjee's user avatar
3 votes
1 answer
2k views

Implementation of MVC pattern with paintComponent method

Could someone review my code, with respect to OOP, clean code and MVC pattern? Main app: ...
Pulkownik's user avatar
  • 317
1 vote
1 answer
333 views

Encapsulating this List<Message> properly

I know that Swing isn't true MVC: Using this modified MVC helps to more completely decouple the model from the view. Leaving aside the veracity of the above claim, the problem I run into is that I ...
Thufir's user avatar
  • 369
3 votes
1 answer
2k views

Design Pattern for Swing application

I have a Swing application with no real design pattern. I want to start learning to design Swing or any types of application properly. Here is the main JFrame class....
Stripies's user avatar
  • 133