Class Display

    • Method Detail

      • getHostWindow

        public java.awt.Window getHostWindow()
      • setLocation

        @UnsupportedOperation
        public void setLocation​(int x,
                                int y)
        Description copied from class: Component
        Sets the component's location. NOTE This method should only be called when performing layout. However, since some containers do not reposition components during layout, it is valid for callers to invoke this method directly for such containers.
        Overrides:
        setLocation in class Component
        Parameters:
        x - The component's horizontal position relative to the origin of the parent container.
        y - The component's vertical position relative to the origin of the parent container.
      • setVisible

        @UnsupportedOperation
        public void setVisible​(boolean visible)
        Description copied from class: Component
        Sets the component's visibility.
        Overrides:
        setVisible in class Container
        Parameters:
        visible - true if the component should be painted; false, otherwise.
      • setTooltipText

        @UnsupportedOperation
        public void setTooltipText​(java.lang.String tooltipText)
        Description copied from class: Component
        Sets the component's tooltip text.
        Overrides:
        setTooltipText in class Component
        Parameters:
        tooltipText - The component's tooltip text, or null for no tooltip.
      • repaint

        public void repaint​(int x,
                            int y,
                            int width,
                            int height,
                            boolean immediate)
        Description copied from class: Component
        Flags an area as needing to be repainted.
        Overrides:
        repaint in class Container
        Parameters:
        x - Starting x-coordinate of area to repaint.
        y - Starting y-coordinate.
        width - Width of area to repaint.
        height - Height of area.
        immediate - Whether repaint should be done immediately.
      • insert

        public void insert​(Component component,
                           int index)
        Description copied from interface: Sequence
        Inserts an item into the sequence at a specific index.
        Specified by:
        insert in interface Sequence<Component>
        Overrides:
        insert in class Container
        Parameters:
        component - The item to be added to the sequence.
        index - The index at which the item should be inserted. Must be a value between 0 and getLength().