jas.events
Class SimCollectionEvent

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

public class SimCollectionEvent
extends SimEvent

It is able to inform all elements within a collection about an event.

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
SimCollectionEvent(java.util.Collection elements, java.lang.Class objectType, java.lang.String method)
          Create a collection event using late binding method call.
SimCollectionEvent(java.util.Collection elements, int actionType)
          Create a collection event using early binding method call.
 
Method Summary
 void fireEvent()
          Fire the event, calling each element contained into the collection.
static java.lang.Class getObjectClass(java.lang.Object object)
          Return a reference to the class of the given object.
static java.lang.Class getObjectClass(java.lang.String className)
          Return a reference to the class with the given name.
 void setForObject(java.util.Collection elements, java.lang.Class objectType, java.lang.String method)
          Recycling method.
 void setForObject(java.util.Collection elements, int actionType)
          Recycling method.
 
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

SimCollectionEvent

public SimCollectionEvent(java.util.Collection elements,
                          java.lang.Class objectType,
                          java.lang.String method)
Create a collection event using late binding method call.


SimCollectionEvent

public SimCollectionEvent(java.util.Collection elements,
                          int actionType)
Create a collection event using early binding method call.

Method Detail

fireEvent

public void fireEvent()
Fire the event, calling each element contained into the collection.

Specified by:
fireEvent in class SimEvent

getObjectClass

public static java.lang.Class getObjectClass(java.lang.Object object)
Return a reference to the class of the given object. It is used to build a late binding method call.


getObjectClass

public static java.lang.Class getObjectClass(java.lang.String className)
Return a reference to the class with the given name. It is used to build a late binding method call.


setForObject

public void setForObject(java.util.Collection elements,
                         java.lang.Class objectType,
                         java.lang.String method)
Recycling method. See SimEvent for more details.


setForObject

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