Posted By:
saila_swain
Posted On:
Wednesday, February 15, 2006 04:14 AM
Q.when I am executing this program it is executed and frame dialogbox is comming but in command prompt it is displaying this error. java.lang.NoSuchMethodError: getAccessibleTableFromContext at com.sun.java.accessibility.AccessBridge.run (Native Method) at java.lang.Thread.run(Unknown Source) My program is import java.awt.*; public class Example1 { public static void main(String [] args) { Frame f = new Frame("Example 1"); f.show(); } }
More>>
Q.when I am executing this program it is executed and frame
dialogbox is comming but in command prompt it is displaying this error.
java.lang.NoSuchMethodError: getAccessibleTableFromContext
at com.sun.java.accessibility.AccessBridge.run
(Native Method)
at java.lang.Thread.run(Unknown Source)
My program is
import java.awt.*;
public class Example1
{
public static void main(String [] args)
{
Frame f = new Frame("Example 1");
f.show();
}
}
<<Less