|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 10/23/2009 at 04:21AM PDT, ID: 24837596 | Points: 125 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: |
package ToyTestOne;
public class ToyApp extends javax.swing.JFrame
{
Toy myToy;
public ToyApp()
{
myToy = new Toy("GI Joe", 'B', "6-12", 12.99);
initComponents(); // compiler says it cannot find symbol: method initComponents
}
public static void main(String[] args)
{
}
}
|
Advertisement