1 26 27 package org.objectweb.openccm.Components; 28 29 37 38 public class ProvidesInfo 39 extends PortInfo 40 { 41 47 50 private org.omg.CORBA.Object ref_; 51 52 58 61 public 62 ProvidesInfo(java.lang.String rep_id, 63 java.lang.String name, 64 java.lang.String type_id) 65 { 66 super(rep_id, name, type_id, PortInfo.pk_provides); 67 ref_ = null; 68 } 69 70 76 79 public org.omg.CORBA.Object  80 facet() 81 { 82 return ref_; 83 } 84 85 88 public void 89 facet(org.omg.CORBA.Object ref) 90 { 91 ref_ = ref; 92 } 93 } 94 | Popular Tags |