architecture « Development « Java Swing Q&A





1. Where do I find a good, short, architecture-oriented introduction to Java Swing GUI for web developerrs?    stackoverflow.com

I'm just starting my first Java Swing project(doing mainly web-based apps before) and try to understand how to build a proper architecture with separation of concerns between the MVC components. Just about ...

2. Design question: Dynamically changing GUI -> sending implementation classes as soap attachments    stackoverflow.com

Here's a scenario: I have a java front end (RCP/SWT) app which currently has no authentication support. I have to however, add security to this application so that it gets deployed in ...

3. Java Swing architecture problem?    stackoverflow.com

Till now, I have developed simple swing applications so there was no need to break the GUI code into diff. classes but as this application is going to be very large, ...

4. Java Class Architecture for swing GUI programming    stackoverflow.com

I am writing an application that requires a large amount of swing GUI components. I am having a lot of trouble organizing the class. Is there a methodology to organize and ...

5. Real life Java Swing Project    stackoverflow.com

I've been working with swing for the last 2 years, but i'm still not satisfy with my own work. The apps are "fast" enough, but the development isn't enough "clean". Can you recommend ...

6. Making Java Swing applications persistent    stackoverflow.com

I'd like to add persistence to my Swing-based application; and this is the first time that I'm doing something like that. I know how to use Java serialization APIs (though I'm using ...

7. How should a database-centric Java Swing application be designed?    stackoverflow.com

I have been writing a database-centric Java Swing application for a while. The GUI and DAO-code ends up in a big tree like:

JFrame
  |
JTabbedPane
    |
   +--------------------+----------------------+-------------+
 ...

8. Swing rich client in a multi tier context    stackoverflow.com

We're in the analysis/early design phase of a future Swing application where persistance is provided by a database (probably an alternative between Oracle and mySql depending on the customer's money). Basically, the ...

9. Swing based application architecture    stackoverflow.com

I am planning to develop a swing application for developing a large in-house software. Features: It should be menu based. Modular Secure Can you please help in choosing the ...





10. Three-tier architecture: Must Exception dependencies between layers be avoided?    stackoverflow.com

Following this question: Handling exceptions in a Swing UI (low level to high level and exception wrapping) There is an obvious dependency between the logic/service and ui layer in that an Exception ...

11. How to organize a Swing GUI application?    stackoverflow.com

I've written a few GUI's using Swing and I know about MVC, but I never found a good way to really organize my code somehow. What I am looking for is ...

12. Java Server application architecture with swing clients    stackoverflow.com

We have a swing application where swing clients on a LAN communicate with mySql directly. Now we are planning to set up a server for handling workflow tasks and notifications to ...

13. GUI Development - Free Tools    stackoverflow.com

We are looking at building a GUI application having the following attributes - * approx 100 screens * approx 200 users * interfaces with 8 ...

14. Application design - Updating domain object    stackoverflow.com

I would like to improve the design of some part of my application. It is a swing application in which the user interface is updated by data received from a ...

15. Designing object oriented systems / GUIs    stackoverflow.com

I have a pretty large project in front of me that I intend to develop using Java. I am no pro at Java but I have used it before and look ...

16. GUI Architecture and Design in Java (Swing)    stackoverflow.com

I have spent the last several hours scouring the internet looking for examples and ideas on how to write a medium sized GUI in java. I know a little about ...





17. Needing some direction on architecture- would love some pointers    coderanch.com

I've looked over Sun's tutorials and just bought the book "graphic Java 2" by David Geary. What I am really looking for are some examples on how to architect Swing applications. Basically all the tutorials and sample code usually deal with small bits of information. What I'm wanting are some tips on how to best design a real application. To start ...

18. Architecture for mutiple GUI versions    coderanch.com

19. Component Architecture    coderanch.com

20. Architecture question...    coderanch.com

I recently had a problem while creating a swing application. A general idea is to provide a "client" to manage a sort of "remote server". Ok, first app. had been created in a way when it can manage only one server, you need more - run more apps... But then I decided to rewrite to have one app with multiple JFrames, ...

21. Swing's Component Architecture    coderanch.com

22. Need help with swing app architecture    coderanch.com

Hello, We are developing an application at work.. This would be my first large swing application, so I need some help coming up with the right architecture. The app presents a swing GUI to the user. It connects to the IBM AS400 mainframe to retrieve data (by making Cobol calls/reading files/records using JTOpen and JDBC). I am wondering about several different ...

23. Swing GUI class architecture    coderanch.com

I'm in the process of constructing my first really involved GUI in Java Swing. As I go along, I find myself creating a lot of custom Swing Components, like JPanels that take user input and are reused in different areas. Since I don't work with anyone in my office that programs in Java, I'd like some input on how Java programmers ...

24. Books on GUI applications architecture    coderanch.com

Hi everyone. I recently started developing an application using Java and SWT. I'm happy with the progress, but the GUI related code is getting to messy. It just seems that there is a lot of state information to pass around, even for the simplest operations. For example, something as simple as opening a window carries with it a lot of state ...

25. Application Architecture Design    coderanch.com

Hi, I need to put together an architecture for an application and would appreciate any pointers you could give me. The requirements: A rich client application A web version (applet) Needs to "look like a Windows application" Ideally also run on non-Windows platforms, e.g. Mac. Displays a vector image Allows the user to interact with the vector image, (left and right) ...

26. good desktop application architecture with JSR-295 beansbinding?    coderanch.com

I'm trying to come up with a decent desktop application architecture to be used with Netbeans and beansbinding, and it seems a bit difficult to come up with a clear design. I would like to get a decent separation of concerns with presentation layer clearly separated from the core of the application. Application core would have 0 Swing dependencies. I looked ...

27. 3 tier architecture advice    coderanch.com

I have looked into the preferences API. I am thinking that it might be advantages to store the preferences in the Database tier instead of on the local file system/ computer. This way they are available for a given user on various computers. Is it possible to point the storage to a database instead of the ( hidden files ( Linux ...

28. swing application architecture ?    coderanch.com

29. Architecture for GUI app    forums.oracle.com

Hi! Can someone please suggest how to set the architecture up of a Swing Applet which accesses a database. I am using eclipse and currently all the Swing stuff is building up in the main class/file. Where do I do form validation for example? Where do I do database processing? I would like an application which I with ease can use ...