1 package org.tigris.scarab.om; 2 3 48 49 import org.apache.torque.om.Persistent; 51 import org.apache.torque.TorqueException; 52 53 import org.tigris.scarab.om.Module; 54 import org.tigris.scarab.om.ModuleManager; 55 56 62 public class Report 63 extends org.tigris.scarab.om.BaseReport 64 implements Persistent 65 { 66 public Integer getScopeId() 67 { 68 Integer id = super.getScopeId(); 69 if (id == null) 70 { 71 id = Scope.PERSONAL__PK; 72 } 73 return id; 74 } 75 76 80 public Module getModule() 81 throws TorqueException 82 { 83 return ModuleManager.getInstance(getModuleId()); 84 } 85 86 90 public void setModule(Module v) 91 throws TorqueException 92 { 93 setModuleId(v.getModuleId()); 94 } 95 96 102 } 103 | Popular Tags |