blob: bd9fdd4b4a9889520f888ac78652e7dd6a352fb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// = 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 ();
}
|