FileDocCategorySizeDatePackage
SimpleExample.javaAPI DocExample524Tue Jun 03 23:33:12 BST 1997None

SimpleExample.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 SimpleExample class

public class SimpleExample implements java.io.Serializable
{
   protected int anInteger;
   protected float aFloat;
   protected java.awt.Button aButton;

   public SimpleExample()
   {
   }
}