Interface PortableContainer

  • All Known Implementing Classes:
    AWTContainer

    public interface PortableContainer
    Platform independent container for placing UI components into itself. The implementor of this interface would wrap the platform dependent container.
    Since:
    Ptolemy II 10.0
    Version:
    $Id$
    Author:
    Anar Huseynov
    Pt.AcceptedRating:
    Red (ahuseyno)
    Pt.ProposedRating:
    Red (ahuseyno)
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void add​(java.lang.Object component)
      Add the specified component into the container.
      java.lang.Object getPlatformContainer()
      Return the platform dependent container that this instance wraps.
    • Method Detail

      • add

        void add​(java.lang.Object component)
        Add the specified component into the container.
        Parameters:
        component - The component to be added.
      • getPlatformContainer

        java.lang.Object getPlatformContainer()
        Return the platform dependent container that this instance wraps.
        Returns:
        The platform dependent container.