uk.org.redfelineninja.net
Class GenericMulticaster

java.lang.Object
  |
  +--uk.org.redfelineninja.net.AbstractMulticaster
        |
        +--uk.org.redfelineninja.net.GenericMulticaster

public class GenericMulticaster
extends AbstractMulticaster

This class provides a means for classes that can not inherit from AbstractMulticaster to make use of its services. This is achieved by making the invokeMethod method publically accessable.

This is considerable potential for this to be abused. This is why it in not included in the AbstractMulticaster. Take care.

For an example of acceptable use please refer to MulticastWriter.java from the same package as this class.

See Also:
AbstractMulticaster, MulticastWriter

Constructor Summary
GenericMulticaster()
           
 
Method Summary
 java.lang.Object[] invokeMethod(java.lang.String name, java.lang.Object[] args)
          See super class
 
Methods inherited from class uk.org.redfelineninja.net.AbstractMulticaster
addListener, removeListener
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GenericMulticaster

public GenericMulticaster()
Method Detail

invokeMethod

public final java.lang.Object[] invokeMethod(java.lang.String name,
                                             java.lang.Object[] args)
See super class

Overrides:
invokeMethod in class AbstractMulticaster