1 28 29 package org.objectweb.openccm.Containers.MetaInformation; 30 31 import org.omg.CORBA.Object ; 32 33 34 35 38 public class InstanceImpl 39 extends org.omg.CORBA.LocalObject 40 implements Instance 41 { 42 private Type _type_reference; 43 private Object _object_ref; 44 private instance_kind _instance_kind; 45 private Instance _instance_ref; 46 47 50 public Type type_reference() 51 { 52 return _type_reference; 53 } 54 55 58 public void type_reference(Type value) 59 { 60 _type_reference = value; 62 } 63 64 67 public Object object_ref() 68 { 69 return _object_ref; 70 } 71 72 75 public void object_ref(Object value) 76 { 77 _object_ref = value; 78 } 79 80 83 public instance_kind related_instance_kind() 84 { 85 return _instance_kind; 86 } 87 88 91 public void related_instance_kind(instance_kind value) 92 { 93 _instance_kind = value; 94 } 95 96 99 public Instance instance_reference() 100 { 101 return _instance_ref; 102 } 103 104 107 public void instance_reference(Instance value) 108 { 109 _instance_ref = value; 110 } 111 112 113 } 114 | Popular Tags |