Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 5 of 5

Thread: Need Help with main arg for the project

  1. #1
    Junior Member
    Join Date
    Nov 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need Help with main arg for the project

    Hello, I'm having trouble coming up with a main arg method for this Towers of Hanoi project code that I have aquired. It doesn't work on my compiler and I assume its definably due to its missing the main method. Since this project is long and complex, I need help to come up with a main method so I can play with this game. Would apreciate if anyone can help:

     import java.awt.*;
     
    import java.applet.*;
     
    import java.util.*;
     
     
     
    public class Tower extends Applet {
     
        TowerPanel panel;
     
        TowerControl control;
     
     
     
        public void init() {
     
    	resize(500,450);
     
    	setLayout(new BorderLayout());
     
     
     
    	panel = new TowerPanel();
     
    	add("Center", panel);
     
    	add("South", control = new TowerControl(panel));
     
        }
     
     
     
        public void start() {
     
    	panel.start();
     
        }
     
     
     
        public void stop() {
     
    	panel.stop();
     
        }
     
        public boolean action(Event evt, Object arg) {
     
            if (arg instanceof Boolean) {
     
                if (((Checkbox)evt.target).getLabel().equals("Reset")) {
     
                    panel.reset = ((Boolean)arg).booleanValue();
     
                } else {
     
                    panel.reset = ((Boolean)arg).booleanValue();
     
                }
     
                return true;
     
            } 
     
            return false;
     
        }
     
    }

    class Towering {
     
    	int num_rings[] = new int[3];
     
    	int top_size[] = new int[3];
     
     
     
    	public Towering(int a){
     
    		num_rings[0] = a;
     
    		num_rings[1] = 0;
     
    		num_rings[2] = 0;
     
    		top_size[0] = 40;
     
    		top_size[1] = 1000;
     
    		top_size[2] = 1000;
     
    	}
     
     
     
    	public void reset(int b){
     
    		num_rings[0] = b;
     
    		num_rings[1] = 0;
     
    		num_rings[2] = 0;
     
    		top_size[0] = 40;
     
    		top_size[1] = 1000;
     
    		top_size[2] = 1000;
     
    	}
     
     
     
    }

    class ring {
     
    	int ring_size[] = new int[10];
     
    	int old_x[] = new int[10];
     
    	int which_x[] = new int[10];
     
    	int which_y[] = new int[10];
     
    	int order[] = new int[10];
     
    	int which_tower[] = new int[10];
     
     
     
    	public ring(int a){
     
    	 for(int i = 0; i<a; i++){
     
    		ring_size[i] = 40+20*i;
     
    		which_x[i] = 100;
     
    		old_x[i] = which_x[i];
     
    		which_y[i] = 400-30*(a-i);
     
    		order[i] = a-i;
     
    		which_tower[i] = 0;
     
    		}
     
    	}
     
     
     
    	public void reset(int b){
     
    	 for(int i = 0; i<b; i++){
     
    		ring_size[i] = 40+20*i;
     
    		which_x[i] = 100;
     
    		old_x[i] = which_x[i];
     
    		which_y[i] = 400-30*(b-i);
     
    		order[i] = b-i;
     
    		which_tower[i] = 0;
     
    		}
     
    	}
     
    }

    class TowerPanel extends Panel implements Runnable{
     
    	Thread going = null;
     
    	int width = 500;
     
    	int height = 400;
     
    	int tower_height = 350;
     
    	int tower_width = 20;
     
    	int num_rings = 8;
     
    	int pick_ring = 1000;
     
    	int tempx;
     
    	int tempy;
     
    	boolean win = false;
     
    	boolean reset;
     
     
     
    	//special effect words
     
    	String s = new String("Tower of Hanoi");
     
    	char separated[];
     
    	int x_coord = 0, y_coord = 0;
     
     
     
    	Towering towers = new Towering(num_rings);
     
    	ring rings = new ring(num_rings);	
     
     
     
    	TowerPanel(){
     
    		setFont(new Font("TimesRoman",Font.BOLD,40));
     
    		setBackground(new Color(170,170,170));	
     
    		separated = new char [s.length()];
     
    		s.getChars(0,s.length(),separated,0);
     
    	}
     
     
     
    	public void paint(Graphics g) {
     
    		//special words
     
    		for(int i=0;i<s.length();i++)
     
    		{
     
    		x_coord = (int) (Math.random()*10+15*i+100);
     
    		y_coord = (int) (Math.random()*10+36);
     
    		g.setColor(new Color(200-10*i, 10*i, 10*i));
     
    		g.drawChars(separated, i,1,x_coord,y_coord);
     
    		}
     
     
     
    		//drawing those three towers
     
    		g.setColor(Color.red);
     
    		g.fill3DRect(90,height-tower_height, tower_width, tower_height, true);
     
    		g.setColor(Color.blue);
     
    		g.fill3DRect(240,height-tower_height, tower_width, tower_height, true);
     
    		g.setColor(Color.yellow);
     
    		g.fill3DRect(390,height-tower_height, tower_width, tower_height, true);
     
     
     
     
     
    		//drawing all the rings
     
    		g.setColor(Color.black);
     
    		for(int j=0;j<num_rings;++j){
     
    			g.setColor(new Color(20*j+55,200-20*j,20*j+55));
     
    			g.fill3DRect(rings.which_x[j]-rings.ring_size[j]/2, rings.which_y[j], rings.ring_size[j], 30, true);
     
    		}
     
     
     
    		//Congratulation
     
    		if(win){
     
    			g.setColor(Color.white);
     
    			g.drawString("Congratulation!!!",150,150);
     
    			}
     
     
     
    	}
     
     
     
    	public synchronized boolean mouseDown(Event evt, int x, int y) {
     
    		for(int k=0; k<num_rings; ++k){
     
    		if(rings.order[k] == towers.num_rings[rings.which_tower[k]]) {
     
    		if((x>=(rings.which_x[k]-rings.ring_size[k]/2))&&(x<=((rings.which_x[k]-rings.ring_size[k]/2)+rings.ring_size[k]))){
     
    	 	if((y>=rings.which_y[k])&&(y<=(rings.which_y[k]+30))){
     
    			pick_ring = k;
     
    		}}}}
     
    		return true;
     
    	}
     
     
     
    	public synchronized boolean mouseDrag(Event evt, int x, int y) {
     
    		if(pick_ring!=1000){
     
    			rings.which_x[pick_ring] = x;
     
    			rings.which_y[pick_ring] = y;
     
    		//repaint(1,x-40,y-40,rings.ring_size[pick_ring]*5,200);
     
    		repaint();
     
    		}
     
    		return true;
     
    	}
     
     
     
    	public synchronized boolean mouseUp(Event evt, int x, int y) {
     
    		if(pick_ring!=1000){
     
    			if((140>=rings.which_x[pick_ring])&&(100<=(rings.which_x[pick_ring]+rings.ring_size[pick_ring]))&&(rings.ring_size[pick_ring]<towers.top_size[0])){			
     
    			  ++towers.num_rings[0];
     
    			  --towers.num_rings[rings.which_tower[pick_ring]];
     
    			  rings.which_tower[pick_ring] = 0;
     
    			  rings.which_x[pick_ring] = 100;
     
    			  rings.order[pick_ring] = towers.num_rings[0];
     
    			  rings.which_y[pick_ring] = 400-30*towers.num_rings[0];
     
    	}
     
    			else if((280>=rings.which_x[pick_ring])&&(240<=(rings.which_x[pick_ring]+rings.ring_size[pick_ring]))&&(rings.ring_size[pick_ring]<towers.top_size[1])){
     
    	 		  ++towers.num_rings[1];
     
    			  --towers.num_rings[rings.which_tower[pick_ring]];
     
    			  rings.which_tower[pick_ring] = 1;
     
    			  rings.which_x[pick_ring] = 250;
     
    			  rings.order[pick_ring] = towers.num_rings[1];
     
    			  rings.which_y[pick_ring] = 400-30*towers.num_rings[1];
     
     
     
    	}	
     
    			else if((430>=rings.which_x[pick_ring])&&(390<=(rings.which_x[pick_ring]+rings.ring_size[pick_ring]))&&(rings.ring_size[pick_ring]<towers.top_size[2])){	  
     
    			  ++towers.num_rings[2];
     
    			  --towers.num_rings[rings.which_tower[pick_ring]];
     
    			  rings.which_tower[pick_ring] = 2;
     
    			  rings.which_x[pick_ring] = 400;
     
    			  rings.order[pick_ring] = towers.num_rings[2];
     
    			  rings.which_y[pick_ring] = 400-30*towers.num_rings[2];  
     
    	}
     
    			else{ 
     
    			  rings.which_x[pick_ring] = rings.old_x[pick_ring];
     
    			  rings.which_y[pick_ring] = 400-30*towers.num_rings[rings.which_tower[pick_ring]];
     
    	}
     
    	}	
     
    		rings.old_x[pick_ring] = rings.which_x[pick_ring];
     
    		pick_ring = 1000;
     
     
     
    		//recompute the to_size for all towers
     
    		for(int z=0;z<num_rings;++z){
     
    			if(rings.order[z] == towers.num_rings[rings.which_tower[z]]){
     
    				towers.top_size[rings.which_tower[z]] = rings.ring_size[z];
     
    	}
     
    		}
     
     
     
    		//see if the user wins
     
    		for(int t=0;t<3;++t){
     
    			if((t!=0)&&(towers.num_rings[t] == num_rings)){
     
    				win = true;
     
    			}	
     
    			if(towers.num_rings[t] == 0){
     
    				towers.top_size[t] = 1000;
     
    			}
     
    		}
     
    		repaint();
     
    		return true;
     
    	}
     
     
     
    	public void start(){
     
    		if(going == null){
     
    			going = new Thread(this);
     
    			going.start();
     
    		}
     
    	}
     
     
     
    	public void stop() {
     
    		going = null;
     
    	}
     
     
     
    /*
     
    	private Image offScreenImage;
     
    	private Dimension offScreenSize;
     
    	private Graphics offScreenGraphics;
     
     
     
    	public final synchronized void update (Graphics g){
     
    		Dimension d = size();
     
    		if((offScreenImage == null) || (d.width !=offScreenSize.width) || (d.height != offScreenSize.height)) {
     
    			offScreenImage = createImage(d.width, d.height);
     
    			offScreenSize = d;
     
    			offScreenGraphics = offScreenImage.getGraphics();
     
    		}
     
    		paint(offScreenGraphics);
     
    		g.drawImage(offScreenImage, 0, 0, null);
     
    	}
     
     
     
    */
     
    	public void run() {
     
    		while (going!=null) {
     
    		try {Thread.sleep(100);} catch (InterruptedException e){}
     
    		repaint(1,0,0,500,45);
     
    		//repaint();
     
    	}
     
    	 	going = null;
     
    	}
     
     
     
     
     
        public void reset(boolean filled, int num_blocks) {
     
    	win = false;
     
    	num_rings = num_blocks;
     
    	towers.reset(num_rings);
     
    	rings.reset(num_rings);
     
    	repaint();
     
        }
     
    }
     
     
     
    class TowerControl extends Panel {
     
        TextField s;
     
        TextField e;
     
        TowerPanel pa;
     
     
     
        public TowerControl(TowerPanel pa) {
     
    	this.pa = pa;
     
    	add(s = new TextField("8", 4));
     
    	add(new Button("Reset Blocks Number"));
     
        }
     
     
     
        public boolean action(Event ev, Object arg) {
     
    	if (ev.target instanceof Button) {
     
    	    String label = (String)arg;
     
     
     
    	    pa.reset(label.equals("Reset Blocks Number"),
     
    			  Integer.parseInt(s.getText().trim()));
     
     
     
    	    return true;
     
    	}
     
     
     
    	return false;
     
     
        }
     
    }


  2. #2
    Member Darryl.Burke's Avatar
    Join Date
    Mar 2010
    Location
    Madgaon, Goa, India
    Posts
    494
    Thanks
    8
    Thanked 48 Times in 46 Posts

    Default Re: Need Help with main arg for the project

    TL;DR.

    Get rid of the unnecessary double line spacing and enclose the code in code tags. Read the signatures of some of the forum regulars on other threads if you don't know how to do this.

    db

  3. #3
    Junior Member nnovello's Avatar
    Join Date
    Nov 2010
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Need Help with main arg for the project

    public static void main (String args [] )
    {
    Tower t = new Tower();
    }

    You would have to have a tower constructor to do this however..
    Put all the code laying out in your Tower class into a constructor.
    /***************************
    *
    * Nick Novello
    * University At Buffalo
    *
    ***************************/

  4. #4
    Junior Member
    Join Date
    Nov 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Need Help with main arg for the project

    I thought the compiler automatically makes the constructor? So would be then:

    public Tower () {

    TowerPanel panel;
    TowerControl control;

    resize(500,450);

    setLayout(new BorderLayout());

    panel = new TowerPanel();
    add("Center", panel);
    add("South", control = new TowerControl(panel));
    }

    ?

  5. #5
    Banned
    Join Date
    May 2010
    Location
    North Central Illinois
    Posts
    1,631
    My Mood
    Sleepy
    Thanks
    390
    Thanked 112 Times in 110 Posts

    Default Re: Need Help with main arg for the project

    import java.awt.*;
     
    import java.applet.*;
     
    import java.util.*;
     
     
     
    public class Tower extends Applet {
     
    TowerPanel panel;
     
    TowerControl control;
     
     
     
    public void init() {
     
    resize(500,450);
     
    setLayout(new BorderLayout());
     
     
     
    panel = new TowerPanel();
     
    add("Center", panel);
     
    add("South", control = new TowerControl(panel));
     
    }
     
     
     
    public void start() {
     
    panel.start();
     
    }
     
     
     
    public void stop() {
     
    panel.stop();
     
    }
     
    public boolean action(Event evt, Object arg) {
     
    if (arg instanceof Boolean) {
     
    if (((Checkbox)evt.target).getLabel().equals("Reset") ) {
     
    panel.reset = ((Boolean)arg).booleanValue();
     
    } else {
     
    panel.reset = ((Boolean)arg).booleanValue();
     
    }
     
    return true;
     
    }
     
    return false;
     
    }
     
    }
     
     
     
    class Towering {
     
    int num_rings[] = new int[3];
     
    int top_size[] = new int[3];
     
     
     
    public Towering(int a){
     
    num_rings[0] = a;
     
    num_rings[1] = 0;
     
    num_rings[2] = 0;
     
    top_size[0] = 40;
     
    top_size[1] = 1000;
     
    top_size[2] = 1000;
     
    }
     
     
     
    public void reset(int b){
     
    num_rings[0] = b;
     
    num_rings[1] = 0;
     
    num_rings[2] = 0;
     
    top_size[0] = 40;
     
    top_size[1] = 1000;
     
    top_size[2] = 1000;
     
    }
     
     
     
    }
     
     
     
    class ring {
     
    int ring_size[] = new int[10];
     
    int old_x[] = new int[10];
     
    int which_x[] = new int[10];
     
    int which_y[] = new int[10];
     
    int order[] = new int[10];
     
    int which_tower[] = new int[10];
     
     
     
    public ring(int a){
     
    for(int i = 0; i<a; i++){
     
    ring_size[i] = 40+20*i;
     
    which_x[i] = 100;
     
    old_x[i] = which_x[i];
     
    which_y[i] = 400-30*(a-i);
     
    order[i] = a-i;
     
    which_tower[i] = 0;
     
    }
     
    }
     
     
     
    public void reset(int b){
     
    for(int i = 0; i<b; i++){
     
    ring_size[i] = 40+20*i;
     
    which_x[i] = 100;
     
    old_x[i] = which_x[i];
     
    which_y[i] = 400-30*(b-i);
     
    order[i] = b-i;
     
    which_tower[i] = 0;
     
    }
     
    }
     
    }
     
     
     
    class TowerPanel extends Panel implements Runnable{
     
    Thread going = null;
     
    int width = 500;
     
    int height = 400;
     
    int tower_height = 350;
     
    int tower_width = 20;
     
    int num_rings = 8;
     
    int pick_ring = 1000;
     
    int tempx;
     
    int tempy;
     
    boolean win = false;
     
    boolean reset;
     
     
     
    //special effect words
     
    String s = new String("Tower of Hanoi");
     
    char separated[];
     
    int x_coord = 0, y_coord = 0;
     
     
     
    Towering towers = new Towering(num_rings);
     
    ring rings = new ring(num_rings);
     
     
     
    TowerPanel(){
     
    setFont(new Font("TimesRoman",Font.BOLD,40));
     
    setBackground(new Color(170,170,170));
     
    separated = new char [s.length()];
     
    s.getChars(0,s.length(),separated,0);
     
    }
     
     
     
    public void paint(Graphics g) {
     
    //special words
     
    for(int i=0;i<s.length();i++)
     
    {
     
    x_coord = (int) (Math.random()*10+15*i+100);
     
    y_coord = (int) (Math.random()*10+36);
     
    g.setColor(new Color(200-10*i, 10*i, 10*i));
     
    g.drawChars(separated, i,1,x_coord,y_coord);
     
    }
     
     
     
    //drawing those three towers
     
    g.setColor(Color.red);
     
    g.fill3DRect(90,height-tower_height, tower_width, tower_height, true);
     
    g.setColor(Color.blue);
     
    g.fill3DRect(240,height-tower_height, tower_width, tower_height, true);
     
    g.setColor(Color.yellow);
     
    g.fill3DRect(390,height-tower_height, tower_width, tower_height, true);
     
     
     
     
     
    //drawing all the rings
     
    g.setColor(Color.black);
     
    for(int j=0;j<num_rings;++j){
     
    g.setColor(new Color(20*j+55,200-20*j,20*j+55));
     
    g.fill3DRect(rings.which_x[j]-rings.ring_size[j]/2, rings.which_y[j], rings.ring_size[j], 30, true);
     
    }
     
     
     
    //Congratulation
     
    if(win){
     
    g.setColor(Color.white);
     
    g.drawString("Congratulation!!!",150,150);
     
    }
     
     
     
    }
     
     
     
    public synchronized boolean mouseDown(Event evt, int x, int y) {
     
    for(int k=0; k<num_rings; ++k){
     
    if(rings.order[k] == towers.num_rings[rings.which_tower[k]]) {
     
    if((x>=(rings.which_x[k]-rings.ring_size[k]/2))&&(x<rings.which_x[k]-rings.ring_size[k]/2)+rings.ring_size[k]))){
     
    if((y>=rings.which_y[k])&&(y<=(rings.which_y[k]+30))){
     
    pick_ring = k;
     
    }}}}
     
    return true;
     
    }
     
     
     
    public synchronized boolean mouseDrag(Event evt, int x, int y) {
     
    if(pick_ring!=1000){
     
    rings.which_x[pick_ring] = x;
     
    rings.which_y[pick_ring] = y;
     
    //repaint(1,x-40,y-40,rings.ring_size[pick_ring]*5,200);
     
    repaint();
     
    }
     
    return true;
     
    }
     
     
     
    public synchronized boolean mouseUp(Event evt, int x, int y) {
     
    if(pick_ring!=1000){
     
    if((140>=rings.which_x[pick_ring])&&(100<=(rings.which_x[pick_ring]+rings.ring_size[pick_ring]))&&(rings.ring_size[pick_ring]<towers.top_size[0])){
     
    ++towers.num_rings[0];
     
    --towers.num_rings[rings.which_tower[pick_ring]];
     
    rings.which_tower[pick_ring] = 0;
     
    rings.which_x[pick_ring] = 100;
     
    rings.order[pick_ring] = towers.num_rings[0];
     
    rings.which_y[pick_ring] = 400-30*towers.num_rings[0];
     
    }
     
    else if((280>=rings.which_x[pick_ring])&&(240<=(rings.which_x[pick_ring]+rings.ring_size[pick_ring]))&&(rings.ring_size[pick_ring]<towers.top_size[1])){
     
    ++towers.num_rings[1];
     
    --towers.num_rings[rings.which_tower[pick_ring]];
     
    rings.which_tower[pick_ring] = 1;
     
    rings.which_x[pick_ring] = 250;
     
    rings.order[pick_ring] = towers.num_rings[1];
     
    rings.which_y[pick_ring] = 400-30*towers.num_rings[1];
     
     
     
    }
     
    else if((430>=rings.which_x[pick_ring])&&(390<=(rings.which_x[pick_ring]+rings.ring_size[pick_ring]))&&(rings.ring_size[pick_ring]<towers.top_size[2])){
     
    ++towers.num_rings[2];
     
    --towers.num_rings[rings.which_tower[pick_ring]];
     
    rings.which_tower[pick_ring] = 2;
     
    rings.which_x[pick_ring] = 400;
     
    rings.order[pick_ring] = towers.num_rings[2];
     
    rings.which_y[pick_ring] = 400-30*towers.num_rings[2];
     
    }
     
    else{
     
    rings.which_x[pick_ring] = rings.old_x[pick_ring];
     
    rings.which_y[pick_ring] = 400-30*towers.num_rings[rings.which_tower[pick_ring]];
     
    }
     
    }
     
    rings.old_x[pick_ring] = rings.which_x[pick_ring];
     
    pick_ring = 1000;
     
     
     
    //recompute the to_size for all towers
     
    for(int z=0;z<num_rings;++z){
     
    if(rings.order[z] == towers.num_rings[rings.which_tower[z]]){
     
    towers.top_size[rings.which_tower[z]] = rings.ring_size[z];
     
    }
     
    }
     
     
     
    //see if the user wins
     
    for(int t=0;t<3;++t){
     
    if((t!=0)&&(towers.num_rings[t] == num_rings)){
     
    win = true;
     
    }
     
    if(towers.num_rings[t] == 0){
     
    towers.top_size[t] = 1000;
     
    }
     
    }
     
    repaint();
     
    return true;
     
    }
     
     
     
    public void start(){
     
    if(going == null){
     
    going = new Thread(this);
     
    going.start();
     
    }
     
    }
     
     
     
    public void stop() {
     
    going = null;
     
    }
     
     
     
    /*
     
    private Image offScreenImage;
     
    private Dimension offScreenSize;
     
    private Graphics offScreenGraphics;
     
     
     
    public final synchronized void update (Graphics g){
     
    Dimension d = size();
     
    if((offScreenImage == null) || (d.width !=offScreenSize.width) || (d.height != offScreenSize.height)) {
     
    offScreenImage = createImage(d.width, d.height);
     
    offScreenSize = d;
     
    offScreenGraphics = offScreenImage.getGraphics();
     
    }
     
    paint(offScreenGraphics);
     
    g.drawImage(offScreenImage, 0, 0, null);
     
    }
     
     
     
    */
     
    public void run() {
     
    while (going!=null) {
     
    try {Thread.sleep(100);} catch (InterruptedException e){}
     
    repaint(1,0,0,500,45);
     
    //repaint();
     
    }
     
    going = null;
     
    }
     
     
     
     
     
    public void reset(boolean filled, int num_blocks) {
     
    win = false;
     
    num_rings = num_blocks;
     
    towers.reset(num_rings);
     
    rings.reset(num_rings);
     
    repaint();
     
    }
     
    }
     
     
     
    class TowerControl extends Panel {
     
    TextField s;
     
    TextField e;
     
    TowerPanel pa;
     
     
     
    public TowerControl(TowerPanel pa) {
     
    this.pa = pa;
     
    add(s = new TextField("8", 4));
     
    add(new Button("Reset Blocks Number"));
     
    }
     
     
     
    public boolean action(Event ev, Object arg) {
     
    if (ev.target instanceof Button) {
     
    String label = (String)arg;
     
     
     
    pa.reset(label.equals("Reset Blocks Number"),
     
    Integer.parseInt(s.getText().trim()));
     
     
     
    return true;
     
    }
     
     
     
    return false;
     
     
    }
     
    }

Similar Threads

  1. Replies: 6
    Last Post: November 12th, 2010, 04:40 AM
  2. main methos problem
    By bondage in forum What's Wrong With My Code?
    Replies: 3
    Last Post: April 1st, 2010, 02:43 AM
  3. Replies: 2
    Last Post: March 26th, 2010, 11:22 AM
  4. Main Class Not Found Problem
    By shadow in forum Java Theory & Questions
    Replies: 3
    Last Post: September 29th, 2009, 09:42 AM
  5. could not find the main class
    By Tisofa in forum Object Oriented Programming
    Replies: 1
    Last Post: September 27th, 2009, 02:58 AM