FileDocCategorySizeDatePackage
PickleButton.javaAPI DocExample473Tue Jun 03 23:33:54 BST 1997BeansBook.util

PickleButton.java

// This example is from the book Developing Java Beans by Robert Englander. 
// Copyright (c) 1997 O'Reilly & Associates.
// You may study, use, modify, and distribute this example for any purpose.
// This example is provided WITHOUT WARRANTY either expressed or implied.

// Chapter 5 -- The PickleButton class

package BeansBook.util;

public class PickleButton extends java.awt.Button
{
   public PickleButton()
   {
      super("Pickle Button");
   }
}