Interface ApplicationFrame

    • Method Detail

      • getChildFrames

        java.lang.Iterable<Frame> getChildFrames()
        Returns:
        An iterable to all child frames.
      • addChildFrame

        void addChildFrame​(Frame frame)
        Adds a frame to the list of child frames. This method should usually only be called by the frames themselves.
        Parameters:
        frame - The frame to add.
        Throws:
        java.lang.NullPointerException - if the given frame is null.
        java.lang.IllegalArgumentException - if the given frame is this frame.
      • removeChildFrame

        void removeChildFrame​(Frame frame)
        Removes a frame from the list of child frames. This method should usually only be called by the frames themselves.
        Parameters:
        frame - The frame to remove.
        Throws:
        java.lang.NullPointerException - if the given frame is null.
        java.lang.IllegalArgumentException - if the given frame is this frame.