jas.events
Class SimMultiCastEvent

java.lang.Object
  extended by jas.events.SimEvent
      extended by jas.events.SimCollectionEvent
          extended by jas.events.SimMultiCastEvent
All Implemented Interfaces:
java.lang.Comparable

public class SimMultiCastEvent
extends SimCollectionEvent

This event is able to inform different kind objects at the same time. It is like an information broadcasting service. After it is defined any object implementing the ISimEventListener interface can register itself to this information service. At event time each registered listener will be informed.

Warning: This type of event cannot support the late binding call method.

Title: JAS

Description: Java Agent-based Simulation library

Copyright (C) 2002 Michele Sonnessa

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Author:
Michele Sonnessa


Constructor Summary
SimMultiCastEvent(java.util.Collection elements, java.lang.Class objectType, java.lang.String method)
          Thows an UnsupportedOperationException exception.
SimMultiCastEvent(java.util.Collection elements, int actionType)
          Create new multicast service with a specific action code.
SimMultiCastEvent(int actionType)
          Create new multicast service with a specific action code.
 
Method Summary
 void addEventListener(ISimEventListener o)
          Register an ISimEventListener object to the information service.
 void removeEventListener(ISimEventListener o)
          Unregister an ISimEventListener object from the information service.
 void setForObject(java.util.Collection elements, java.lang.Class objectType, java.lang.String method)
          Unsupported operation.
 void setForObject(java.util.Collection elements, int actionType)
          Recycling method.
 void setForObject(int actionType)
          Recycling method.
 
Methods inherited from class jas.events.SimCollectionEvent
fireEvent, getObjectClass, getObjectClass
 
Methods inherited from class jas.events.SimEvent
canBeTrashed, compareTo, getLoop, getTime, setForObject, setLoop, setTime, setTime, setTimeAtNextLoop, setTrashable, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SimMultiCastEvent

public SimMultiCastEvent(java.util.Collection elements,
                         java.lang.Class objectType,
                         java.lang.String method)
Thows an UnsupportedOperationException exception. Late binding method is unsupported.


SimMultiCastEvent

public SimMultiCastEvent(java.util.Collection elements,
                         int actionType)
Create new multicast service with a specific action code. The elements parameter is ignored. It is defined to be compatible with SimCollectionEvent objects.

Parameters:
actionType - A unique identifier code for this action.
elements - Unused. Defined only for compatibility.

SimMultiCastEvent

public SimMultiCastEvent(int actionType)
Create new multicast service with a specific action code.

Parameters:
actionType - A unique identifier code for this action.
Method Detail

addEventListener

public void addEventListener(ISimEventListener o)
Register an ISimEventListener object to the information service.


removeEventListener

public void removeEventListener(ISimEventListener o)
Unregister an ISimEventListener object from the information service.


setForObject

public void setForObject(java.util.Collection elements,
                         java.lang.Class objectType,
                         java.lang.String method)
Unsupported operation.

Overrides:
setForObject in class SimCollectionEvent

setForObject

public void setForObject(java.util.Collection elements,
                         int actionType)
Recycling method. See SimEvent for more details.

Overrides:
setForObject in class SimCollectionEvent

setForObject

public void setForObject(int actionType)
Recycling method. See SimEvent for more details.