Java Eclipse: Gui help. How do I call a class for it to make another buttons and stuff for my frame (host)?
-
My code: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class YAY implements JFrame{ public YAY(){ super("Frame!") setVisible(true); setSize(300,300); setLayout(new FlowLayout()); JButton button = new JButton("ok"); Handler handler = new Handler(); button.addActionListener(handler); } public class Handle implements ActionListener{ public void actionPerformed(ActionEvent e){ if(e.getSource()==button){ // call another class to make extra stuff for the frame } } } public static void main(String [] args){ YAY frame = new YAY() } }
-
Answer:
Type another "public class".... Good luck!
mico at Yahoo! Answers Visit the source
Other answers
Type another "public class".... Good luck!
Related Q & A:
- How do I do a HTTP GET in Java (android?Best solution by Stack Overflow
- How do I call another yahoo member?Best solution by Yahoo! Answers
- How do I get a job in IT or Software Development if I have no experience and only a 3rd class degree?Best solution by answers.yahoo.com
- Please help - how do I delete a profile?Best solution by Yahoo! Answers
- How do I call a cell phone in Australia?Best solution by wiki.answers.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.