1 28 29 package org.objectweb.openccm.Containers.MetaInformation; 30 31 import org.omg.Components.EventConsumerBase; 32 33 36 public class EmitterPortInstanceImpl 37 extends EventPortInstanceImpl 38 implements EmitterPortInstance { 39 40 protected EventConsumerBase _consumer; 41 42 public EmitterPortInstanceImpl() 43 { 44 _consumer = null; 45 } 46 47 50 public EventConsumerBase consumer() 51 { 52 return _consumer; 53 } 54 55 58 public void consumer(EventConsumerBase value) 59 { 60 _consumer = value; 61 } 62 63 64 } 65 | Popular Tags |