Results 1 to 6 of 6
Thread: jpanel
- 02-22-2012, 03:43 PM #1
Member
- Join Date
- Aug 2011
- Posts
- 60
- Rep Power
- 0
- 02-22-2012, 03:47 PM #2
Re: jpanel
Favor composition over inheritance. Your class can have any number of JFrames/JPanels whatever as static or instance members, or local variables.
Extending a class is done to add/modify state or behavior. Not just for use.
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 02-22-2012, 04:28 PM #3
Member
- Join Date
- Aug 2011
- Posts
- 60
- Rep Power
- 0
Re: jpanel
please give me an example of class that contains jpanel + its call
- 02-24-2012, 09:28 PM #4
Member
- Join Date
- Aug 2011
- Posts
- 60
- Rep Power
- 0
Re: jpanel
i still in wait of example : java class without extends that contains a jframe and a jpanel at least
- 02-24-2012, 10:35 PM #5
Senior Member
- Join Date
- Jan 2011
- Location
- Belgrade, Serbia
- Posts
- 227
- Rep Power
- 3
Re: jpanel
Ok, if I understand you right, following VERY simple example might help.
Java Code:import javax.swing.JPanel; import javax.swing.JFrame; class Example { JFrame frame; JPanel panel; public Example(){ frame = new JFrame(); panel = new JPanel(); frame.add(panel); frame.setVisible(true); } public static void main(String[] args) { new Example(); } }
- 02-25-2012, 09:46 AM #6
Member
- Join Date
- Aug 2011
- Posts
- 60
- Rep Power
- 0
Similar Threads
-
Using an ActionListener To move from One JPanel in a JtabbedPane to another JPanel...
By Ermm in forum AWT / SwingReplies: 1Last Post: 12-13-2011, 02:38 AM -
Change JPanel text of Parent JPanel from JDialog
By bikashlama in forum AWT / SwingReplies: 7Last Post: 12-09-2011, 03:47 AM -
Adding a jpanel to a customized Jpanel Class
By trishtren in forum AWT / SwingReplies: 7Last Post: 04-05-2011, 06:52 PM -
Placing a new JPanel over a paint overriden JPanel
By Tanshaydar in forum AWT / SwingReplies: 4Last Post: 12-08-2010, 06:00 PM -
calling JPanel's JTextField from another JPanel class
By k2k in forum AWT / SwingReplies: 3Last Post: 04-20-2009, 11:31 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks