home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-06-19 | 2.0 KB | 84 lines |
- package symantec.itools.awt;
-
-
- import java.awt.LayoutManager;
- import java.awt.Panel;
-
-
- /**
- *
- *
- *
- * @see symantec.itools.awt.OutlineView
- * @see symantec.itools.awt.TreeView
- *
- * @version 1.0, Nov 26, 1996
- *
- * @author Symantec
- *
- */
-
-
- public abstract class View
- extends Panel
- {
- //--------------------------------------------------
- // constants
- //--------------------------------------------------
-
-
- //--------------------------------------------------
- // class variables
- //--------------------------------------------------
-
-
- //--------------------------------------------------
- // member variables
- //--------------------------------------------------
-
-
- //--------------------------------------------------
- // constructors
- //--------------------------------------------------
-
- public View()
- {
- super.setLayout(null);
- }
-
- //--------------------------------------------------
- // accessor members
- //--------------------------------------------------
-
-
- //--------------------------------------------------
- // event methods
- //--------------------------------------------------
-
-
- //--------------------------------------------------
- // class methods
- //--------------------------------------------------
-
-
- //--------------------------------------------------
- // member methods
- //--------------------------------------------------
-
- /**
- * Takes no action.
- * This is a standard Java AWT method which gets called to specify
- * which layout manager should be used to layout the components in
- * standard containers.
- *
- * Since layout managers CANNOT BE USED with this container the standard
- * setLayout has been OVERRIDDEN for this container and does nothing.
- *
- * @param l the layout manager to use to layout this container's components
- * (IGNORED)
- * @see java.awt.Container#getLayout
- **/
- public void setLayout(LayoutManager m)
- {
- }
- }