com.ibm.eNetwork.beans.HOD.event
Class MacroExtractCoordEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--com.ibm.eNetwork.beans.HOD.event.HODEvent
              |
              +--com.ibm.eNetwork.beans.HOD.event.MacroExtractCoordEvent
All Implemented Interfaces:
java.io.Serializable

public class MacroExtractCoordEvent
extends com.ibm.eNetwork.beans.HOD.event.HODEvent

MacroExtractCoordEvent is fired to MacroExtractCoordListeners by Macro when it encounters an extract action in the macro. Any extract actions will cause a coordinate event to be fired. You may use this event to dynamically change the rectangular area of the extract.

This event is fired just before the actual extract is performed.

See Also:
MacroExtractCoordListener, Serialized Form

Constructor Summary
MacroExtractCoordEvent(Macro src, MacroScreen ms, MacroActionExtract mae)
          Constructs a new MacroExtractEvent object.
 
Method Summary
 MacroActionExtract getExtract()
          Returns the MacroActionExtract object for you to modify.
 MacroScreen getScreen()
          Returns the owning MacroScreen screen object for the extract action.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MacroExtractCoordEvent

public MacroExtractCoordEvent(Macro src,
                              MacroScreen ms,
                              MacroActionExtract mae)
Constructs a new MacroExtractEvent object.
Method Detail

getScreen

public MacroScreen getScreen()
Returns the owning MacroScreen screen object for the extract action.
Returns:
com.ibm.eNetwork.beans.HOD.MacroScreen Owner screen for the extract action.

getExtract

public MacroActionExtract getExtract()
Returns the MacroActionExtract object for you to modify. Call the row/col set methods on the object to change the coordinates for the extract.
Returns:
com.ibm.eNetwork.beans.HOD.MacroActionExtract Extract action that can be modified.