user interface - Can i get some field like "Panel" from the Frame in java AWT? -
i'm new java , learning building gui using awt (not swing!)
so, have created:
- a
frame
(let call f). a class, creates me
checkbox
inpanel
in constructor:public class checkboxing extends component{ public checkboxing( panel p) { ... } }
is there field in frame
can use initialize exemplar of checkboxing
? know, can rewrite checkboxing
accept frame
instead of panel
, or use jframe
, ruin idea i'm trying implement.
Comments
Post a Comment