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 window
      int getHeight()
      Get Height of the window
      java.lang.String getId()
      returns identification string
      int getState()
      Get Window state (iconified,normal,maximized)
      int getWidth()
      Get Width of the window
      int getX()
      Get X-Position of the window
      int getY()
      Get Y-Position of the window
      void move​(int newX, int newY)
      Moves window to the given position
      void resize​(int newWidth, int newHeight)
      newOperation1 Description
      void setGeometry​(int x, int y, int width, int height)
      newOperation0 Description
      void setHeight​(int value)
      Set Height of the window
      void setState​(int value)
      Set Window state (iconified,normal,maximized)
      void setWidth​(int value)
      Set Width of the window
      void setX​(int value)
      Set X-Position of the window
      void setY​(int value)
      Set Y-Position of the window
      void 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-position
        newY - new Y-position
      • resize

        void resize​(int newWidth,
                    int newHeight)
        newOperation1 Description
        Parameters:
        newWidth - New width of the window
        newHeight - 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 - x
        y - y
        width - width
        height - 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...