1 28 29 package org.objectweb.openccm.Containers.MetaInformation; 30 31 34 public class InterfaceInstanceImpl 35 extends InstanceImpl 36 implements InterfaceInstance{ 37 38 protected InterfaceType _interface_type; 39 protected OperationInstanceList _operation_instance_list; 40 41 public InterfaceInstanceImpl() 42 { 43 _operation_instance_list = new OperationInstanceListImpl(); 44 } 45 46 49 public InterfaceType interface_type() { 50 51 return _interface_type; 52 } 53 54 57 public void interface_type(InterfaceType value) { 58 59 _interface_type = value; 60 } 61 62 65 public OperationInstanceList operation_instance_list() 66 { 67 return _operation_instance_list; 68 } 69 70 73 public void operation_instance_list(OperationInstanceList value) 74 { 75 _operation_instance_list = value; 76 } 77 78 } 79 | Popular Tags |