blob: 53294f33ea2dc240cb3011aa46c0ed9567da4fd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// $Id$
//
// = FILENAME
// VisComp.java
//
// = AUTHOR
// Michael Kircher (mk1@cs.wustl.edu)
//
// = DESCRIPTION
// This is the interface for Java Beans.
//
// ============================================================================
public interface VisComp extends java.util.Observer {
public void setName (String title);
public int getProperty ();
}
|