01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.common.entity;
09:
10: //base classes
11: import java.io.PrintStream;
12: import java.io.PrintWriter;
13:
14: //project specific classes
15:
16: //other classes
17:
18: public interface SystemEntity extends SystemEntityCommon,
19: SystemEntityTag {
20:
21: public SystemEntityUpdates getSystemEntityUpdates(
22: SystemEntityUpdatesContext inSeuc);
23: }
|