Package ptolemy.actor.injection
Interface PortableContainer
-
- All Known Implementing Classes:
AWTContainer
public interface PortableContainerPlatform 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 voidadd(java.lang.Object component)Add the specified component into the container.java.lang.ObjectgetPlatformContainer()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.
-
-