Search:

Type: Posts; User: Norm

Search: Search took 0.30 seconds.

  1. Replies
    12
    Views
    2,617

    Re: public void run () error message

    Do some research about how to use the import statement.
    http://docs.oracle.com/javase/tutorial/java/package/usepkgs.html

    Where is the GraphicsProgram class defined?
  2. Replies
    12
    Views
    2,617

    Re: public void run () error message

    Do you need an import statement for the compiler to find GraphicsProgram?

    The rest of the errors are very hard to solve because the error message does not show where the error is or what the...
  3. Replies
    12
    Views
    2,617

    Re: public void run () error message

    You need to get the error message from the compiler that says what the error is.
    What you posted does not say what the error is. It just says: Unresolved compilation problem:
    and gives a line...
  4. Replies
    12
    Views
    2,617

    Re: public void run () error message

    When you get errors, you need to copy the full text of the error messages and post them here.
  5. Replies
    12
    Views
    2,617

    Re: public void run () error message

    A method: run() can not be defined inside of another method: main()
    Add the ending } for one method's definition before starting to define a new method.
Results 1 to 5 of 5