| |
|
| java.lang.Object org.apache.jetspeed.portlets.layout.LayoutEvent
ADDED | final public static int ADDED(Code) | | Event type value that notifies that a fragment has been added
|
MOVED_DOWN | final public static int MOVED_DOWN(Code) | | Event type value that notifies that a fragment has been moved down
|
MOVED_LEFT | final public static int MOVED_LEFT(Code) | | Event type value that notifies that a fragment has been moved left
|
MOVED_RIGHT | final public static int MOVED_RIGHT(Code) | | Event type value that notifies that a fragment has been moved right
|
MOVED_UP | final public static int MOVED_UP(Code) | | Event type value that notifies that a fragment has been moved up
|
LayoutEvent | public LayoutEvent(int eventType, Fragment fragment, LayoutCoordinate originalCoordinate, LayoutCoordinate newCoordinate)(Code) | | Parameters: eventType - The type of event (see the event constants) Parameters: fragment - Fragment that is the target of this event. Parameters: originalCoordinate - the previous LayoutCoordinate of this Fragment Parameters: newCoordinate - the new and current coordinates of this fragment. See Also: org.apache.jetspeed.om.page.Fragment |
getEventType | public int getEventType()(Code) | | Returns the event type (see event constants)
the event type (see event constants) See Also: ColumnLayout.layoutType |
getNewCoordinate | public LayoutCoordinate getNewCoordinate()(Code) | | Returns the new/current coordinate of the Fragment targeted by this event.
the new/current coordinate of the Fragment targeted by this event. See Also: LayoutCoordinate |
getOriginalCoordinate | public LayoutCoordinate getOriginalCoordinate()(Code) | | Returns the original (prior to the event) coordinate of the Fragment targeted by this event.
the original (prior to the event) coordinate of the Fragment targeted by this event. See Also: LayoutCoordinate |
|
|
|