RE: how to instantiate the inner class.



Replace "new Inner(..)" with "new Outer().new Inner(..) "
Weird syntax, but this works.

--
David Anton
www.tangiblesoftwaresolutions.com
Home of:
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant J#: VB.NET to J# Converter


"anoop" wrote:

> Hello,
> I created a .java code file in Visual J#.Net and converted it into
> the application by adding the "public static void main(String args[])"
> function.
> I have created the two classes one extends from Applet, and the other
> extends from Frame. The class which I inherited from the Frame class becomes
> the inner class of the class extended from the Applet. Now How do I
> instantiate the class extended from Frame class. the outline code is
>
> public class menu_show extends Applet
> {
>
> ------init , paint action function---------
> }
>
> public class MenuBarFrame extends Frame
> {
> paint,action function for Menu
> }
>
> public static void main(String args[])
> {
> applet class instance is created
> instance of frame is created
>
> MenuBarframe Instance ? - How to create here? - : An explicit enclosing
> instance of class 'menu_show' is needed to instantiate inner class
> 'MenuBarFrame'
>
> Menu , MenuBar, MenuItem instance is created
>
> }
>
>
>
.



Relevant Pages

  • Re: calling action function of the inner class in main function
    ... I have created the two classes one extends from Applet, ... The class which I inherited from the Frame class becomes ... call the functions of the class extended from Frame class - MenuBarFrame ...
    (microsoft.public.dotnet.vjsharp)
  • calling functions of the inner class- parameters of action functio
    ... I have created the two classes one extends from Applet, ... The class which I inherited from the Frame class becomes ... call the functions of the class extended from Frame class - MenuBarFrame ...
    (microsoft.public.dotnet.vjsharp)
  • how to instantiate the inner class.
    ... I have created the two classes one extends from Applet, ... The class which I inherited from the Frame class becomes ... public class MenuBarFrame extends Frame ...
    (microsoft.public.dotnet.vjsharp)
  • Re: Converting from AWT to Swing - Compile Error
    ... > I am converting an application from using AWT to swing. ... all I did was change Component to JComponent and Frame to ... Because an object of type JComonent can never be an instance of JFrame. ... JFrame extends Frame which extents Window which extends Container which ...
    (comp.lang.java.gui)
  • Mouse listener in Swing Japplet
    ... I had a little demo standalone applet with a working mouse listener. ... public class myApplet13 extends Applet implements MouseListener { ... which defines a top tabbed pane and a bottom text area ...
    (comp.lang.java.programmer)