Interface CAMframeControlMBean
-
- All Known Implementing Classes:
CAMframeControl
public interface CAMframeControlMBean
Interface CAMframeControlMBean- Author:
- karol
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Close windowint
getHeight()
Get Height of the windowjava.lang.String
getId()
returns identification stringint
getState()
Get Window state (iconified,normal,maximized)int
getWidth()
Get Width of the windowint
getX()
Get X-Position of the windowint
getY()
Get Y-Position of the windowvoid
move(int newX, int newY)
Moves window to the given positionvoid
resize(int newWidth, int newHeight)
newOperation1 Descriptionvoid
setGeometry(int x, int y, int width, int height)
newOperation0 Descriptionvoid
setHeight(int value)
Set Height of the windowvoid
setState(int value)
Set Window state (iconified,normal,maximized)void
setWidth(int value)
Set Width of the windowvoid
setX(int value)
Set X-Position of the windowvoid
setY(int value)
Set Y-Position of the windowvoid
windowState(int windowState)
newOperation0 Description
-
-
-
Method Detail
-
getX
int getX()
Get X-Position of the window
-
setX
void setX(int value)
Set X-Position of the window
-
getY
int getY()
Get Y-Position of the window
-
setY
void setY(int value)
Set Y-Position of the window
-
getWidth
int getWidth()
Get Width of the window
-
setWidth
void setWidth(int value)
Set Width of the window
-
getHeight
int getHeight()
Get Height of the window
-
setHeight
void setHeight(int value)
Set Height of the window
-
move
void move(int newX, int newY)
Moves window to the given position- Parameters:
newX
- new X-positionnewY
- new Y-position
-
resize
void resize(int newWidth, int newHeight)
newOperation1 Description- Parameters:
newWidth
- New width of the windownewHeight
- New height of the window
-
close
void close()
Close window
-
getId
java.lang.String getId()
returns identification string- Returns:
- java.lang.String
-
setGeometry
void setGeometry(int x, int y, int width, int height)
newOperation0 Description- Parameters:
x
- xy
- ywidth
- widthheight
- height
-
getState
int getState()
Get Window state (iconified,normal,maximized)
-
setState
void setState(int value)
Set Window state (iconified,normal,maximized)
-
windowState
void windowState(int windowState)
newOperation0 Description- Parameters:
windowState
- Frame.ICONIFIED, Frame.NORMAL, etc...
-
-