Examples of SelfContainedPanel


Examples of com.deitel.jhtp6.ch22.SelfContainedPanel

   private SelfContainedPanel myPanel; // panel to draw an oval

   // set up GUI and mouse motion event handlers for application window
   public CustomFrame()
   {
      myPanel = new SelfContainedPanel(); // create self contained panel
      myPanel.setBackground( Color.YELLOW ); // set background to yellow

      setLayout( new FlowLayout() ); // set frame layout
      add( myPanel ); // add self contained panel to frame
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.