1 11 import org.ozoneDB.DxLib.*; 12 13 14 public class OO7_ModuleImpl extends OO7_DesignObjectImpl implements OO7_Module { 15 OO7_Manual theManual; 16 DxListBag theAssembly; 17 OO7_ComplexAssembly theDesignRoot; 18 19 20 public OO7_ModuleImpl() { 21 theAssembly = new DxListBag(); 22 } 23 24 25 public void setManual( OO7_Manual x ) { 26 theManual = x; 27 } 28 29 30 public OO7_Manual manual() { 31 return theManual; 32 } 33 34 35 public void addAssembly( OO7_Assembly x ) { 36 theAssembly.addBack( x ); 37 } 38 39 40 public DxBag assembly() { 41 return theAssembly; 42 } 43 44 45 public void setDesignRoot( OO7_ComplexAssembly x ) { 46 theDesignRoot = x; 47 } 48 49 50 public OO7_ComplexAssembly designRoot() { 51 return theDesignRoot; 52 } 53 } 54 | Popular Tags |