1 2 package SOFA.SOFAnode.Made.TIR.Impl; 3 import java.rmi.RemoteException ; 4 5 import SOFA.SOFAnode.Made.TIR.CDLContainer; 6 import SOFA.SOFAnode.Made.TIR.CDLType; 7 import SOFA.SOFAnode.Made.TIR.ConstantDef; 8 import SOFA.SOFAnode.Made.TIR.EnumDef; 9 import SOFA.SOFAnode.Made.TIR.ExceptionDef; 10 import SOFA.SOFAnode.Made.TIR.ExprOperDef; 11 import SOFA.SOFAnode.Made.TIR.FrameDef; 12 import SOFA.SOFAnode.Made.TIR.Identification; 13 import SOFA.SOFAnode.Made.TIR.InterfaceDef; 14 import SOFA.SOFAnode.Made.TIR.ModuleDef; 15 import SOFA.SOFAnode.Made.TIR.StructDef; 16 import SOFA.SOFAnode.Made.TIR.TIRExceptCreate; 17 import SOFA.SOFAnode.Made.TIR.TIRExceptLock; 18 import SOFA.SOFAnode.Made.TIR.TypedefDef; 19 import SOFA.SOFAnode.Made.TIR.UnionDef; 20 21 public abstract class CDLContainerImpl extends ContainerImpl implements CDLContainer, SContainer { 22 public CDLContainerImpl() throws RemoteException { 23 super(); 24 } 25 public ModuleDef create_module(Identification id) throws RemoteException , TIRExceptCreate, TIRExceptLock { 26 throw new TIRExceptCreate("you can call create method on work object"); 27 } 28 29 public ConstantDef create_constant(Identification id, CDLType type, ExprOperDef value) throws RemoteException , TIRExceptCreate, TIRExceptLock { 30 throw new TIRExceptCreate("you can call create method on work object"); 31 } 32 33 public StructDef create_struct(Identification id) throws RemoteException , TIRExceptCreate, TIRExceptLock { 34 throw new TIRExceptCreate("you can call create method on work object"); 35 } 36 37 public UnionDef create_union(Identification id, CDLType switch_type) throws RemoteException , TIRExceptCreate, TIRExceptLock { 38 throw new TIRExceptCreate("you can call create method on work object"); 39 } 40 41 public EnumDef create_enum(Identification id) throws RemoteException , TIRExceptCreate, TIRExceptLock { 42 throw new TIRExceptCreate("you can call create method on work object"); 43 } 44 45 public TypedefDef create_typedef(Identification id, CDLType orig_type) throws RemoteException , TIRExceptCreate, TIRExceptLock { 46 throw new TIRExceptCreate("you can call create method on work object"); 47 } 48 49 public ExceptionDef create_exception(Identification id) throws RemoteException , TIRExceptCreate, TIRExceptLock { 50 throw new TIRExceptCreate("you can call create method on work object"); 51 } 52 53 public InterfaceDef create_interface(Identification id, InterfaceDef[] base_interfaces) throws RemoteException , TIRExceptCreate, TIRExceptLock { 54 throw new TIRExceptCreate("you can call create method on work object"); 55 } 56 57 public InterfaceDef create_interface(Identification id) throws RemoteException , TIRExceptCreate, TIRExceptLock { 58 throw new TIRExceptCreate("you can call create method on work object"); 59 } 60 61 public FrameDef create_frame(Identification id) throws RemoteException , TIRExceptCreate, TIRExceptLock { 62 throw new TIRExceptCreate("you can call create method on work object"); 63 } 64 } 65 | Popular Tags |