Package org.zkoss.stateless.action.data
Class MinimizeData
- java.lang.Object
-
- org.zkoss.stateless.action.data.MinimizeData
-
- All Implemented Interfaces:
java.io.Serializable
,ActionData
public class MinimizeData extends java.lang.Object implements ActionData
Represents an action caused by a component being minimized.- Author:
- jumperchen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MinimizeData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getHeight()
Returns the height of the component, which is its original height.java.lang.String
getLeft()
Returns the left of the component, which is its original left.java.lang.String
getTop()
Returns the top of the component, which is its original top.java.lang.String
getWidth()
Returns the width of the component, which is its original width.boolean
isMinimized()
Returns whether to be minimized.
-
-
-
Method Detail
-
getWidth
public final java.lang.String getWidth()
Returns the width of the component, which is its original width.
-
getHeight
public final java.lang.String getHeight()
Returns the height of the component, which is its original height.
-
getLeft
public final java.lang.String getLeft()
Returns the left of the component, which is its original left.
-
getTop
public final java.lang.String getTop()
Returns the top of the component, which is its original top.
-
isMinimized
public final boolean isMinimized()
Returns whether to be minimized.
-
-