Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 145815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:29:26+00:00 2026-05-11T08:29:26+00:00

I didn’t imagine that I would encounter radically new syntax in Java anymore at

  • 0

I didn’t imagine that I would encounter radically new syntax in Java anymore at this stage, but lo and behold, I just encountered something:

The exact context and what the code below should do is pretty irrelevant – it’s there just to give some kind of context.

I’m trying to synthetically create an event in IT Mill Toolkit, so I wrote this kind of line:

buttonClick(new Button.ClickEvent(button)); 

But, Eclipse gives me the following error message:

No enclosing instance of type Button is accessible. Must qualify the allocation with an enclosing instance of type Button (e.g. x.new A() where x is an instance of Button).

When I rewrite the line above as follows, it doesn’t complain anymore:

buttonClick(button.new ClickEvent(button)); // button instanceof Button 

So, my question is: What does the latter syntax mean, exactly, and why doesn’t the first snippet work? What is Java complaining about, and what’s it doing in the second version?

Background info: Both Button and Button.ClickEvent are non-abstract public classes.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:29:27+00:00Added an answer on May 11, 2026 at 8:29 am

    Inner classes (like Button.ClickEvent) need a reference to an instance of the outer class (Button).

    That syntax creates a new instance of Button.ClickEvent with its outer class reference set to the value of button.

    Here’s an example – ignore the lack of encapsulation etc, it’s just for the purposes of demonstration:

    class Outer {     String name;      class Inner     {         void sayHi()         {             System.out.println('Outer name = ' + name);         }     } }  public class Test {     public static void main(String[] args)     {         Outer outer = new Outer();         outer.name = 'Fred';          Outer.Inner inner = outer.new Inner();         inner.sayHi();     } } 

    See section 8.1.3 of the spec for more about inner classes and enclosing instances.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I didn't attend PDC 2008, but I heard some news that C# 4.0 is
I didn't get the answer to this anywhere. What is the runtime complexity of
I didn't see any similar questions asked on this topic, and I had to
I didn't see the option to point the workspace (or it's VS equivalent, I'm
I didn't upgrade to Vista until May or so and one of the things
Why didn't languages such as C end up being using for web dev? Surely
I didn't give a lot of info in my last question. I've built llv8call
Since I didn't do a good job writing the last question, and most of
My visual assist x didn't work after I installed visual c# 2008. Is there
From Wired magazine: ...the Palin hack didn't require any real skill. Instead, the hacker

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.