|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JPanel
chemaxon.alchemist.configbuilder.ConfigBuilderPanel
public class ConfigBuilderPanel
Configuration Builder Panel for list based configuration editing
| Nested Class Summary | |
|---|---|
protected class |
ConfigBuilderPanel.LeftListModel
Is a SynchronizedAbstractFilterListModel implementation. |
| Nested classes/interfaces inherited from class javax.swing.JPanel |
|---|
javax.swing.JPanel.AccessibleJPanel |
| Nested classes/interfaces inherited from class javax.swing.JComponent |
|---|
javax.swing.JComponent.AccessibleJComponent |
| Nested classes/interfaces inherited from class java.awt.Container |
|---|
java.awt.Container.AccessibleAWTContainer |
| Nested classes/interfaces inherited from class java.awt.Component |
|---|
java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy |
| Field Summary | |
|---|---|
protected javax.swing.AbstractAction |
ADD_ACTION
An Action implementation which performs config element add |
protected javax.swing.AbstractAction |
MOVE_DOWN_ACTION
An Action implementation which performs config element move down |
protected javax.swing.AbstractAction |
MOVE_UP_ACTION
An Action implementation which performs config element move up |
protected javax.swing.Action |
openFileAction
open file handler action |
static java.lang.String |
PROPERTY_KEY_CONFIGURATION_VALID
property key for configuration validity |
static java.lang.String |
PROPERTY_KEY_ELEMENT_LIST
property key for element added or removed |
static java.lang.String |
PROPERTY_KEY_ELEMENT_ORDER
property key for element order changed |
protected javax.swing.AbstractAction |
REMOVE_ACTION
An Action implementation which performs config element remove |
| Fields inherited from class javax.swing.JComponent |
|---|
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
| Fields inherited from class java.awt.Component |
|---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
| Fields inherited from interface java.awt.image.ImageObserver |
|---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
| Constructor Summary | |
|---|---|
ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration)
Constructs a config builder panel with default options. |
|
ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
Constructs a config builder panel with default options. |
|
ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration,
chemaxon.alchemist.AlchemistProfile profile)
Constructs a config builder panel with specified configuration and profile |
|
ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration,
chemaxon.alchemist.AlchemistProfile profile,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
Constructs a config builder panel with specified configuration and profile with file load and save support. |
|
ConfigBuilderPanel(java.lang.String configPath)
Constructs a config builder panel with default options. |
|
ConfigBuilderPanel(java.lang.String configPath,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
Constructs a config builder panel with default options. |
|
ConfigBuilderPanel(java.lang.String configPath,
chemaxon.alchemist.AlchemistProfile profile)
Constructs a config builder panel with default options. |
|
ConfigBuilderPanel(java.lang.String configPath,
chemaxon.alchemist.AlchemistProfile profile,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
Constructs a config builder panel with default options. |
|
| Method Summary | |
|---|---|
void |
addConfigElement(ConfigElement element,
java.lang.String elementEditorClassName)
Adds a config element to the left list |
protected void |
addElement(ConfigElement element)
Adds the clone of the element to the right list |
void |
addElementPropertyChangeListener(java.beans.PropertyChangeListener listener)
Adds a PropertyChangeListener for element property changes |
void |
addElementPropertyChangeListener(java.lang.String propertyName,
java.beans.PropertyChangeListener listener)
Adds a PropertyChangeListener for a specific element property change |
void |
clear()
Removes all the elements form the right list |
ConfigElement[] |
getConfiguration()
Returns the current configuration elements |
protected java.awt.CardLayout |
getControlLayout()
Returns the controlLayout |
protected javax.swing.JPanel |
getControlPanel()
Initializes and returns control panel (south section) |
java.lang.String |
getDefaultHelpText()
Returns the default help text |
protected javax.swing.event.SwingPropertyChangeSupport |
getElementPropertyChangeSupport()
Returns the elementPropertyChangeSupport |
protected javax.swing.JLabel |
getHelpPanelLabel()
Returns the help panel label |
protected javax.swing.JTextArea |
getHelpTextArea()
Returns the text area for the help |
protected javax.swing.JList |
getLeftList()
initializes left list (source list) |
protected javax.swing.JComboBox |
getLeftListFilter()
Returns the filter combo for the left list |
chemaxon.alchemist.configbuilder.LicenseSupport |
getLicenseSupport()
Returns the license support |
protected java.awt.CardLayout |
getMainLayout()
Returns the mainLayout |
protected javax.swing.JSplitPane |
getNormalViewSplit()
Returns the normalViewSplit |
javax.swing.Action |
getOpenFileAction()
Returns the Action associated with open file event, or null if no Action |
protected chemaxon.alchemist.configbuilder.ConfigElementPresentationChooser |
getPresentationChooser()
Returns the presentationChooser |
chemaxon.alchemist.AlchemistProfile |
getProfile()
Returns the current profile Note, that profile may be out of sync as various editors may use the same profile to store custom properties. |
protected javax.swing.JList |
getRightList()
initializes right list (configuration) |
javax.swing.Action |
getSaveFileAction()
Returns the Action associated with save file event, or null if no Action |
java.lang.String[] |
getTags()
Returns the array of tags |
protected void |
handleValidityChanges()
Checks if last valid flag is the same is current validity, fires property change if needed |
boolean |
isFileSupportEnabled()
Returns true if file loading support is enabled |
protected boolean |
isFirstResized()
Returns the firstResized |
boolean |
isIgnoreMissingLicense()
Returns false when panel is set to mark elements without valid license |
boolean |
isValidConfiguration()
Returns true if configuration is valid |
void |
readConfiguration(chemaxon.alchemist.configbuilder.ConfigurationReader reader)
Reads a configuration provided by reader |
void |
readConfiguration(chemaxon.alchemist.configbuilder.ConfigurationReader reader,
java.lang.String[] groupFilter)
Reads a configuration provided by reader and filter. |
void |
refreshLicenses()
Re-validates the license information of elements |
void |
removeConfigElement(ConfigElement element)
Removes the element from the left list (and all occurences from the right list) |
void |
removeConfigElement(java.lang.String elementId)
Removes an element from the left list by id (and all occurences from the right list) |
void |
removeConfigElements(java.lang.String[] elementIds)
Removes an an array of elements from the left list by id (and all occurences from the right list) |
protected void |
removeElement(ConfigElement element)
Removes element from the right list |
void |
removeElementPropertyChangeListener(java.beans.PropertyChangeListener listener)
Removes a PropertyChangeListener from element listener list |
void |
removeElementPropertyChangeListener(java.lang.String propertyName,
java.beans.PropertyChangeListener listener)
Removes a specific PropertyChangeListener from element listener list |
protected void |
setControlLayout(java.awt.CardLayout controlLayout)
Sets the controlLayout |
void |
setDefaultHelpText(java.lang.String text)
Sets the default help text |
void |
setDefaultTag(java.lang.String tag)
Activates the tag with given name if exists |
protected void |
setElementPropertyChangeSupport(javax.swing.event.SwingPropertyChangeSupport elementPropertyChangeSupport)
Sets the elementPropertyChangeSupport |
void |
setFileSupportEnabled(boolean fileSupportEnabled)
Sets file support enabled or disabled |
protected void |
setFirstResized(boolean firstResized)
Sets the firstResized |
void |
setIgnoreMissingLicense(boolean ignoreMissingLicense)
Sets that actions without valid license are marked |
void |
setLicenseSupport(chemaxon.alchemist.configbuilder.LicenseSupport licenseSupport)
Sets the license support and refreshes licenses |
protected void |
setMainLayout(java.awt.CardLayout mainLayout)
Sets the mainLayout |
protected void |
setNormalViewSplit(javax.swing.JSplitPane normalViewSplit)
Sets the normalViewSplit |
void |
setOpenFileAction(javax.swing.Action openFileAction)
Sets the Action to be invoked at open file event |
protected void |
setPresentationChooser(chemaxon.alchemist.configbuilder.ConfigElementPresentationChooser presentationChooser)
Sets the presentationChooser |
void |
setProfile(chemaxon.alchemist.AlchemistProfile profile)
Sets the profile to be used. |
void |
setSaveFileAction(javax.swing.Action saveFileAction)
Sets the Action to be invoked at save file event |
void |
updateProfile()
Updates the current profile by forcing all editors sharing this profile to save changes |
void |
writeConfiguration(chemaxon.alchemist.configbuilder.ConfigurationWriter writer)
Writes the current configuration with provider writer |
| Methods inherited from class javax.swing.JPanel |
|---|
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
| Methods inherited from class javax.swing.JComponent |
|---|
addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintComponent, paintImmediately, paintImmediately, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update |
| Methods inherited from class java.awt.Container |
|---|
add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusBackward, transferFocusDownCycle, validate, validateTree |
| Methods inherited from class java.awt.Component |
|---|
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, hide, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusUpCycle |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final java.lang.String PROPERTY_KEY_ELEMENT_LIST
public static final java.lang.String PROPERTY_KEY_ELEMENT_ORDER
public static final java.lang.String PROPERTY_KEY_CONFIGURATION_VALID
protected final javax.swing.AbstractAction ADD_ACTION
Action implementation which performs config element add
protected final javax.swing.AbstractAction REMOVE_ACTION
Action implementation which performs config element remove
protected final javax.swing.AbstractAction MOVE_UP_ACTION
Action implementation which performs config element move up
protected final javax.swing.AbstractAction MOVE_DOWN_ACTION
Action implementation which performs config element move down
protected javax.swing.Action openFileAction
| Constructor Detail |
|---|
public ConfigBuilderPanel(java.lang.String configPath)
throws org.exolab.castor.xml.MarshalException,
org.exolab.castor.xml.ValidationException,
java.io.FileNotFoundException
configPath - is the path to configuration XML of available elements
java.io.FileNotFoundException - when file was not found during xml unmarshalling
org.exolab.castor.xml.MarshalException - when MarshalException occurred during xml unmarshalling
org.exolab.castor.xml.ValidationException - when ValidationException occurred during xml unmarshalling
public ConfigBuilderPanel(java.lang.String configPath,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
throws org.exolab.castor.xml.MarshalException,
org.exolab.castor.xml.ValidationException
configPath - is the path to configuration XML of available elementsopenFileAction - will be invoked on load file, if not nullsaveFileAction - will be invoked on save file, in not null
org.exolab.castor.xml.MarshalException - when MarshalException occurred during xml unmarshalling
org.exolab.castor.xml.ValidationException - when ValidationException occurred during xml unmarshalling
public ConfigBuilderPanel(java.lang.String configPath,
chemaxon.alchemist.AlchemistProfile profile)
throws org.exolab.castor.xml.MarshalException,
org.exolab.castor.xml.ValidationException,
java.io.FileNotFoundException
configPath - is the path to configuration XML of available elementsprofile - is the profile used
java.io.FileNotFoundException - when file was not found during xml unmarshalling
org.exolab.castor.xml.MarshalException - when MarshalException occurred during xml unmarshalling
org.exolab.castor.xml.ValidationException - when ValidationException occurred during xml unmarshalling
public ConfigBuilderPanel(java.lang.String configPath,
chemaxon.alchemist.AlchemistProfile profile,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
throws org.exolab.castor.xml.MarshalException,
org.exolab.castor.xml.ValidationException
configPath - is the path to configuration XML of available elementsprofile - is the profile usedopenFileAction - will be invoked on load file, if not nullsaveFileAction - will be invoked on save file, in not null
org.exolab.castor.xml.MarshalException - when MarshalException occurred during xml unmarshalling
org.exolab.castor.xml.ValidationException - when ValidationException occurred during xml unmarshallingpublic ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration)
configuration - is the XML-based configuration of available elements
public ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
configuration - is the XML-based configuration of available elementsopenFileAction - will be invoked on load file, if not nullsaveFileAction - will be invoked on save file, in not null
public ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration,
chemaxon.alchemist.AlchemistProfile profile)
configuration - is the configuration used for element listprofile - is the profile storing custom user options
public ConfigBuilderPanel(chemaxon.alchemist.configbuilder.configuration.marshalling.Configuration configuration,
chemaxon.alchemist.AlchemistProfile profile,
javax.swing.Action openFileAction,
javax.swing.Action saveFileAction)
configuration - is the configuration used for element listprofile - is the profile storing custom user optionsopenFileAction - will be invoked on load file, if not nullsaveFileAction - will be invoked on save file, in not null| Method Detail |
|---|
public void addConfigElement(ConfigElement element,
java.lang.String elementEditorClassName)
element - is the element to be addedelementEditorClassName - is the class name of the element editorpublic void removeConfigElement(ConfigElement element)
element - is the element to be removedpublic void removeConfigElement(java.lang.String elementId)
elementId - is the id of the element to be removedpublic void removeConfigElements(java.lang.String[] elementIds)
elementIds - is the array of element ids to be removedprotected javax.swing.JComboBox getLeftListFilter()
protected javax.swing.JPanel getControlPanel()
protected javax.swing.JList getLeftList()
protected javax.swing.JList getRightList()
protected javax.swing.JLabel getHelpPanelLabel()
protected javax.swing.JTextArea getHelpTextArea()
public java.lang.String getDefaultHelpText()
public void setDefaultHelpText(java.lang.String text)
text - the new help textpublic void refreshLicenses()
public chemaxon.alchemist.configbuilder.LicenseSupport getLicenseSupport()
public void setLicenseSupport(chemaxon.alchemist.configbuilder.LicenseSupport licenseSupport)
licenseSupport - is the new license supportprotected void handleValidityChanges()
public void setProfile(chemaxon.alchemist.AlchemistProfile profile)
profile - is the profile to be usedreadConfiguration(ConfigurationReader),
readConfiguration(ConfigurationReader, String[]),
getProfile(),
updateProfile()public void updateProfile()
public chemaxon.alchemist.AlchemistProfile getProfile()
updateProfile()
to perform a profile update
setProfile(AlchemistProfile profile),
updateProfile()protected void addElement(ConfigElement element)
element - is the element to be clonedprotected void removeElement(ConfigElement element)
element - is the element to be removedpublic void clear()
public void readConfiguration(chemaxon.alchemist.configbuilder.ConfigurationReader reader)
reader - is the configuration reader
public void readConfiguration(chemaxon.alchemist.configbuilder.ConfigurationReader reader,
java.lang.String[] groupFilter)
"") into the filter.
reader - is the configuration readergroupFilter - is an array of group names
public void writeConfiguration(chemaxon.alchemist.configbuilder.ConfigurationWriter writer)
throws java.io.IOException
writer - is the configuration writer
java.io.IOException - when IOException occurred during the writer's writeConfiguration methodpublic ConfigElement[] getConfiguration()
public boolean isValidConfiguration()
public boolean isIgnoreMissingLicense()
false when panel is set to mark elements without valid license
false when panel is set to mark elements without valid licensepublic void setIgnoreMissingLicense(boolean ignoreMissingLicense)
ignoreMissingLicense - when set to false, unlicensed actions will be markedpublic void addElementPropertyChangeListener(java.beans.PropertyChangeListener listener)
PropertyChangeListener for element property changes
listener - is the PropertyChangeListener to be added
public void addElementPropertyChangeListener(java.lang.String propertyName,
java.beans.PropertyChangeListener listener)
PropertyChangeListener for a specific element property change
propertyName - is the name of the property listen onlistener - is the PropertyChangeListener to be addedpublic void removeElementPropertyChangeListener(java.beans.PropertyChangeListener listener)
PropertyChangeListener from element listener list
listener - is the PropertyChangeListener to be removed
public void removeElementPropertyChangeListener(java.lang.String propertyName,
java.beans.PropertyChangeListener listener)
PropertyChangeListener from element listener list
propertyName - is the name of the property that was listened onlistener - is the PropertyChangeListener to be removedpublic boolean isFileSupportEnabled()
true if file loading support is enabled
true if file loading support is enabledpublic void setFileSupportEnabled(boolean fileSupportEnabled)
fileSupportEnabled - is true when file support should be enabled false otherwisepublic javax.swing.Action getOpenFileAction()
Action associated with open file event, or null if no Action
Action associated with open file event, or null if no Actionpublic void setOpenFileAction(javax.swing.Action openFileAction)
Action to be invoked at open file event
openFileAction - is the Action to be invoked at open filepublic javax.swing.Action getSaveFileAction()
Action associated with save file event, or null if no Action
Action associated with save file event, or null if no Actionpublic void setSaveFileAction(javax.swing.Action saveFileAction)
Action to be invoked at save file event
saveFileAction - is the Action to be invoked at save filepublic java.lang.String[] getTags()
public void setDefaultTag(java.lang.String tag)
tag - is the taggetTags()protected void setElementPropertyChangeSupport(javax.swing.event.SwingPropertyChangeSupport elementPropertyChangeSupport)
elementPropertyChangeSupport - the elementPropertyChangeSupport to setprotected javax.swing.event.SwingPropertyChangeSupport getElementPropertyChangeSupport()
protected void setFirstResized(boolean firstResized)
firstResized - the firstResized to setprotected boolean isFirstResized()
protected void setNormalViewSplit(javax.swing.JSplitPane normalViewSplit)
normalViewSplit - the normalViewSplit to setprotected javax.swing.JSplitPane getNormalViewSplit()
protected void setMainLayout(java.awt.CardLayout mainLayout)
mainLayout - the mainLayout to setprotected java.awt.CardLayout getMainLayout()
protected void setPresentationChooser(chemaxon.alchemist.configbuilder.ConfigElementPresentationChooser presentationChooser)
presentationChooser - the presentationChooser to setprotected chemaxon.alchemist.configbuilder.ConfigElementPresentationChooser getPresentationChooser()
protected void setControlLayout(java.awt.CardLayout controlLayout)
controlLayout - the controlLayout to setprotected java.awt.CardLayout getControlLayout()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||