1 28 29 package org.objectweb.openccm.Containers.MetaInformation; 30 31 34 public class PortInstanceImpl 35 extends InstanceImpl 36 implements PortInstance { 37 38 protected PortType _port_type; 39 protected ComponentInstance _component_instance; 40 42 45 public PortType port_type() { 46 47 return _port_type; 48 } 49 50 53 public void port_type(PortType value) { 54 55 _port_type = value; 56 } 57 58 61 public ComponentInstance component_instance() { 62 63 return _component_instance; 64 } 65 66 69 public void component_instance(ComponentInstance value) { 70 71 _component_instance = value; 72 } 73 } 74 | Popular Tags |