1 26 package org.objectweb.openccm.explorer.Components; 27 28 import org.omg.Components.CCMObject; 29 import org.omg.Components.ReceptacleDescription; 30 31 42 public class ReceptacleContainer { 43 44 45 protected ReceptacleDescription receptacle_; 46 47 48 protected CCMObject component_; 49 50 54 public CCMObject getComponent() { 55 return component_; 56 } 57 58 62 public ReceptacleDescription getReceptacle() { 63 return receptacle_; 64 } 65 66 70 public void setComponent(CCMObject component) { 71 component_ = component; 72 } 73 74 78 public void setReceptacle(ReceptacleDescription receptacle) { 79 receptacle_ = receptacle; 80 } 81 82 } 83 | Popular Tags |