1 /*
2 * $Id: IChildObject.java 1212 2008-11-03 13:15:59Z andreas.hoheisel@first.fraunhofer.de $
3 *
4 * Copyright (c) 2005, The K-Wf Grid Consortium
5 * Fraunhofer Institute for Computer Architecture and Software Technology
6 * See http://www.kwfgrid.eu and http://www.first.fraunhofer.de for more details.
7 */
8 package net.kwfgrid.gworkflowdl.protocol.structure;
9
10 /***
11 Interface for all child objects of a structure.
12 */
13 public interface IChildObject extends IStructureObject {
14 /***
15 Get the parent of the object.
16 */
17 IStructureObject getParent();
18
19 /***
20 Set the parent of the object.
21 */
22 void setParent(IStructureObject parent);
23 }