head	1.2;
access;
symbols
	branch:1.1.0.2;
locks; strict;
comment	@# @;


1.2
date	2000.06.08.16.57.26;	author pearson;	state Exp;
branches;
next	1.1;

1.1
date	2000.06.08.16.56.17;	author pearson;	state Exp;
branches
	1.1.2.1;
next	;

1.1.2.1
date	2000.06.08.16.56.54;	author pearson;	state Exp;
branches;
next	;


desc
@@


1.2
log
@*** empty log message ***
@
text
@// Button.java

package random.application;

import random.util.*;

public class Button
{
  /* Instantiates a Button with origin (0, 0) and zero width and height.
   * You must call an initializer method to properly initialize the Button.
   */
  public Button ()
  {
    super ();

    // _titleColor = Color.black;
    // _disabledTitleColor = Color.gray;
    // _titleFont = Font.defaultFont ();
  }

  /* Convenience constructor for instantiating a Button with
   * bounds x, y, width, and height.  Equivalent to
   *     foo = new Button ();
   *     foo.init (x, y, width, height);
   */
  public Button (int x, int y, int width, int height)
  {
    this ();
    init (x, y, width, height);
  }
}
@


1.1
log
@*** empty log message ***
@
text
@d16 3
a18 3
    _titleColor = Color.black;
    _disabledTitleColor = Color.gray;
    _titleFont = Font.defaultFont ();
@


1.1.2.1
log
@*** empty log message ***
@
text
@d20 11
@

