Search:

Type: Posts; User: nnovello

Search: Search took 0.10 seconds.

  1. Replies
    4
    Views
    1,648

    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...
  2. Replies
    1
    Views
    2,051

    Re: expected

    public Screen(int xRes, yRes)

    needs to be:

    public Screen(int xRes, int YRes)

    Why are you declaring these global variables as private int above?
    They are in a different scope than the...
  3. Thread: Nick Novello

    by nnovello
    Replies
    6
    Views
    1,389

    Re: Nick Novello

    So instead of doing this:
    Runtime rt = Runtime.getRuntime();
    Process pr = rt.exec(systemCommand);

    Do I need to implement Runnable and start these tasks as new threads in another class?
  4. Thread: Nick Novello

    by nnovello
    Replies
    6
    Views
    1,389

    Re: Nick Novello

    So the standard output from Test.java is executed before the JFrame is closed, but is not appended to my Global.infoBox until after it is closed.
  5. Thread: Nick Novello

    by nnovello
    Replies
    6
    Views
    1,389

    Re: Nick Novello

    Right.. That is if Test.java is run in a working code editor like emacs or vim or eclipse or notepad or whatever your norm. is. But inside the JSwift editor that I wrote, that is not what happens. ...
  6. Thread: Nick Novello

    by nnovello
    Replies
    6
    Views
    1,389

    Re: Nick Novello

    Sorry not to to be clear. No exceptions, no compile errors. It runs. It just doesn't work the way I want it too. I guess im looking for implementation help really. If I open up a Test program...
  7. Thread: Nick Novello

    by nnovello
    Replies
    6
    Views
    1,389

    Nick Novello

    /*****************************************************************************
    *
    * Authored by Nicolas Novello in Fall 2010
    * File JSwift.java is an ultralight code editor-not quite...
Results 1 to 7 of 7