Results 1 to 2 of 2

Thread: Illegal Start of Expression

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2006
    Location
    Ireland
    Posts
    9

    Illegal Start of Expression

    I am having problems with this part of the code and I was wondering if any one knew what the problem was

    public void MouseExited( MouseEvent event );

    The error message that i am getting is Illegal Start of Expression

  2. #2
    Frenzied Member System_Error's Avatar
    Join Date
    Apr 2004
    Posts
    1,111

    Re: Illegal Start of Expression

    That's a method. You don't need the semicolon at the end. Plus mouse should be lower case:

    Code:
    public void mouseExited( MouseEvent event )
    {
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width