summaryrefslogtreecommitdiff
path: root/java/src/ServiceObjectRecord.java
blob: b92a72173cb8c2cacd77c7ea272b8230545a5e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*************************************************
 *
 * = PACKAGE
 *    JACE.ServiceConfigurator
 *
 * = FILENAME
 *    ServiceObjectRecord.java
 *
 * Provided to show future symmetry.  ServiceRecord currently
 * provides all the desired behavior necessary for a record
 * of a ServiceObject, but later there could be ModuleRecords,
 * etc.
 *
 *@see JACE.ServiceConfigurator.ServiceRecord;
 *
 *@author Everett Anderson
 *
 *************************************************/
package JACE.ServiceConfigurator;

import java.lang.*;
import JACE.ServiceConfigurator.*;

public class ServiceObjectRecord extends ServiceRecord
{
  public ServiceObjectRecord (Object so, String name)
  {
    super (so, name);
  }

};