org.jadv.events
Class MoveEvent

java.lang.Object
  |
  +--org.jadv.events.Event
        |
        +--org.jadv.events.MoveEvent

public class MoveEvent
extends Event

An object should be moved to another location!

Author:
neitzel

Field Summary
private  java.lang.String _ObjID
           
private  java.lang.String _TargetID
           
 
Fields inherited from class org.jadv.events.Event
_NEXT
 
Constructor Summary
MoveEvent(java.lang.String objID, java.lang.String targetID)
          Moves an object to a target location
 
Method Summary
 void doEvent()
          Do the move
 void markBad()
          This Event cannot be marked as bad in the moment!
 
Methods inherited from class org.jadv.events.Event
findObject
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_ObjID

private java.lang.String _ObjID

_TargetID

private java.lang.String _TargetID
Constructor Detail

MoveEvent

public MoveEvent(java.lang.String objID,
                 java.lang.String targetID)
Moves an object to a target location

Parameters:
objID - - Object to move
targetID - - target to move to
Method Detail

doEvent

public void doEvent()
Do the move

Specified by:
doEvent in class Event
See Also:
Event.doEvent()

markBad

public void markBad()
This Event cannot be marked as bad in the moment!

Specified by:
markBad in class Event
See Also:
Event.markBad()