Class Border

    • Constructor Detail

      • Border

        public Border()
      • Border

        public Border​(Component content)
    • Method Detail

      • getTitle

        public java.lang.String getTitle()
        Returns the border's title.
        Returns:
        The border's title, or null if no title is set.
      • setTitle

        public void setTitle​(java.lang.String title)
        Sets the border's title.
        Parameters:
        title - The new title, or null for no title.
      • getContent

        public Component getContent()
        Returns the border's content component.
        Returns:
        The border's content component, or null if the border does not have a content component.
      • setContent

        public void setContent​(Component content)
        Sets the border's content component.
        Parameters:
        content - The border's content component, or null for no content.
      • remove

        public Sequence<Component> remove​(int index,
                                          int count)
        Description copied from interface: Sequence
        Removes one or more items from the sequence.
        Specified by:
        remove in interface Sequence<Component>
        Overrides:
        remove in class Container
        Parameters:
        index - The starting index to remove.
        count - The number of items to remove, beginning with index.
        Returns:
        A sequence containing the items that were removed.