How to go about with real GUI development with Java Swing and MVC.

Posted by Myth17 on Stack Overflow See other posts from Stack Overflow or by Myth17
Published on 2010-02-23T18:21:23Z Indexed on 2010/05/04 14:38 UTC
Read the original article Hit count: 202

Filed under:
|
|

I am creating a Blackjack Card game emulator. I am a SCJP,familiar with Core Java concepts. I have a very basic understanding of Java swings and awt. Already finished writing the basic game logic,a CLI logic. My design includes several classes like, Dealer,Player,Table,Card,Casino and some others.. Enums for Cards and suite.

I have read about MVC as a theoretical concept, familiar with the name 'design patters'(no understanding whatsoever as to how they are implemented) Everywhere I am suggested to learn while writing some real code.So I started off with this...

I am stuck now, how should I go about writing code for my project?? Writing the GUI code and organising it within the already existent code.

© Stack Overflow or respective owner

Related posts about java

Related posts about swing