summaryrefslogtreecommitdiff
path: root/TAO/examples/Simulator/DOVEBrowser/DemoObservable.java
blob: 51181416add7d1dce51eff782b8a5b387a676a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// = FILENAME
//    DemoObservable.java
//
// = AUTHOR
//    Michael Kircher (mk1@cs.wustl.edu)
//
// = DESCRIPTION
//   This class servers as the core class of the simulation demo
//
// ============================================================================



public abstract class DemoObservable extends java.util.Observable {

  public abstract int getProperty ();
}