| java.lang.Object java.awt.Component java.awt.Container javax.swing.JComponent javax.swing.JScrollPane org.cougaar.tools.csmart.ui.viewer.Organizer
Organizer | public class Organizer extends JScrollPane (Code) | | The Organizer holds all the component a user creates
and manipulates in CSMART
|
Method Summary | |
public void | addChildren(Experiment experiment) Add tree nodes for the children (societies and recipes)
of an experiment. | protected void | addExperimentAndComponentsToWorkspace(DBExperiment experiment, DefaultMutableTreeNode node) | protected DefaultMutableTreeNode | addFolderToWorkspace(String name, DefaultMutableTreeNode node) | protected DefaultMutableTreeNode | addRecipeToWorkspace(RecipeComponent recipe, DefaultMutableTreeNode node) | protected void | addSociety(SocietyComponent sc) | protected void | addTreeModelListener(TreeModelListener listener) | protected void | addTreeSelectionListener(TreeSelectionListener listener) | protected Experiment | copyExperiment(Experiment experiment, boolean save) | protected RecipeComponent | copyRecipe(RecipeComponent recipe) Copy the recipe component; generate a new unique name for the copy;
add the copy to the Workspace as a sibling of the original. | protected SocietyComponent | copySociety(SocietyComponent society) Copy society; save the society to the database;
put the society in the workspace. | protected void | createExperimentFromFile() | protected void | createExperimentFromUI() Create an experiment and a society that will be specified
from the user interface. | protected void | delete() | protected void | deleteExperiment() | protected void | deleteExperimentFromDatabase() Delete experiment from database and from workspace if it's there. | protected void | deleteExperimentInNode(DefaultMutableTreeNode node) | protected void | deleteFolder() Delete folder and recursively delete all its contents. | protected void | deleteRecipe() | protected void | deleteRecipeFromDatabase() Delete recipe from database and from workspace if it's there. | protected void | deleteSociety() Note that this simply deletes the society from the workspace;
if the society was included in an experiment, then the experiment
still retains the society. | protected void | deleteSocietyInNode(DefaultMutableTreeNode societyNode) | public void | displayExperiments(SocietyComponent society) Display names of experiments in workspace or database
that contain the indicated society. | public void | displayExperiments(RecipeComponent recipe) Display names of experiments in workspace or database
that contain the indicated recipe. | protected void | duplicate() Copy an experiment, society or recipe. | protected boolean | exitAllowed() | protected String | generateExperimentName(String name, boolean allowExistingName) Generate unique names. | protected String | generateExperimentName(String name) Generate an unique name with no user input. | protected String | generateRecipeName(String name, boolean allowExistingName) | protected String | generateSocietyName(String name, boolean allowExistingName) | protected String | generateSocietyName(String name) | public RecipeComponent | getRecipe(String name) | protected DefaultMutableTreeNode | getSelectedNode() | public SocietyComponent | getSociety(String name) Get the society component with the given name from the workspace;
this ensures that there is exactly one object per component
in the workspace. | public String | getUniqueExperimentName(String originalName, boolean allowExistingName) Get a unique name, optionally allowing the existing name. | protected String | getUniqueRecipeName(String originalName, boolean allowExistingName) | protected String | getUniqueSocietyName(String originalName, boolean allowExistingName) | protected boolean | isComponentInUse(ModifiableComponent mc) Returns true if the object is
a component (a society or recipe) in an experiment
that is being built or run. | protected boolean | isInWorkspace(ModifiableComponent mc) | protected boolean | isNodeInUse(DefaultMutableTreeNode node) Returns true if the node is in an experiment node
and the experiment is being built or run. | protected boolean | isUniqueSocietyName(String name) | protected void | newFolder() | protected void | newRecipe() Ensure that recipe name is unique in both CSMART and the database. | protected void | removeChildren(Experiment experiment) Display tree nodes for the children (societies and recipes)
of an experiment in gray and don't let them be edited. | protected void | rename() Rename a folder, experiment, society or recipe. | protected void | renameExperiment() Rename an experiment. | protected void | renameFolder() Rename a folder. | protected void | renameRecipe() Rename a recipe. | protected void | renameSociety() Rename a society. | protected void | renameWorkspace() Rename the top-level workspace. | public void | replaceComponent(Experiment experiment, ModifiableComponent component, ModifiableComponent newComponent) | protected void | save() Force an update, which saves the current workspace. | protected String[] | selectExperimentFromDBToLoad() Prompt the user for an experiment to load from the database. | protected void | selectExperimentFromDatabase() Prompt the user for an experiment to load, then create it from the database,
and put it in the workspace. | protected void | selectGivenExperimentFromDatabase(String experimentName, String experimentId) Take the given experiment name and ID, and use them to try to load
an experiment from the database and add them to the workspace. | protected void | selectGivenExperimentFromDatabase(String experimentName, String experimentId, boolean withPrompt) Take the given experiment name and ID, and use them to try to load
an experiment from the database and add them to the workspace.
However, the final argument indicates whether to actually display
the CMTDialog window. | protected void | selectRecipeFromDatabase() | protected void | startBuilder() | protected void | startConsole() Try to run the console. | protected void | startExperimentBuilder() When called from Organizer, the selected user object is an experiment. |
newExperimentActions | protected Action[] newExperimentActions(Code) | | |
newExperimentFromDBAction | protected Action newExperimentFromDBAction(Code) | | |
newExperimentFromFileAction | protected Action newExperimentFromFileAction(Code) | | |
newExperimentFromUIAction | protected Action newExperimentFromUIAction(Code) | | |
renameWorkspaceAction | protected Action renameWorkspaceAction(Code) | | |
Organizer | public Organizer(CSMART csmart)(Code) | | Construct a workspace, i.e. an user interface for a tree
of components (experiments, societies, recipes).
Reads the previous workspace from "Default Workspace.xml"
Parameters: csmart - The CSMART user interface containing this. |
Organizer | public Organizer(CSMART csmart, String workspaceFileName)(Code) | | Construct a workspace, i.e. an user interface for a tree
of components (experiments, societies, recipes).
If the workspace file name parameter is null,
reads the previous workspace from "Default Workspace.xml"
Parameters: csmart - The CSMART user interface containing this. Parameters: workspaceFileName - file from which to read previous workspace |
addChildren | public void addChildren(Experiment experiment)(Code) | | Add tree nodes for the children (societies and recipes)
of an experiment. First removes any current children nodes.
Parameters: experiment - the experiment for which to add children |
copyRecipe | protected RecipeComponent copyRecipe(RecipeComponent recipe)(Code) | | Copy the recipe component; generate a new unique name for the copy;
add the copy to the Workspace as a sibling of the original.
If the recipe is in an experiment, put the recipe in the workspace
as a sibling of the experiment, else put it in the workspace
as a sibling of the recipe.
Parameters: recipe - the recipe to copy RecipeComponent the copied recipe |
copySociety | protected SocietyComponent copySociety(SocietyComponent society)(Code) | | Copy society; save the society to the database;
put the society in the workspace.
If the society is in an experiment, put the society in the workspace
as a sibling of the experiment, else put it in the workspace
as a sibling of the society.
Parameters: society - the society to copy SocietyComponent the copied society |
createExperimentFromFile | protected void createExperimentFromFile()(Code) | | |
createExperimentFromUI | protected void createExperimentFromUI()(Code) | | Create an experiment and a society that will be specified
from the user interface.
|
delete | protected void delete()(Code) | | |
deleteExperiment | protected void deleteExperiment()(Code) | | |
deleteExperimentFromDatabase | protected void deleteExperimentFromDatabase()(Code) | | Delete experiment from database and from workspace if it's there.
Don't allow deleting an experiment that's in the console,
because that would make it unrunnable.
|
deleteFolder | protected void deleteFolder()(Code) | | Delete folder and recursively delete all its contents.
|
deleteRecipe | protected void deleteRecipe()(Code) | | |
deleteRecipeFromDatabase | protected void deleteRecipeFromDatabase()(Code) | | Delete recipe from database and from workspace if it's there.
|
deleteSociety | protected void deleteSociety()(Code) | | Note that this simply deletes the society from the workspace;
if the society was included in an experiment, then the experiment
still retains the society.
|
displayExperiments | public void displayExperiments(SocietyComponent society)(Code) | | Display names of experiments in workspace or database
that contain the indicated society.
|
displayExperiments | public void displayExperiments(RecipeComponent recipe)(Code) | | Display names of experiments in workspace or database
that contain the indicated recipe.
Parameters: recipe - the recipe component |
duplicate | protected void duplicate()(Code) | | Copy an experiment, society or recipe.
|
exitAllowed | protected boolean exitAllowed()(Code) | | |
generateExperimentName | protected String generateExperimentName(String name, boolean allowExistingName)(Code) | | Generate unique names. Only prompts user if a generated
name conflicts in the database.
|
generateExperimentName | protected String generateExperimentName(String name)(Code) | | Generate an unique name with no user input.
|
generateRecipeName | protected String generateRecipeName(String name, boolean allowExistingName)(Code) | | |
generateSocietyName | protected String generateSocietyName(String name, boolean allowExistingName)(Code) | | |
getSociety | public SocietyComponent getSociety(String name)(Code) | | Get the society component with the given name from the workspace;
this ensures that there is exactly one object per component
in the workspace.
|
getUniqueExperimentName | public String getUniqueExperimentName(String originalName, boolean allowExistingName)(Code) | | Get a unique name, optionally allowing the existing name.
Prompts the user for a name based on the original name,
and then checks the user entered value for uniqueness in
the CSMART workspace and in the database.
|
getUniqueRecipeName | protected String getUniqueRecipeName(String originalName, boolean allowExistingName)(Code) | | |
getUniqueSocietyName | protected String getUniqueSocietyName(String originalName, boolean allowExistingName)(Code) | | |
isComponentInUse | protected boolean isComponentInUse(ModifiableComponent mc)(Code) | | Returns true if the object is
a component (a society or recipe) in an experiment
that is being built or run.
|
isNodeInUse | protected boolean isNodeInUse(DefaultMutableTreeNode node)(Code) | | Returns true if the node is in an experiment node
and the experiment is being built or run.
|
isUniqueSocietyName | protected boolean isUniqueSocietyName(String name)(Code) | | |
newFolder | protected void newFolder()(Code) | | |
newRecipe | protected void newRecipe()(Code) | | Ensure that recipe name is unique in both CSMART and the database.
Optionally allow re-use of existing name.
|
removeChildren | protected void removeChildren(Experiment experiment)(Code) | | Display tree nodes for the children (societies and recipes)
of an experiment in gray and don't let them be edited.
Used when editing the experiment.
Parameters: experiment - the experiment |
rename | protected void rename()(Code) | | Rename a folder, experiment, society or recipe.
|
renameExperiment | protected void renameExperiment()(Code) | | Rename an experiment.
|
renameFolder | protected void renameFolder()(Code) | | Rename a folder.
|
renameRecipe | protected void renameRecipe()(Code) | | Rename a recipe.
If the recipe is in an experiment,
copy the recipe, rename it, and save it to the database.
If it's not in an experiment, then warn the user that they
need to save any experiments that contain it.
|
renameSociety | protected void renameSociety()(Code) | | Rename a society.
If the society is in an experiment,
copy the society, rename it, and save it to the database.
If it's not in an experiment, then warn the user that they
need to save any experiments that contain it.
|
renameWorkspace | protected void renameWorkspace()(Code) | | Rename the top-level workspace.
|
save | protected void save()(Code) | | Force an update, which saves the current workspace.
|
selectExperimentFromDBToLoad | protected String[] selectExperimentFromDBToLoad()(Code) | | Prompt the user for an experiment to load from the database.
Return an array with 2 string: experiment name and ID.
Note that the return is null if the user cancels the operation in any way.
|
selectExperimentFromDatabase | protected void selectExperimentFromDatabase()(Code) | | Prompt the user for an experiment to load, then create it from the database,
and put it in the workspace.
|
selectGivenExperimentFromDatabase | protected void selectGivenExperimentFromDatabase(String experimentName, String experimentId)(Code) | | Take the given experiment name and ID, and use them to try to load
an experiment from the database and add them to the workspace.
|
selectGivenExperimentFromDatabase | protected void selectGivenExperimentFromDatabase(String experimentName, String experimentId, boolean withPrompt)(Code) | | Take the given experiment name and ID, and use them to try to load
an experiment from the database and add them to the workspace.
However, the final argument indicates whether to actually display
the CMTDialog window. If not, then whatever threads were already
selected will be used to load the experiment.
|
selectRecipeFromDatabase | protected void selectRecipeFromDatabase()(Code) | | |
startBuilder | protected void startBuilder()(Code) | | |
startConsole | protected void startConsole()(Code) | | Try to run the console. This is called in three cases:
1) the user has selected a runnable experiment
2) the user has selected a society and this method creates an experiment
3) the user has not selected an experiment and plans to attach to running nodes
|
startExperimentBuilder | protected void startExperimentBuilder()(Code) | | When called from Organizer, the selected user object is an experiment.
When called from CSMART File-Build menu, the
selected user object is a recipe or society.
|
Methods inherited from javax.swing.JComponent | public void addAncestorListener(AncestorListener listener)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) public void computeVisibleRect(Rectangle visibleRect)(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public JToolTip createToolTip()(Code)(Java Doc) public void disable()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) protected void fireVetoableChange(String propertyName, Object oldValue, Object newValue) throws java.beans.PropertyVetoException(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) public ActionListener getActionForKeyStroke(KeyStroke aKeyStroke)(Code)(Java Doc) final public ActionMap getActionMap()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public AncestorListener[] getAncestorListeners()(Code)(Java Doc) public boolean getAutoscrolls()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Border getBorder()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) final public Object getClientProperty(Object key)(Code)(Java Doc) protected Graphics getComponentGraphics(Graphics g)(Code)(Java Doc) public JPopupMenu getComponentPopupMenu()(Code)(Java Doc) public int getConditionForKeyStroke(KeyStroke aKeyStroke)(Code)(Java Doc) public int getDebugGraphicsOptions()(Code)(Java Doc) public static Locale getDefaultLocale()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public boolean getInheritsPopupMenu()(Code)(Java Doc) final public InputMap getInputMap(int condition)(Code)(Java Doc) final public InputMap getInputMap()(Code)(Java Doc) public InputVerifier getInputVerifier()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public Insets getInsets(Insets insets)(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public Component getNextFocusableComponent()(Code)(Java Doc) public Point getPopupLocation(MouseEvent event)(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public KeyStroke[] getRegisteredKeyStrokes()(Code)(Java Doc) public JRootPane getRootPane()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Point getToolTipLocation(MouseEvent event)(Code)(Java Doc) public String getToolTipText()(Code)(Java Doc) public String getToolTipText(MouseEvent event)(Code)(Java Doc) public Container getTopLevelAncestor()(Code)(Java Doc) public TransferHandler getTransferHandler()(Code)(Java Doc) public String getUIClassID()(Code)(Java Doc) public boolean getVerifyInputWhenFocusTarget()(Code)(Java Doc) public synchronized VetoableChangeListener[] getVetoableChangeListeners()(Code)(Java Doc) public Rectangle getVisibleRect()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public void grabFocus()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public static boolean isLightweightComponent(Component c)(Code)(Java Doc) public boolean isManagingFocus()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isOptimizedDrawingEnabled()(Code)(Java Doc) final public boolean isPaintingForPrint()(Code)(Java Doc) public boolean isPaintingTile()(Code)(Java Doc) public boolean isRequestFocusEnabled()(Code)(Java Doc) public boolean isValidateRoot()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) protected void paintBorder(Graphics g)(Code)(Java Doc) protected void paintChildren(Graphics g)(Code)(Java Doc) protected void paintComponent(Graphics g)(Code)(Java Doc) public void paintImmediately(int x, int y, int w, int h)(Code)(Java Doc) public void paintImmediately(Rectangle r)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) protected void printBorder(Graphics g)(Code)(Java Doc) protected void printChildren(Graphics g)(Code)(Java Doc) protected void printComponent(Graphics g)(Code)(Java Doc) protected void processComponentKeyEvent(KeyEvent e)(Code)(Java Doc) protected boolean processKeyBinding(KeyStroke ks, KeyEvent e, int condition, boolean pressed)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) final public void putClientProperty(Object key, Object value)(Code)(Java Doc) public void registerKeyboardAction(ActionListener anAction, String aCommand, KeyStroke aKeyStroke, int aCondition)(Code)(Java Doc) public void registerKeyboardAction(ActionListener anAction, KeyStroke aKeyStroke, int aCondition)(Code)(Java Doc) public void removeAncestorListener(AncestorListener listener)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removeVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void repaint(Rectangle r)(Code)(Java Doc) public boolean requestDefaultFocus()(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) public boolean requestFocus(boolean temporary)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) public void resetKeyboardActions()(Code)(Java Doc) public void reshape(int x, int y, int w, int h)(Code)(Java Doc) public void revalidate()(Code)(Java Doc) public void scrollRectToVisible(Rectangle aRect)(Code)(Java Doc) final public void setActionMap(ActionMap am)(Code)(Java Doc) public void setAlignmentX(float alignmentX)(Code)(Java Doc) public void setAlignmentY(float alignmentY)(Code)(Java Doc) public void setAutoscrolls(boolean autoscrolls)(Code)(Java Doc) public void setBackground(Color bg)(Code)(Java Doc) public void setBorder(Border border)(Code)(Java Doc) public void setComponentPopupMenu(JPopupMenu popup)(Code)(Java Doc) public void setDebugGraphicsOptions(int debugOptions)(Code)(Java Doc) public static void setDefaultLocale(Locale l)(Code)(Java Doc) public void setDoubleBuffered(boolean aFlag)(Code)(Java Doc) public void setEnabled(boolean enabled)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFont(Font font)(Code)(Java Doc) public void setForeground(Color fg)(Code)(Java Doc) public void setInheritsPopupMenu(boolean value)(Code)(Java Doc) final public void setInputMap(int condition, InputMap map)(Code)(Java Doc) public void setInputVerifier(InputVerifier inputVerifier)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setNextFocusableComponent(Component aComponent)(Code)(Java Doc) public void setOpaque(boolean isOpaque)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) public void setRequestFocusEnabled(boolean requestFocusEnabled)(Code)(Java Doc) public void setToolTipText(String text)(Code)(Java Doc) public void setTransferHandler(TransferHandler newHandler)(Code)(Java Doc) protected void setUI(ComponentUI newUI)(Code)(Java Doc) public void setVerifyInputWhenFocusTarget(boolean verifyInputWhenFocusTarget)(Code)(Java Doc) public void setVisible(boolean aFlag)(Code)(Java Doc) public void unregisterKeyboardAction(KeyStroke aKeyStroke)(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void updateUI()(Code)(Java Doc)
|
Methods inherited from java.awt.Container | public Component add(Component comp)(Code)(Java Doc) public Component add(String name, Component comp)(Code)(Java Doc) public Component add(Component comp, int index)(Code)(Java Doc) public void add(Component comp, Object constraints)(Code)(Java Doc) public void add(Component comp, Object constraints, int index)(Code)(Java Doc) public synchronized void addContainerListener(ContainerListener l)(Code)(Java Doc) protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public int countComponents()(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public Component findComponentAt(int x, int y)(Code)(Java Doc) public Component findComponentAt(Point p)(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Component getComponent(int n)(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public int getComponentCount()(Code)(Java Doc) public int getComponentZOrder(Component comp)(Code)(Java Doc) public Component[] getComponents()(Code)(Java Doc) public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public FocusTraversalPolicy getFocusTraversalPolicy()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public LayoutManager getLayout()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public Insets insets()(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isAncestorOf(Component c)(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusCycleRoot()(Code)(Java Doc) final public boolean isFocusTraversalPolicyProvider()(Code)(Java Doc) public boolean isFocusTraversalPolicySet()(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printComponents(Graphics g)(Code)(Java Doc) protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) public void remove(int index)(Code)(Java Doc) public void remove(Component comp)(Code)(Java Doc) public void removeAll()(Code)(Java Doc) public synchronized void removeContainerListener(ContainerListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public void setComponentZOrder(Component comp, int index)(Code)(Java Doc) public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalPolicy(FocusTraversalPolicy policy)(Code)(Java Doc) final public void setFocusTraversalPolicyProvider(boolean provider)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setLayout(LayoutManager mgr)(Code)(Java Doc) public void transferFocusDownCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc) protected void validateTree()(Code)(Java Doc)
|
Methods inherited from java.awt.Component | public boolean action(Event evt, Object what)(Code)(Java Doc) public void add(PopupMenu popup)(Code)(Java Doc) public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc) public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public Rectangle bounds()(Code)(Java Doc) public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc) public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public boolean contains(Point p)(Code)(Java Doc) public Image createImage(ImageProducer producer)(Code)(Java Doc) public Image createImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void disable()(Code)(Java Doc) final protected void disableEvents(long eventsToDisable)(Code)(Java Doc) final public void dispatchEvent(AWTEvent e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void enable(boolean b)(Code)(Java Doc) final protected void enableEvents(long eventsToEnable)(Code)(Java Doc) public void enableInputMethods(boolean enable)(Code)(Java Doc) protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Color getBackground()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) public ColorModel getColorModel()(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc) public ComponentOrientation getComponentOrientation()(Code)(Java Doc) public Cursor getCursor()(Code)(Java Doc) public synchronized DropTarget getDropTarget()(Code)(Java Doc) public Container getFocusCycleRootAncestor()(Code)(Java Doc) public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc) public Font getFont()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc) public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc) public boolean getIgnoreRepaint()(Code)(Java Doc) public InputContext getInputContext()(Code)(Java Doc) public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc) public InputMethodRequests getInputMethodRequests()(Code)(Java Doc) public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Locale getLocale()(Code)(Java Doc) public Point getLocation()(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Point getLocationOnScreen()(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc) public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc) public Point getMousePosition() throws HeadlessException(Code)(Java Doc) public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc) public String getName()(Code)(Java Doc) public Container getParent()(Code)(Java Doc) public ComponentPeer getPeer()(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) public Dimension getSize()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Toolkit getToolkit()(Code)(Java Doc) final public Object getTreeLock()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public boolean gotFocus(Event evt, Object what)(Code)(Java Doc) public boolean handleEvent(Event evt)(Code)(Java Doc) public boolean hasFocus()(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc) public boolean inside(int x, int y)(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isBackgroundSet()(Code)(Java Doc) public boolean isCursorSet()(Code)(Java Doc) public boolean isDisplayable()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isFocusTraversable()(Code)(Java Doc) public boolean isFocusable()(Code)(Java Doc) public boolean isFontSet()(Code)(Java Doc) public boolean isForegroundSet()(Code)(Java Doc) public boolean isLightweight()(Code)(Java Doc) public boolean isMaximumSizeSet()(Code)(Java Doc) public boolean isMinimumSizeSet()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isPreferredSizeSet()(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public boolean isValid()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) public boolean keyDown(Event evt, int key)(Code)(Java Doc) public boolean keyUp(Event evt, int key)(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list()(Code)(Java Doc) public void list(PrintStream out)(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Point location()(Code)(Java Doc) public boolean lostFocus(Event evt, Object what)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc) public void move(int x, int y)(Code)(Java Doc) public void nextFocus()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintAll(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc) public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) protected void processFocusEvent(FocusEvent e)(Code)(Java Doc) protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc) protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc) protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc) public void remove(MenuComponent popup)(Code)(Java Doc) public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc) public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void repaint()(Code)(Java Doc) public void repaint(long tm)(Code)(Java Doc) public void repaint(int x, int y, int width, int height)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) protected boolean requestFocus(boolean temporary)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) public void reshape(int x, int y, int width, int height)(Code)(Java Doc) public void resize(int width, int height)(Code)(Java Doc) public void resize(Dimension d)(Code)(Java Doc) public void setBackground(Color c)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle r)(Code)(Java Doc) public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public void setCursor(Cursor cursor)(Code)(Java Doc) public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc) public void setEnabled(boolean b)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc) public void setFocusable(boolean focusable)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setForeground(Color c)(Code)(Java Doc) public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc) public void setLocale(Locale l)(Code)(Java Doc) public void setLocation(int x, int y)(Code)(Java Doc) public void setLocation(Point p)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setName(String name)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) public void setSize(Dimension d)(Code)(Java Doc) public void setVisible(boolean b)(Code)(Java Doc) public void show()(Code)(Java Doc) public void show(boolean b)(Code)(Java Doc) public Dimension size()(Code)(Java Doc) public String toString()(Code)(Java Doc) public void transferFocus()(Code)(Java Doc) public void transferFocusBackward()(Code)(Java Doc) public void transferFocusUpCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc)
|
|
|