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