Serialized Form


Package org.argouml.application.api

Class org.argouml.application.api.AbstractArgoJPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

title

java.lang.String title

icon

javax.swing.Icon icon

tear

boolean tear
if true, remove tab from parent JTabbedPane.


orientation

Orientation orientation

Package org.argouml.application.events

Class org.argouml.application.events.ArgoDiagramAppearanceEvent extends ArgoEvent implements Serializable

Class org.argouml.application.events.ArgoEvent extends java.util.EventObject implements Serializable

Serialized Fields

eventType

int eventType

Class org.argouml.application.events.ArgoGeneratorEvent extends ArgoEvent implements Serializable

Class org.argouml.application.events.ArgoHelpEvent extends ArgoEvent implements Serializable

Serialized Fields

helpText

java.lang.String helpText

Class org.argouml.application.events.ArgoNotationEvent extends ArgoEvent implements Serializable

Class org.argouml.application.events.ArgoProfileEvent extends ArgoEvent implements Serializable

Class org.argouml.application.events.ArgoStatusEvent extends ArgoEvent implements Serializable

Serialized Fields

text

java.lang.String text

Package org.argouml.cognitive

Class org.argouml.cognitive.CompoundCritic extends Critic implements Serializable

Serialized Fields

critics

java.util.List<E> critics
The sub-critics that make up this CompoundCritic.


extraDesignMaterials

java.util.Set<E> extraDesignMaterials
The extra design materials to be returned along with CompoundCritic.getCriticizedDesignMaterials()

Class org.argouml.cognitive.Critic extends java.util.Observable implements Serializable

Serialized Fields

priority

int priority
The priority of the ToDoItem produced.


headline

java.lang.String headline
The headline of the ToDoItem produced.


description

java.lang.String description
The description of the ToDoItem produced.


moreInfoURL

java.lang.String moreInfoURL
The moreInfoURL of the ToDoItem produced.


clarifier

javax.swing.Icon clarifier

decisionCategory

java.lang.String decisionCategory
The decision category that this critic is relevant to. The idea of each critic being relevant to exactly one type of decision is a very simple one. Subclasses that have more sophisticated decision relevance logic should override isRelevantToDecisions. You can also define new ControlMech's.

Decision categories are defined in the DecisionModel of a particular domain.

See Also:
ControlMech

supportedDecisions

java.util.List<E> supportedDecisions

supportedGoals

java.util.List<E> supportedGoals

criticType

java.lang.String criticType
The decision type of this critic. For example, correctness, completeness, consistency, alternative, presentation, optimization, organizational, tool critics, etc.


isActive

boolean isActive
Internal flag that stores the end result of all ControlMech evaluations of this critic.


controlRecs

java.util.Hashtable<K,V> controlRecs
Control records used in determining if this Critic should be active.


knowledgeTypes

ListSet<T> knowledgeTypes

triggerMask

long triggerMask

Class org.argouml.cognitive.DecisionModel extends java.util.Observable implements Serializable

Serialized Fields

decisions

java.util.List<E> decisions

Class org.argouml.cognitive.GoalModel extends java.util.Observable implements Serializable

Serialized Fields

goals

java.util.List<E> goals

Class org.argouml.cognitive.ListSet extends java.lang.Object implements Serializable

Serialized Fields

list

java.util.List<E> list

set

java.util.Set<E> set
A hash set containing the same items as the list so that we can use it for fast lookups.


mutex

java.lang.Object mutex
The mutex/lock which is used for operations that need to check/modify both the set and list. Get operations which only access the list can rely on the fact that it is a synchronized list.

Class org.argouml.cognitive.ToDoItem extends java.lang.Object implements Serializable

serialVersionUID: 3058660098451455153L

Serialized Fields

thePoster

Poster thePoster
Who posted this item (e.g., a Critic, or the designer)?


theHeadline

java.lang.String theHeadline
One line description of issue.


thePriority

int thePriority
How important is this issue? Enough to interrupt the designer?


theDescription

java.lang.String theDescription
One paragraph description of the issue.


theMoreInfoURL

java.lang.String theMoreInfoURL
URL for background (textbook?) knowledge about the domain.


theOffenders

ListSet<T> theOffenders
The part of the design this issue affects.

Each member is either a model element, a Fig, or a Diagram.

TODO: Offenders need to be more strongly typed. Because there is not a common supertype for these three types, we can't type this list. We should introduce a common supertype/interface. - tfm 20070630

The list of offenders is set once (e.g. by the constructor) and cannot change.


theWizard

Wizard theWizard

cachedExpandedHeadline

java.lang.String cachedExpandedHeadline

cachedExpandedDescription

java.lang.String cachedExpandedDescription

Class org.argouml.cognitive.UnresolvableException extends java.lang.Exception implements Serializable


Package org.argouml.cognitive.checklist

Class org.argouml.cognitive.checklist.CheckItem extends java.lang.Object implements Serializable

Serialized Fields

category

java.lang.String category

description

java.lang.String description
One sentence description of the issue. usually in the form of a question.


moreInfoURL

java.lang.String moreInfoURL
URL for background (textbook?) knowledge about the domain.


predicate

Predicate predicate
The predicate is the condition under which the checkitem should be listed.

Class org.argouml.cognitive.checklist.Checklist extends java.util.ArrayList<CheckItem> implements Serializable

Serialized Fields

nextCategory

java.lang.String nextCategory

Class org.argouml.cognitive.checklist.ChecklistStatus extends Checklist implements Serializable

Class org.argouml.cognitive.checklist.CheckManager extends java.lang.Object implements Serializable


Package org.argouml.cognitive.checklist.ui

Class org.argouml.cognitive.checklist.ui.TabChecklist extends AbstractArgoJPanel implements Serializable

Serialized Fields

target

java.lang.Object target

tableModel

org.argouml.cognitive.checklist.ui.TableModelChecklist tableModel

shouldBeEnabled

boolean shouldBeEnabled

table

javax.swing.JTable table

Package org.argouml.cognitive.critics

Class org.argouml.cognitive.critics.SnoozeOrder extends java.lang.Object implements Serializable

serialVersionUID: -7133285313405407967L

Serialized Fields

snoozeUntil

java.util.Date snoozeUntil
Critic should sleep until this time.


snoozeAgain

java.util.Date snoozeAgain
If the designer snoozees the critics again before this time, then go to sleep for even longer.


interval

long interval
The sleeping time, including the effects of repeated snoozeing.


now

java.util.Date now

Class org.argouml.cognitive.critics.Wizard extends java.lang.Object implements Serializable

Serialized Fields

panels

java.util.List<E> panels
User interface panels displayed so far.


step

int step
The current step that the Wizard is on. Zero indicates that the wizard has not yet begun.


finished

boolean finished
True when the wizard has done everything it can.


started

boolean started

item

WizardItem item

Package org.argouml.cognitive.critics.ui

Class org.argouml.cognitive.critics.ui.ActionOpenCritics extends UndoableAction implements Serializable


Package org.argouml.cognitive.ui

Class org.argouml.cognitive.ui.ActionAutoCritique extends UndoableAction implements Serializable

serialVersionUID: 9057306108717070004L

Class org.argouml.cognitive.ui.ActionGoToCritique extends UndoableAction implements Serializable

Serialized Fields

item

ToDoItem item

Class org.argouml.cognitive.ui.ActionNewToDoItem extends UndoableAction implements Serializable

Class org.argouml.cognitive.ui.ActionOpenDecisions extends UndoableAction implements Serializable

Class org.argouml.cognitive.ui.ActionOpenGoals extends UndoableAction implements Serializable

Class org.argouml.cognitive.ui.ActionResolve extends ToDoItemAction implements Serializable

Class org.argouml.cognitive.ui.ActionSnooze extends ToDoItemAction implements Serializable

Class org.argouml.cognitive.ui.TabToDo extends AbstractArgoJPanel implements Serializable

serialVersionUID: 4819730646847978729L

Serialized Fields

description

WizDescription description

lastPanel

javax.swing.JPanel lastPanel

splitPane

BorderSplitPane splitPane

target

java.lang.Object target

Class org.argouml.cognitive.ui.ToDoItemAction extends UndoableAction implements Serializable

Serialized Fields

rememberedTarget

java.lang.Object rememberedTarget

Class org.argouml.cognitive.ui.ToDoPane extends javax.swing.JPanel implements Serializable

serialVersionUID: 1911401582875302996L

Serialized Fields

tree

javax.swing.JTree tree

combo

javax.swing.JComboBox combo

perspectives

java.util.List<E> perspectives
List of TreeModels.


curPerspective

ToDoPerspective curPerspective

root

ToDoList root

countLabel

javax.swing.JLabel countLabel

lastSel

java.lang.Object lastSel

Class org.argouml.cognitive.ui.ToDoTreeRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable

Serialized Fields

postIt0

javax.swing.ImageIcon postIt0

postIt25

javax.swing.ImageIcon postIt25

postIt50

javax.swing.ImageIcon postIt50

postIt75

javax.swing.ImageIcon postIt75

postIt99

javax.swing.ImageIcon postIt99

postIt100

javax.swing.ImageIcon postIt100

postItD0

javax.swing.ImageIcon postItD0

postItD25

javax.swing.ImageIcon postItD25

postItD50

javax.swing.ImageIcon postItD50

postItD75

javax.swing.ImageIcon postItD75

postItD99

javax.swing.ImageIcon postItD99

postItD100

javax.swing.ImageIcon postItD100

treeCellRenderer

UMLTreeCellRenderer treeCellRenderer

Class org.argouml.cognitive.ui.WizDescription extends WizStep implements Serializable

serialVersionUID: 2545592446694112088L

Serialized Fields

description

javax.swing.JTextArea description

Class org.argouml.cognitive.ui.WizStep extends javax.swing.JPanel implements Serializable

serialVersionUID: 8845081753813440684L

Serialized Fields

mainPanel

javax.swing.JPanel mainPanel

backButton

javax.swing.JButton backButton

nextButton

javax.swing.JButton nextButton

finishButton

javax.swing.JButton finishButton

helpButton

javax.swing.JButton helpButton

buttonPanel

javax.swing.JPanel buttonPanel

target

java.lang.Object target
The current target.

Class org.argouml.cognitive.ui.WizStepChoice extends WizStep implements Serializable

serialVersionUID: 8055896491830976354L

Serialized Fields

instructions

javax.swing.JTextArea instructions

choices

java.util.List<E> choices

selectedIndex

int selectedIndex

Class org.argouml.cognitive.ui.WizStepConfirm extends WizStep implements Serializable

serialVersionUID: 9145817515169354813L

Serialized Fields

instructions

javax.swing.JTextArea instructions

Class org.argouml.cognitive.ui.WizStepCue extends WizStep implements Serializable

serialVersionUID: -5886729588114736302L

Serialized Fields

instructions

javax.swing.JTextArea instructions

Class org.argouml.cognitive.ui.WizStepManyTextFields extends WizStep implements Serializable

serialVersionUID: -5154002407806917092L

Serialized Fields

instructions

javax.swing.JTextArea instructions

fields

java.util.List<E> fields

Class org.argouml.cognitive.ui.WizStepTextField extends WizStep implements Serializable

serialVersionUID: -4245718254267840545L

Serialized Fields

instructions

javax.swing.JTextArea instructions

label

javax.swing.JLabel label

field

javax.swing.JTextField field

Package org.argouml.core.propertypanels.ui

Class org.argouml.core.propertypanels.ui.RadioButtonPanel extends javax.swing.JPanel implements Serializable

serialVersionUID: -3786246432442765208L

Serialized Fields

umlElement

java.lang.Object umlElement
The UML element this panel represents


propertyName

java.lang.String propertyName
The UML property this panel represents


buttonGroup

javax.swing.ButtonGroup buttonGroup
The group of buttons


getterSetterManager

GetterSetterManager getterSetterManager
The getter/setter facade for accessing the model subsystem

Class org.argouml.core.propertypanels.ui.UMLEditableComboBox extends org.argouml.core.propertypanels.ui.UMLComboBox implements Serializable

Class org.argouml.core.propertypanels.ui.UMLSignalEventSignalList.ActionNewSignal extends AbstractActionNewModelElement implements Serializable

serialVersionUID: -1905204858078372670L


Package org.argouml.kernel

Class org.argouml.kernel.ProjectImpl extends java.lang.Object implements Serializable

serialVersionUID: 1399111233978692444L

Serialized Fields

projectType

int projectType
The project type


uri

java.net.URI uri
TODO: should just be the directory to write.


authorname

java.lang.String authorname

authoremail

java.lang.String authoremail

description

java.lang.String description

version

java.lang.String version

projectSettings

ProjectSettings projectSettings

searchpath

java.util.List<E> searchpath

members

java.util.List<E> members

historyFile

java.lang.String historyFile

persistenceVersion

int persistenceVersion
The version number of the persistence format that last saved this project.


models

java.util.List<E> models
Instances of the UML model.


root

java.lang.Object root

roots

java.util.Collection<E> roots

diagrams

java.util.List<E> diagrams
Instances of the UML diagrams.


currentNamespace

java.lang.Object currentNamespace

uuidRefs

java.util.Map<K,V> uuidRefs

profileConfiguration

ProfileConfiguration profileConfiguration

activeDiagram

ArgoDiagram activeDiagram
The active diagram, pointer to a diagram in the list with diagrams.


savedDiagramName

java.lang.String savedDiagramName
The name of the diagram to show by default after loading a project.


defaultModelTypeCache

java.util.HashMap<K,V> defaultModelTypeCache
Cache for the default model.


trashcan

java.util.Collection<E> trashcan

undoManager

UndoManager undoManager

dirty

boolean dirty

Package org.argouml.language.ui

Class org.argouml.language.ui.LanguageComboBox extends javax.swing.JComboBox implements Serializable


Package org.argouml.model

Class org.argouml.model.AddAssociationEvent extends AssociationChangeEvent implements Serializable

serialVersionUID: 1672552190650651905L

Class org.argouml.model.AssociationChangeEvent extends UmlChangeEvent implements Serializable

serialVersionUID: 6586460366990334839L

Serialized Fields

changedValue

java.lang.Object changedValue
The value that was changed.

Class org.argouml.model.AttributeChangeEvent extends UmlChangeEvent implements Serializable

serialVersionUID: 1573202490278617016L

Class org.argouml.model.DeleteInstanceEvent extends UmlChangeEvent implements Serializable

serialVersionUID: 650590690953566827L

Class org.argouml.model.IllegalModelElementConnectionException extends UmlException implements Serializable

serialVersionUID: -3934102825576700361L

Class org.argouml.model.InstanceChangeEvent extends UmlChangeEvent implements Serializable

Class org.argouml.model.InvalidElementException extends java.lang.RuntimeException implements Serializable

serialVersionUID: -5831736942969641257L

Class org.argouml.model.NotImplementedException extends java.lang.RuntimeException implements Serializable

serialVersionUID: -3782492193881615900L

Class org.argouml.model.RemoveAssociationEvent extends AssociationChangeEvent implements Serializable

serialVersionUID: -1657123224250248465L

Class org.argouml.model.UmlChangeEvent extends java.beans.PropertyChangeEvent implements Serializable

Serialized Fields

originalEvent

java.util.EventObject originalEvent
The original event that caused this event to be propogated. Useful for debugging purposes. Not to be made available to the client code as this is implementation specific.

Class org.argouml.model.UmlException extends java.lang.Exception implements Serializable

serialVersionUID: -1029321716390822627L

Class org.argouml.model.XmiException extends UmlException implements Serializable

Serialized Fields

publicId

java.lang.String publicId

systemId

java.lang.String systemId

lineNumber

int lineNumber

columnNumber

int columnNumber

Class org.argouml.model.XmiReferenceException extends XmiException implements Serializable

Serialized Fields

reference

java.lang.String reference

Class org.argouml.model.XmiReferenceRuntimeException extends java.lang.RuntimeException implements Serializable

Serialized Fields

reference

java.lang.String reference

Package org.argouml.notation.ui

Class org.argouml.notation.ui.NotationComboBox extends javax.swing.JComboBox implements Serializable

serialVersionUID: 4059899784583789412L

Class org.argouml.notation.ui.SettingsTabNotation extends javax.swing.JPanel implements Serializable

Serialized Fields

topPanel

javax.swing.JPanel topPanel

notationLanguage

javax.swing.JComboBox notationLanguage

useGuillemots

javax.swing.JCheckBox useGuillemots

showAssociationNames

javax.swing.JCheckBox showAssociationNames

showVisibility

javax.swing.JCheckBox showVisibility

showMultiplicity

javax.swing.JCheckBox showMultiplicity

showInitialValue

javax.swing.JCheckBox showInitialValue

showProperties

javax.swing.JCheckBox showProperties

showTypes

javax.swing.JCheckBox showTypes

showStereotypes

javax.swing.JCheckBox showStereotypes

showSingularMultiplicities

javax.swing.JCheckBox showSingularMultiplicities

scope

int scope

p

Project p

Package org.argouml.pattern.cognitive.critics

Class org.argouml.pattern.cognitive.critics.CrConsiderFacade extends CrUML implements Serializable

serialVersionUID: -5513915374319458662L

Class org.argouml.pattern.cognitive.critics.CrConsiderSingleton extends CrUML implements Serializable

serialVersionUID: -178026888698499288L

Class org.argouml.pattern.cognitive.critics.CrSingletonViolatedMissingStaticAttr extends CrUML implements Serializable

Class org.argouml.pattern.cognitive.critics.CrSingletonViolatedOnlyPrivateConstructors extends CrUML implements Serializable


Package org.argouml.persistence

Class org.argouml.persistence.OpenException extends org.argouml.persistence.PersistenceException implements Serializable

serialVersionUID: -4787911270548948677L

Class org.argouml.persistence.SaveException extends org.argouml.persistence.PersistenceException implements Serializable

Class org.argouml.persistence.UmlVersionException extends XmiFormatException implements Serializable

Class org.argouml.persistence.VersionException extends OpenException implements Serializable

Class org.argouml.persistence.XmiFormatException extends OpenException implements Serializable


Package org.argouml.profile

Class org.argouml.profile.ProfileException extends java.lang.Exception implements Serializable


Package org.argouml.profile.internal.ocl

Class org.argouml.profile.internal.ocl.CrOCL extends CrUML implements Serializable

Serialized Fields

interpreter

OclInterpreter interpreter
the OCL Interpreter


ocl

java.lang.String ocl
the OCL string


designMaterials

java.util.Set<E> designMaterials
the design materials to be criticized

Class org.argouml.profile.internal.ocl.InvalidOclException extends java.lang.Exception implements Serializable


Package org.argouml.profile.internal.ui

Class org.argouml.profile.internal.ui.PropPanelCritic extends PropPanel implements Serializable

Serialized Fields

criticClass

javax.swing.JTextField criticClass

name

javax.swing.JTextField name

headline

javax.swing.JTextField headline

priority

javax.swing.JTextField priority

description

javax.swing.JTextArea description

ocl

javax.swing.JTextArea ocl

oclLabel

javax.swing.JLabel oclLabel

supportedDecision

javax.swing.JTextField supportedDecision

knowledgeType

javax.swing.JTextField knowledgeType

Package org.argouml.swingext

Class org.argouml.swingext.GlassPane extends javax.swing.JComponent implements Serializable

serialVersionUID: -1170784689759475601L

Serialized Fields

theWindow

java.awt.Window theWindow

activeComponent

java.awt.Component activeComponent

Class org.argouml.swingext.JLinkButton extends javax.swing.JButton implements Serializable

Serialized Fields

linkBehavior

int linkBehavior

linkColor

java.awt.Color linkColor

colorPressed

java.awt.Color colorPressed

visitedLinkColor

java.awt.Color visitedLinkColor

disabledLinkColor

java.awt.Color disabledLinkColor

buttonURL

java.net.URL buttonURL

defaultAction

javax.swing.Action defaultAction

isLinkVisited

boolean isLinkVisited

Class org.argouml.swingext.SpacerPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

w

int w

h

int h

Package org.argouml.taskmgmt

Class org.argouml.taskmgmt.ProgressEvent extends java.util.EventObject implements Serializable

serialVersionUID: -440923505939663713L

Serialized Fields

length

long length

position

long position

Package org.argouml.ui

Class org.argouml.ui.AbstractArgoJPanel extends AbstractArgoJPanel implements Serializable

Class org.argouml.ui.ActionCreateContainedModelElement extends AbstractActionNewModelElement implements Serializable

Serialized Fields

metaType

java.lang.Object metaType

Class org.argouml.ui.ActionCreateEdgeModelElement extends javax.swing.AbstractAction implements Serializable

Serialized Fields

metaType

java.lang.Object metaType

source

java.lang.Object source

dest

java.lang.Object dest

Class org.argouml.ui.ActionExportXMI extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -3445739054369264482L

Class org.argouml.ui.ActionImportXMI extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -8756142027376622496L

Class org.argouml.ui.ActionProjectSettings extends javax.swing.AbstractAction implements Serializable

Class org.argouml.ui.ActionRedo extends javax.swing.AbstractAction implements Serializable

serialVersionUID: 3921952827170089931L

Class org.argouml.ui.ActionSettings extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -3646595772633674514L

Serialized Fields

dialog

ArgoDialog dialog
The settings dialog.

Class org.argouml.ui.ActionUndo extends javax.swing.AbstractAction implements Serializable

serialVersionUID: 6544646406482242086L

Class org.argouml.ui.ArgoJFontChooser extends javax.swing.JDialog implements Serializable

Serialized Fields

jContentPane

javax.swing.JPanel jContentPane

jlstFamilies

javax.swing.JList jlstFamilies

jlstSizes

javax.swing.JList jlstSizes

jlblFamilies

javax.swing.JLabel jlblFamilies

jlblSize

javax.swing.JLabel jlblSize

jlblPreview

javax.swing.JLabel jlblPreview

jbtnOk

javax.swing.JButton jbtnOk

jbtnCancel

javax.swing.JButton jbtnCancel

resultSize

int resultSize

resultName

java.lang.String resultName

isOk

boolean isOk

Class org.argouml.ui.ArgoJMenu extends javax.swing.JMenu implements Serializable

serialVersionUID: 8318663502924796474L

Class org.argouml.ui.ArgoStatusBar extends StatusBar implements Serializable

Class org.argouml.ui.CheckboxTableModel extends javax.swing.table.AbstractTableModel implements Serializable

serialVersionUID: 111532940880908401L

Serialized Fields

elements

java.lang.Object[][] elements

columnName1

java.lang.String columnName1

columnName2

java.lang.String columnName2

Class org.argouml.ui.DetailsPane extends javax.swing.JPanel implements Serializable

Serialized Fields

topLevelTabbedPane

javax.swing.JTabbedPane topLevelTabbedPane
The top level pane, which is a tabbed pane.


currentTarget

java.lang.Object currentTarget
The current target.


tabPanelList

java.util.List<E> tabPanelList
The list of all the tabs, which are JPanels, in the JTabbedPane tabs.


lastNonNullTab

int lastNonNullTab
index of the selected tab in the JTabbedPane.


listenerList

javax.swing.event.EventListenerList listenerList
The list with targetlisteners, this are the property panels managed by TabProps It should only contain one listener at a time.


orientation

Orientation orientation

hasTabs

boolean hasTabs

upArrowIcon

javax.swing.Icon upArrowIcon
Graphic that goes on the tab label.


leftArrowIcon

javax.swing.Icon leftArrowIcon
Graphic that goes on the tab label.

Class org.argouml.ui.DisplayTextTree extends javax.swing.JTree implements Serializable

serialVersionUID: 949560309817566838L

Serialized Fields

expandedPathsInModel

java.util.Hashtable<K,V> expandedPathsInModel
A Map helping the tree maintain a consistent expanded paths state.
  keys are the current TreeModel of this Tree
  values are Lists of currently expanded paths.
 


reexpanding

boolean reexpanding

showStereotype

boolean showStereotype
This determines if stereotypes are to be shown in the explorer.

Class org.argouml.ui.ExceptionDialog extends javax.swing.JDialog implements Serializable

serialVersionUID: -2773182347529547418L

Serialized Fields

closeButton

javax.swing.JButton closeButton

copyButton

javax.swing.JButton copyButton

northLabel

javax.swing.JLabel northLabel

textArea

javax.swing.JEditorPane textArea

Class org.argouml.ui.HeapMonitor extends javax.swing.JComponent implements Serializable

Serialized Fields

free

long free

total

long total

max

long max

used

long used

Class org.argouml.ui.HelpBox extends javax.swing.JFrame implements Serializable

serialVersionUID: 0L

Serialized Fields

tabs

javax.swing.JTabbedPane tabs
A tabbed pane to display several pages simultaneously.


panes

javax.swing.JEditorPane[] panes
The panes to display the various help pages.


pages

java.lang.String[][] pages
The names and URLs for the pages.

Class org.argouml.ui.MenuBar14 extends GenericArgoMenuBar implements Serializable

Class org.argouml.ui.MenuBar2 extends GenericArgoMenuBar implements Serializable

Class org.argouml.ui.MultiEditorPane extends javax.swing.JPanel implements Serializable

Serialized Fields

tabInstances

javax.swing.JPanel[] tabInstances
Classes for tabs to be included in the property panel. (previously stored in org/argouml/argo.ini)


tabs

javax.swing.JTabbedPane tabs

tabPanels

java.util.List<E> tabPanels

lastTab

java.awt.Component lastTab

Class org.argouml.ui.ProjectBrowser extends javax.swing.JFrame implements Serializable

serialVersionUID: 6974246679451284917L

Serialized Fields

appName

java.lang.String appName

editorPane

MultiEditorPane editorPane

northEastPane

DetailsPane northEastPane

northPane

DetailsPane northPane

northWestPane

DetailsPane northWestPane

eastPane

DetailsPane eastPane

southEastPane

DetailsPane southEastPane

southPane

DetailsPane southPane

detailsPanesByCompassPoint

java.util.Map<K,V> detailsPanesByCompassPoint

menuBar

GenericArgoMenuBar menuBar

statusBar

StatusBar statusBar
Partially implemented. Needs work to display import of source and saving of zargo.


defaultFont

java.awt.Font defaultFont
TODO: this needs work so that users can set the font size through a gui preference window.


workAreaPane

BorderSplitPane workAreaPane

explorerPane

org.argouml.ui.NavigatorPane explorerPane
The explorer (formerly called navigator) pane containing the modelstructure.


todoPane

javax.swing.JPanel todoPane
The todopane (lower left corner of screen). This may actually be a blank JPanel if the ProjectBrowser was lazily initialized via ProjectBrowser.getInstance().


titleHandler

org.argouml.ui.ProjectBrowser.TitleHandler titleHandler
A class that handles the title of this frame, e.g. to indicate save status.


saveAction

javax.swing.AbstractAction saveAction
The action to save the current project.


removeFromDiagram

ActionRemoveFromDiagram removeFromDiagram
The action to remove the current selected Figs from the diagram.

Class org.argouml.ui.ProjectSettingsTabProfile extends javax.swing.JPanel implements Serializable

Serialized Fields

p

Project p

loadFromFile

javax.swing.JButton loadFromFile

unregisterProfile

javax.swing.JButton unregisterProfile

addButton

javax.swing.JButton addButton

removeButton

javax.swing.JButton removeButton

availableList

javax.swing.JList availableList

usedList

javax.swing.JList usedList

stereoLabel

javax.swing.JLabel stereoLabel

stereoField

javax.swing.JComboBox stereoField

fileChooser

javax.swing.JFileChooser fileChooser

initialized

boolean initialized

Class org.argouml.ui.ProjectSettingsTabProperties extends javax.swing.JPanel implements Serializable

Serialized Fields

p

Project p

userFullname

javax.swing.JTextField userFullname
This is where the user enters full name in settings tab. This information is stored in the zargo file.


userEmail

javax.swing.JTextField userEmail
This is where the user enters email in settings tab. This information is stored in the zargo file.


description

javax.swing.JTextArea description
This is where the user enters a description of the project in the settings tab. This information is stored in the zargo file.


version

javax.swing.JTextField version
This is where the ArgoUML version that last saved this project is shown in the settings tab. This information is stored in the zargo file.

Class org.argouml.ui.SettingsTabProfile extends javax.swing.JPanel implements Serializable

Serialized Fields

loadFromFile

javax.swing.JButton loadFromFile

addButton

javax.swing.JButton addButton

removeButton

javax.swing.JButton removeButton

availableList

javax.swing.JList availableList

defaultList

javax.swing.JList defaultList

directoryList

javax.swing.JList directoryList

addDirectory

javax.swing.JButton addDirectory

removeDirectory

javax.swing.JButton removeDirectory

refreshProfiles

javax.swing.JButton refreshProfiles

stereoLabel

javax.swing.JLabel stereoLabel

stereoField

javax.swing.JComboBox stereoField

initialized

boolean initialized

Class org.argouml.ui.ShadowComboBox extends javax.swing.JComboBox implements Serializable

serialVersionUID: 3440806802523267746L

Class org.argouml.ui.SplashScreen extends javax.swing.JWindow implements Serializable

Serialized Fields

statusBar

StatusBar statusBar

paintCalled

boolean paintCalled
Flag indicating that the splash screen has been painted.

Class org.argouml.ui.StatusBar extends javax.swing.JPanel implements Serializable

Serialized Fields

msg

javax.swing.JLabel msg

progress

javax.swing.JProgressBar progress

statusText

java.lang.String statusText

Class org.argouml.ui.StylePanel extends AbstractArgoJPanel implements Serializable

serialVersionUID: 2183676111107689482L

Serialized Fields

panelTarget

Fig panelTarget

Class org.argouml.ui.StylePanelFig extends StylePanel implements Serializable

serialVersionUID: -6232843473753751128L

Serialized Fields

bboxLabel

javax.swing.JLabel bboxLabel

bboxField

javax.swing.JTextField bboxField

fillLabel

javax.swing.JLabel fillLabel

fillField

javax.swing.JComboBox fillField

lineLabel

javax.swing.JLabel lineLabel

lineField

javax.swing.JComboBox lineField

stereoLabel

javax.swing.JLabel stereoLabel

stereoField

javax.swing.JComboBox stereoField

spacer

SpacerPanel spacer

spacer2

SpacerPanel spacer2

spacer3

SpacerPanel spacer3

Class org.argouml.ui.StylePanelFigNodeModelElement extends StylePanelFig implements Serializable

Serialized Fields

refreshTransaction

boolean refreshTransaction
Flag to indicate that a refresh is going on.


displayLabel

javax.swing.JLabel displayLabel

pathCheckBox

javax.swing.JCheckBox pathCheckBox

displayPane

javax.swing.JPanel displayPane

Class org.argouml.ui.StylePanelFigRRect extends StylePanelFig implements Serializable

Serialized Fields

roundingLabel

javax.swing.JLabel roundingLabel

roundingField

javax.swing.JTextField roundingField

Class org.argouml.ui.StylePanelFigText extends StylePanelFig implements Serializable

serialVersionUID: 2019248527481196634L

Serialized Fields

fontLabel

javax.swing.JLabel fontLabel

fontField

javax.swing.JComboBox fontField

sizeLabel

javax.swing.JLabel sizeLabel

sizeField

javax.swing.JComboBox sizeField

styleLabel

javax.swing.JLabel styleLabel

styleField

javax.swing.JComboBox styleField

justLabel

javax.swing.JLabel justLabel

justField

javax.swing.JComboBox justField

textColorLabel

javax.swing.JLabel textColorLabel

textColorField

javax.swing.JComboBox textColorField

Class org.argouml.ui.TabResults extends AbstractArgoJPanel implements Serializable

serialVersionUID: 4980167466628873068L

Serialized Fields

pred

PredicateSearch pred

cg

ChildGenerator cg

root

java.lang.Object root

mainPane

javax.swing.JSplitPane mainPane

results

java.util.List<E> results

related

java.util.List<E> related

diagrams

java.util.List<E> diagrams

relatedShown

boolean relatedShown

resultsLabel

javax.swing.JLabel resultsLabel

resultsTable

javax.swing.JTable resultsTable

resultsModel

TMResults resultsModel

relatedLabel

javax.swing.JLabel relatedLabel

relatedTable

javax.swing.JTable relatedTable

relatedModel

TMResults relatedModel

Class org.argouml.ui.TabText extends AbstractArgoJPanel implements Serializable

serialVersionUID: -1484647093166393888L

Serialized Fields

target

java.lang.Object target

textArea

javax.swing.JTextArea textArea

parseChanges

boolean parseChanges

enabled

boolean enabled

toolbar

javax.swing.JToolBar toolbar
The optional toolbar. Contains null if no toolbar was requested.

Class org.argouml.ui.UndoableAction extends javax.swing.AbstractAction implements Serializable


Package org.argouml.ui.cmd

Class org.argouml.ui.cmd.ActionAboutArgoUML extends javax.swing.AbstractAction implements Serializable

serialVersionUID: 7988731727182091682L

Class org.argouml.ui.cmd.ActionAdjustGrid extends javax.swing.AbstractAction implements Serializable

Serialized Fields

myMap

java.util.Map<K,V> myMap

Class org.argouml.ui.cmd.ActionAdjustSnap extends javax.swing.AbstractAction implements Serializable

Serialized Fields

guideSize

int guideSize

Class org.argouml.ui.cmd.ActionExit extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -6264722939329644183L

Class org.argouml.ui.cmd.ActionGotoDiagram extends UndoableAction implements Serializable

Class org.argouml.ui.cmd.ActionHelp extends javax.swing.AbstractAction implements Serializable

serialVersionUID: 0L

Class org.argouml.ui.cmd.ActionNew extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -3943153836514178100L

Class org.argouml.ui.cmd.ActionNewProfile extends javax.swing.AbstractAction implements Serializable

Class org.argouml.ui.cmd.ActionNotation extends UndoableAction implements Serializable

serialVersionUID: 1364283215100616618L

Serialized Fields

menu

javax.swing.JMenu menu
The popup menu with all notations. It gets filled every time the menu is opened (see ActionNotation.menuSelected(MenuEvent me)), since it depends on the current project, and notation languages may be added or removed by plugins.

Class org.argouml.ui.cmd.ActionPrint extends javax.swing.AbstractAction implements Serializable

Class org.argouml.ui.cmd.ActionShowXMLDump extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -7942597779499060380L

Class org.argouml.ui.cmd.ActionSystemInfo extends javax.swing.AbstractAction implements Serializable

Class org.argouml.ui.cmd.GenericArgoMenuBar extends javax.swing.JMenuBar implements Serializable

serialVersionUID: 2904074534530273119L

Serialized Fields

disableableActions

java.util.Collection<E> disableableActions
Deprecated. 

fileToolbar

javax.swing.JToolBar fileToolbar
Deprecated. 
The toolbars.


editToolbar

javax.swing.JToolBar editToolbar
Deprecated. 

viewToolbar

javax.swing.JToolBar viewToolbar
Deprecated. 

createDiagramToolbar

javax.swing.JToolBar createDiagramToolbar
Deprecated. 

mruList

LastRecentlyUsedMenuList mruList
Deprecated. 
Most recently used project list.


edit

javax.swing.JMenu edit
Deprecated. 
Edit menu.


select

javax.swing.JMenu select
Deprecated. 
The Select menu is a submenu of Edit.


view

ArgoJMenu view
Deprecated. 
View under which is the Goto Diagram, Find, Zoom, Adjust grid etc.


createDiagramMenu

javax.swing.JMenu createDiagramMenu
Deprecated. 
Toolbar:create diagram.


tools

javax.swing.JMenu tools
Deprecated. 
Currently not used by core ArgoUML.


generate

javax.swing.JMenu generate
Deprecated. 
Supports java generation, modules for php and html/javadocs are planned feel free to contribute here!


arrange

ArgoJMenu arrange
Deprecated. 
This should be invoked automatically when importing sources.


critique

ArgoJMenu critique
Deprecated. 
The critique menu.


help

javax.swing.JMenu help
Deprecated. 
It needs it. Currently there is only system information and an about text. Hyperlinking to online docs at argouml.org is considered to be a basic improvement.


navigateTargetForwardAction

javax.swing.Action navigateTargetForwardAction
Deprecated. 

navigateTargetBackAction

javax.swing.Action navigateTargetBackAction
Deprecated. 

settingsAction

ActionSettings settingsAction
Deprecated. 

aboutAction

ActionAboutArgoUML aboutAction
Deprecated. 

exitAction

ActionExit exitAction
Deprecated. 

openAction

ActionOpenProject openAction
Deprecated. 

Class org.argouml.ui.cmd.ShortcutChangedEvent extends java.util.EventObject implements Serializable

serialVersionUID: 961611716902568240L

Serialized Fields

keyStroke

javax.swing.KeyStroke keyStroke

Class org.argouml.ui.cmd.ShortcutField extends javax.swing.JTextField implements Serializable

serialVersionUID: -62483698420802557L

Serialized Fields

listenerList

javax.swing.event.EventListenerList listenerList

Package org.argouml.ui.explorer

Class org.argouml.ui.explorer.ActionDeployProfile extends javax.swing.AbstractAction implements Serializable

Serialized Fields

undeployedProfile

java.lang.Object undeployedProfile

Class org.argouml.ui.explorer.ActionExportProfileXMI extends javax.swing.AbstractAction implements Serializable

Serialized Fields

selectedProfile

Profile selectedProfile

Class org.argouml.ui.explorer.ActionManageProfiles extends javax.swing.AbstractAction implements Serializable

Serialized Fields

dialog

ProjectSettingsDialog dialog
The settings dialog.


profilesTab

ProjectSettingsTabProfile profilesTab

Class org.argouml.ui.explorer.ActionPerspectiveConfig extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -708783262437452872L

Class org.argouml.ui.explorer.DnDExplorerTree extends ExplorerTree implements Serializable

serialVersionUID: 6207230394860016617L

Serialized Fields

clickOffset

java.awt.Point clickOffset
Where, in the drag image, the mouse was clicked.


sourcePath

javax.swing.tree.TreePath sourcePath
The path being dragged.


ghostImage

java.awt.image.BufferedImage ghostImage
The 'drag image'.


selectedTreePath

javax.swing.tree.TreePath selectedTreePath
The selected node.


dragSource

java.awt.dnd.DragSource dragSource
dnd source.

Class org.argouml.ui.explorer.ExplorerPopup extends javax.swing.JPopupMenu implements Serializable

serialVersionUID: -5663884871599931780L

Serialized Fields

createDiagrams

javax.swing.JMenu createDiagrams

Class org.argouml.ui.explorer.ExplorerTree extends DisplayTextTree implements Serializable

serialVersionUID: 992867483644759920L

Serialized Fields

bgImage

java.awt.Image bgImage
Background image only displayed in UML2 mode


updatingSelection

boolean updatingSelection
Prevents target event cycles between this and the TargetManager.


updatingSelectionViaTreeSelection

boolean updatingSelectionViaTreeSelection
Prevents target event cycles between this and the TargetManager for tree selection events.

Class org.argouml.ui.explorer.ExplorerTreeModel extends javax.swing.tree.DefaultTreeModel implements Serializable

serialVersionUID: 3132732494386565870L

Serialized Fields

rules

java.util.List<E> rules
an array of PerspectiveRules, that determine the tree view.


modelElementMap

java.util.Map<K,V> modelElementMap
a map used to resolve model elements to tree nodes when determining what effect a model event will have on the tree.


order

java.util.Comparator<T> order
the global order for siblings in the tree.


updatingChildren

java.util.List<E> updatingChildren
The children currently being updated.


nodeUpdater

org.argouml.ui.explorer.ExplorerTreeModel.ExplorerUpdater nodeUpdater
A Runnable object that when executed does update some currently pending nodes.


tree

ExplorerTree tree

Class org.argouml.ui.explorer.ExplorerTreeNode extends javax.swing.tree.DefaultMutableTreeNode implements Serializable

serialVersionUID: -6766504350537675845L

Serialized Fields

model

ExplorerTreeModel model

expanded

boolean expanded

pending

boolean pending

modifySet

java.util.Set<E> modifySet

Class org.argouml.ui.explorer.PerspectiveComboBox extends javax.swing.JComboBox implements Serializable


Package org.argouml.ui.targetmanager

Class org.argouml.ui.targetmanager.TargetEvent extends java.util.EventObject implements Serializable

serialVersionUID: -307886693486269426L

Serialized Fields

theEventName

java.lang.String theEventName
The name of the event.


theOldTargets

java.lang.Object[] theOldTargets
The old targets before the change took place.


theNewTargets

java.lang.Object[] theNewTargets
The new targets after the change took place.


Package org.argouml.uml

Class org.argouml.uml.ActionAddStereotype extends UndoableAction implements Serializable

Serialized Fields

modelElements

java.util.Collection<E> modelElements

stereotype

java.lang.Object stereotype

Class org.argouml.uml.TMResults extends javax.swing.table.AbstractTableModel implements Serializable

serialVersionUID: -1444599676429024575L

Serialized Fields

rowObjects

java.util.List<E> rowObjects

diagrams

java.util.List<E> diagrams

showInDiagramColumn

boolean showInDiagramColumn

Package org.argouml.uml.cognitive

Class org.argouml.uml.cognitive.UMLToDoItem extends ToDoItem implements Serializable


Package org.argouml.uml.cognitive.checklist

Class org.argouml.uml.cognitive.checklist.UMLCheckItem extends CheckItem implements Serializable


Package org.argouml.uml.cognitive.critics

Class org.argouml.uml.cognitive.critics.AbstractCrTooMany extends CrUML implements Serializable

Serialized Fields

criticThreshold

int criticThreshold

Class org.argouml.uml.cognitive.critics.AbstractCrUnconventionalName extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrAlreadyRealizes extends CrUML implements Serializable

serialVersionUID: -8264991005828634274L

Class org.argouml.uml.cognitive.critics.CrAssocNameConflict extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrAttrNameConflict extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrCircularAssocClass extends CrUML implements Serializable

serialVersionUID: 5265695413303517728L

Class org.argouml.uml.cognitive.critics.CrCircularComposition extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrCircularInheritance extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrClassMustBeAbstract extends CrUML implements Serializable

serialVersionUID: -3881153331169214357L

Class org.argouml.uml.cognitive.critics.CrClassWithoutComponent extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrCompInstanceWithoutNode extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrComponentInstanceWithoutClassifier extends CrUML implements Serializable

serialVersionUID: -2178052428128671983L

Class org.argouml.uml.cognitive.critics.CrComponentWithoutNode extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrConflictingComposites extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrConstructorNeeded extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrCrossNamespaceAssoc extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrDisambigClassName extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrDisambigStateName extends CrUML implements Serializable

serialVersionUID: 5027208502429769593L

Class org.argouml.uml.cognitive.critics.CrDupParamName extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrDupRoleNames extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrEmptyPackage extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrFinalSubclassed extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrForkOutgoingTransition extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrIllegalGeneralization extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrIllegalName extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInstanceWithoutClassifier extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInterfaceAllPublic extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInterfaceOperOnly extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInterfaceWithoutComponent extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInvalidBranch extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInvalidFork extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInvalidForkTriggerOrGuard extends CrUML implements Serializable

serialVersionUID: -713044875133409390L

Class org.argouml.uml.cognitive.critics.CrInvalidHistory extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInvalidInitial extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInvalidJoin extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInvalidJoinTriggerOrGuard extends CrUML implements Serializable

serialVersionUID: 1052354516940735748L

Class org.argouml.uml.cognitive.critics.CrInvalidPseudoStateTrigger extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrInvalidSynch extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrJoinIncomingTransition extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrMergeClasses extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrMissingAttrName extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrMissingClassName extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrMissingOperName extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrMissingStateName extends CrUML implements Serializable

serialVersionUID: 1181623952639408440L

Class org.argouml.uml.cognitive.critics.CrMultiComposite extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrMultipleAgg extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrMultipleDeepHistoryStates extends CrUML implements Serializable

serialVersionUID: -4893102976661022514L

Class org.argouml.uml.cognitive.critics.CrMultipleInitialStates extends CrUML implements Serializable

serialVersionUID: 4151051235876065649L

Class org.argouml.uml.cognitive.critics.CrMultipleShallowHistoryStates extends CrUML implements Serializable

serialVersionUID: -8324054401013865193L

Class org.argouml.uml.cognitive.critics.CrNameConflict extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNameConflictAC extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNameConfusion extends CrUML implements Serializable

serialVersionUID: -6659510145586121263L

Class org.argouml.uml.cognitive.critics.CrNavFromInterface extends CrUML implements Serializable

serialVersionUID: 2660051106458704056L

Class org.argouml.uml.cognitive.critics.CrNoAssociations extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNodeInsideElement extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNodeInstanceInsideElement extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNodeInstanceWithoutClassifier extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNodesOverlap extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoGuard extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoIncomingTransitions extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoInitialState extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoInstanceVariables extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNonAggDataType extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoOperations extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoOutgoingTransitions extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoTransitions extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrNoTriggerOrGuard extends CrUML implements Serializable

serialVersionUID: -301548543890007262L

Class org.argouml.uml.cognitive.critics.CrNWayAgg extends CrUML implements Serializable

serialVersionUID: 5318978944855930303L

Class org.argouml.uml.cognitive.critics.CrObjectWithoutClassifier extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrObjectWithoutComponent extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrOperNameConflict extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrOppEndConflict extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrOppEndVsAttr extends CrUML implements Serializable

serialVersionUID: 5784567698177480475L

Class org.argouml.uml.cognitive.critics.CrProfile extends CrUML implements Serializable

serialVersionUID: 1785043010468681602L

Serialized Fields

localizationPrefix

java.lang.String localizationPrefix

Class org.argouml.uml.cognitive.critics.CrReservedName extends CrUML implements Serializable

serialVersionUID: -5839267391209851505L

Class org.argouml.uml.cognitive.critics.CrSeqInstanceWithoutClassifier extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrSubclassReference extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrTooManyAssoc extends AbstractCrTooMany implements Serializable

Class org.argouml.uml.cognitive.critics.CrTooManyAttr extends AbstractCrTooMany implements Serializable

serialVersionUID: 1281218975903539324L

Class org.argouml.uml.cognitive.critics.CrTooManyClasses extends AbstractCrTooMany implements Serializable

serialVersionUID: -3270186791825482658L

Class org.argouml.uml.cognitive.critics.CrTooManyOper extends AbstractCrTooMany implements Serializable

serialVersionUID: 3221965323817473947L

Class org.argouml.uml.cognitive.critics.CrTooManyStates extends AbstractCrTooMany implements Serializable

serialVersionUID: -7320341818814870066L

Class org.argouml.uml.cognitive.critics.CrTooManyTransitions extends AbstractCrTooMany implements Serializable

serialVersionUID: -5732942378849267065L

Class org.argouml.uml.cognitive.critics.CrUML extends Critic implements Serializable

serialVersionUID: 1785043010468681602L

Serialized Fields

localizationPrefix

java.lang.String localizationPrefix
By default looks for the localized strings at the critics Resource, but critics defined elsewhere (out of ArgoUML main tree) may override this parameter

Class org.argouml.uml.cognitive.critics.CrUnconventionalAttrName extends AbstractCrUnconventionalName implements Serializable

serialVersionUID: 4741909365018862474L

Class org.argouml.uml.cognitive.critics.CrUnconventionalClassName extends AbstractCrUnconventionalName implements Serializable

serialVersionUID: -3341858698991522822L

Class org.argouml.uml.cognitive.critics.CrUnconventionalOperName extends AbstractCrUnconventionalName implements Serializable

Class org.argouml.uml.cognitive.critics.CrUnconventionalPackName extends AbstractCrUnconventionalName implements Serializable

Class org.argouml.uml.cognitive.critics.CrUnnavigableAssoc extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrUselessAbstract extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrUselessInterface extends CrUML implements Serializable

serialVersionUID: -6586457111453473553L

Class org.argouml.uml.cognitive.critics.CrUtilityViolated extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrWrongDepEnds extends CrUML implements Serializable

serialVersionUID: -6587198606342935144L

Class org.argouml.uml.cognitive.critics.CrWrongLinkEnds extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.CrZeroLengthEdge extends CrUML implements Serializable

Class org.argouml.uml.cognitive.critics.UMLWizard extends Wizard implements Serializable

Serialized Fields

suggestion

java.lang.String suggestion
The suggestion string.

Class org.argouml.uml.cognitive.critics.WizAddConstructor extends UMLWizard implements Serializable

serialVersionUID: -4661562206721689576L

Serialized Fields

step1

WizStepTextField step1

label

java.lang.String label

instructions

java.lang.String instructions

Class org.argouml.uml.cognitive.critics.WizAddInstanceVariable extends UMLWizard implements Serializable

Serialized Fields

step1

WizStepTextField step1

label

java.lang.String label

instructions

java.lang.String instructions

Class org.argouml.uml.cognitive.critics.WizAddOperation extends UMLWizard implements Serializable

Serialized Fields

step1

WizStepTextField step1

label

java.lang.String label

instructions

java.lang.String instructions

Class org.argouml.uml.cognitive.critics.WizAssocComposite extends UMLWizard implements Serializable

Serialized Fields

instructions

java.lang.String instructions
The initial instructions on the Step 1 screen. May be set to a different string through WizAssocComposite.setInstructions(String).


step1Choice

WizStepChoice step1Choice
Contains the WizStepChoice that is used to get the user's desired options. Not created until we get to that step.


triggerAssociation

java.lang.Object triggerAssociation
The Association WizStepChoice that triggered the critic. Null until set when it is first needed.

Class org.argouml.uml.cognitive.critics.WizBreakCircularComp extends UMLWizard implements Serializable

Serialized Fields

instructions1

java.lang.String instructions1

instructions2

java.lang.String instructions2

instructions3

java.lang.String instructions3

step1

WizStepChoice step1

step2

WizStepChoice step2

step3

WizStepConfirm step3

selectedCls

java.lang.Object selectedCls

selectedAsc

java.lang.Object selectedAsc

Class org.argouml.uml.cognitive.critics.WizCueCards extends UMLWizard implements Serializable

Serialized Fields

cues

java.util.List<E> cues

Class org.argouml.uml.cognitive.critics.WizManyNames extends UMLWizard implements Serializable

serialVersionUID: -2827847568754795770L

Serialized Fields

instructions

java.lang.String instructions
The text that describes what to be done.


mes

java.util.List<E> mes
A list of model elements.


step1

WizStepManyTextFields step1

Class org.argouml.uml.cognitive.critics.WizMEName extends UMLWizard implements Serializable

Serialized Fields

instructions

java.lang.String instructions

label

java.lang.String label

mustEdit

boolean mustEdit

step1

WizStepTextField step1

origSuggest

java.lang.String origSuggest

Class org.argouml.uml.cognitive.critics.WizNavigable extends UMLWizard implements Serializable

serialVersionUID: 2571165058454693999L

Serialized Fields

instructions

java.lang.String instructions

option0

java.lang.String option0

option1

java.lang.String option1

option2

java.lang.String option2

step1

WizStepChoice step1

Class org.argouml.uml.cognitive.critics.WizOperName extends WizMEName implements Serializable

serialVersionUID: -4013730212763172160L

Serialized Fields

possibleConstructor

boolean possibleConstructor

stereotypePathChosen

boolean stereotypePathChosen

option0

java.lang.String option0

option1

java.lang.String option1

step1

WizStepChoice step1

step2

WizStepCue step2

createStereotype

java.lang.Object createStereotype

addedCreateStereotype

boolean addedCreateStereotype

Class org.argouml.uml.cognitive.critics.WizTooMany extends UMLWizard implements Serializable

Serialized Fields

instructions

java.lang.String instructions

step1

WizStepTextField step1

Package org.argouml.uml.diagram.state.ui

Class org.argouml.uml.diagram.state.ui.ButtonActionNewCallEvent extends org.argouml.uml.diagram.state.ui.ButtonActionNewEvent implements Serializable

Class org.argouml.uml.diagram.state.ui.ButtonActionNewChangeEvent extends org.argouml.uml.diagram.state.ui.ButtonActionNewEvent implements Serializable

Class org.argouml.uml.diagram.state.ui.ButtonActionNewSignalEvent extends org.argouml.uml.diagram.state.ui.ButtonActionNewEvent implements Serializable

Class org.argouml.uml.diagram.state.ui.ButtonActionNewTimeEvent extends org.argouml.uml.diagram.state.ui.ButtonActionNewEvent implements Serializable


Package org.argouml.uml.diagram.static_structure.ui

Class org.argouml.uml.diagram.static_structure.ui.StylePanelFigClass extends StylePanelFigNodeModelElement implements Serializable

serialVersionUID: 4587367369055254943L

Serialized Fields

attrCheckBox

javax.swing.JCheckBox attrCheckBox

operCheckBox

javax.swing.JCheckBox operCheckBox

refreshTransaction

boolean refreshTransaction
Flag to indicate that a refresh is going on.

Class org.argouml.uml.diagram.static_structure.ui.StylePanelFigInterface extends StylePanelFigNodeModelElement implements Serializable

serialVersionUID: -5908351031706234211L

Serialized Fields

operCheckBox

javax.swing.JCheckBox operCheckBox

refreshTransaction

boolean refreshTransaction
Flag to indicate that a refresh is going on.

Class org.argouml.uml.diagram.static_structure.ui.StylePanelFigPackage extends StylePanelFigNodeModelElement implements Serializable

serialVersionUID: -41790550511653720L

Serialized Fields

stereoCheckBox

javax.swing.JCheckBox stereoCheckBox

visibilityCheckBox

javax.swing.JCheckBox visibilityCheckBox

refreshTransaction

boolean refreshTransaction
Flag to indicate that a refresh is going on.


Package org.argouml.uml.diagram.ui

Class org.argouml.uml.diagram.ui.ActionAddAllClassesFromModel extends UndoableAction implements Serializable

Serialized Fields

object

java.lang.Object object

Class org.argouml.uml.diagram.ui.ActionAddConcurrentRegion extends UndoableAction implements Serializable

Class org.argouml.uml.diagram.ui.ActionAddExistingEdge extends UndoableAction implements Serializable

serialVersionUID: 736094733140639882L

Serialized Fields

edge

java.lang.Object edge

Class org.argouml.uml.diagram.ui.ActionAddExistingNode extends UndoableAction implements Serializable

Serialized Fields

object

java.lang.Object object
The UML object to be added to the diagram.

Class org.argouml.uml.diagram.ui.ActionAddExistingNodes extends UndoableAction implements Serializable

Serialized Fields

objects

java.util.Collection<E> objects
The UML objects to be added to the diagram.

Class org.argouml.uml.diagram.ui.ActionAddExtensionPoint extends UndoableAction implements Serializable

Class org.argouml.uml.diagram.ui.ActionAddMessage extends UndoableAction implements Serializable

Class org.argouml.uml.diagram.ui.ActionAddNote extends UndoableAction implements Serializable

serialVersionUID: 6502515091619480472L

Class org.argouml.uml.diagram.ui.ActionAggregation extends UndoableAction implements Serializable

Serialized Fields

str

java.lang.String str

agg

java.lang.Object agg

Class org.argouml.uml.diagram.ui.ActionCompartmentDisplay extends UndoableAction implements Serializable

Serialized Fields

display

boolean display
A flag to indicate whether the action should show or hide the relevant compartment.


cType

int cType
Compartment type(s) field. Bitfield of flags with a bit for each compartment type

Class org.argouml.uml.diagram.ui.ActionEdgesDisplay extends UndoableAction implements Serializable

Serialized Fields

show

boolean show

Class org.argouml.uml.diagram.ui.ActionMultiplicity extends UndoableAction implements Serializable

Serialized Fields

str

java.lang.String str

mult

java.lang.Object mult

Class org.argouml.uml.diagram.ui.ActionNavigability extends UndoableAction implements Serializable

Serialized Fields

nav

int nav
The actual navigability of this action.


assocStart

java.lang.Object assocStart
The association start.


assocEnd

java.lang.Object assocEnd
The association end.

Class org.argouml.uml.diagram.ui.ActionRemoveFromDiagram extends javax.swing.AbstractAction implements Serializable

Class org.argouml.uml.diagram.ui.ActionSaveDiagramToClipboard extends javax.swing.AbstractAction implements Serializable

serialVersionUID: 4916652432210626558L

Class org.argouml.uml.diagram.ui.ActionStereotypeView extends org.argouml.uml.diagram.ui.AbstractActionRadioMenuItem implements Serializable

Serialized Fields

targetNode

FigNodeModelElement targetNode

selectedStereotypeView

int selectedStereotypeView

Class org.argouml.uml.diagram.ui.ActionStereotypeViewBigIcon extends ActionStereotypeView implements Serializable

Class org.argouml.uml.diagram.ui.ActionStereotypeViewSmallIcon extends ActionStereotypeView implements Serializable

Class org.argouml.uml.diagram.ui.ActionStereotypeViewTextual extends ActionStereotypeView implements Serializable

Class org.argouml.uml.diagram.ui.PropPanelDiagram extends PropPanel implements Serializable

Serialized Fields

homeModelSelector

javax.swing.JComboBox homeModelSelector

homeModelComboBoxModel

org.argouml.uml.diagram.ui.UMLDiagramHomeModelComboBoxModel homeModelComboBoxModel

Class org.argouml.uml.diagram.ui.PropPanelString extends AbstractArgoJPanel implements Serializable

Serialized Fields

target

FigText target

nameLabel

javax.swing.JLabel nameLabel

nameField

javax.swing.JTextField nameField

Class org.argouml.uml.diagram.ui.SettingsTabDiagramAppearance extends javax.swing.JPanel implements Serializable

Serialized Fields

p

Project p

jbtnDiagramFont

javax.swing.JButton jbtnDiagramFont

showBoldNames

javax.swing.JCheckBox showBoldNames

hideBidirectionalArrows

javax.swing.JCheckBox hideBidirectionalArrows

defaultShadowWidth

ShadowComboBox defaultShadowWidth

selectedDiagramFontName

java.lang.String selectedDiagramFontName

selectedDiagramFontSize

int selectedDiagramFontSize

scope

int scope

jlblDiagramFont

javax.swing.JLabel jlblDiagramFont

Class org.argouml.uml.diagram.ui.SPFigEdgeModelElement extends StylePanelFig implements Serializable

Class org.argouml.uml.diagram.ui.StylePanelFigAssociationClass extends StylePanelFigNodeModelElement implements Serializable

Serialized Fields

attrCheckBox

javax.swing.JCheckBox attrCheckBox

operCheckBox

javax.swing.JCheckBox operCheckBox

refreshTransaction

boolean refreshTransaction
Flag to indicate that a refresh is going on.

Class org.argouml.uml.diagram.ui.StylePanelFigMessage extends StylePanelFigNodeModelElement implements Serializable

Serialized Fields

arrowLabel

javax.swing.JLabel arrowLabel

arrowField

javax.swing.JComboBox arrowField

Class org.argouml.uml.diagram.ui.TabDiagram extends AbstractArgoJPanel implements Serializable

serialVersionUID: -3305029387374936153L

Serialized Fields

target

UMLDiagram target
The diagram object.


graph

JGraph graph
The GEF JGraph in where the figs are painted.


updatingSelection

boolean updatingSelection
Prevents target event cycles between this and the TargetManager.


toolBar

javax.swing.JToolBar toolBar
The toolbar that is positioned just above the diagram containing the drawing tools.


Package org.argouml.uml.diagram.use_case.ui

Class org.argouml.uml.diagram.use_case.ui.StylePanelFigUseCase extends StylePanelFigNodeModelElement implements Serializable

Serialized Fields

epCheckBox

javax.swing.JCheckBox epCheckBox
The check box for toggling the visibility of extension points.


refreshTransaction

boolean refreshTransaction
Flag to indicate that a refresh is going on.


Package org.argouml.uml.reveng

Class org.argouml.uml.reveng.ConfigPanelExtension extends javax.swing.JPanel implements Serializable

Serialized Fields

configPanel

javax.swing.JPanel configPanel

attribute

javax.swing.JRadioButton attribute

datatype

javax.swing.JRadioButton datatype

modelcollections

javax.swing.JCheckBox modelcollections

modelorderedcollections

javax.swing.JCheckBox modelorderedcollections

collectionlist

javax.swing.JTextField collectionlist

orderedcollectionlist

javax.swing.JTextField orderedcollectionlist

Class org.argouml.uml.reveng.ImportInterface.ImportException extends java.lang.Exception implements Serializable


Package org.argouml.uml.reveng.ui

Class org.argouml.uml.reveng.ui.ImportClasspathDialog extends javax.swing.JPanel implements Serializable

Serialized Fields

paths

javax.swing.JList paths

pathsModel

javax.swing.DefaultListModel pathsModel

addButton

javax.swing.JButton addButton

removeButton

javax.swing.JButton removeButton

chooser

javax.swing.JFileChooser chooser

setting

SettingsTypes.PathListSelection setting

Class org.argouml.uml.reveng.ui.ImportStatusScreen extends javax.swing.JDialog implements Serializable

serialVersionUID: -1336242911879462274L

Serialized Fields

cancelButton

javax.swing.JButton cancelButton

progressLabel

javax.swing.JLabel progressLabel

progress

javax.swing.JProgressBar progress

messageArea

javax.swing.JTextArea messageArea

hasMessages

boolean hasMessages

canceled

boolean canceled

Package org.argouml.uml.ui

Class org.argouml.uml.ui.AbstractActionAddModelElement2 extends UndoableAction implements Serializable

Serialized Fields

target

java.lang.Object target

multiSelect

boolean multiSelect

exclusive

boolean exclusive

Class org.argouml.uml.ui.AbstractActionNavigate extends UndoableAction implements Serializable

Class org.argouml.uml.ui.AbstractActionNewModelElement extends UndoableAction implements Serializable

Serialized Fields

target

java.lang.Object target

Class org.argouml.uml.ui.AbstractActionRemoveElement extends UndoableAction implements Serializable

Serialized Fields

target

java.lang.Object target
The object that owns the object that must be removed (the object that is the target of the projectbrowser in most cases).


objectToRemove

java.lang.Object objectToRemove

Class org.argouml.uml.ui.ActionActivityDiagram extends ActionNewDiagram implements Serializable

serialVersionUID: -28844322376391273L

Class org.argouml.uml.ui.ActionAddDiagram extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionAddPackage extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionAddTopLevelPackage extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionBooleanTaggedValue extends UndoableAction implements Serializable

Serialized Fields

tagName

java.lang.String tagName

Class org.argouml.uml.ui.ActionClassDiagram extends ActionAddDiagram implements Serializable

serialVersionUID: 2415943949021223859L

Class org.argouml.uml.ui.ActionCollaborationDiagram extends ActionNewDiagram implements Serializable

serialVersionUID: -1089352213298998155L

Class org.argouml.uml.ui.ActionCopy extends javax.swing.AbstractAction implements Serializable

Serialized Fields

textSource

javax.swing.text.JTextComponent textSource

Class org.argouml.uml.ui.ActionCut extends javax.swing.AbstractAction implements Serializable

Serialized Fields

textSource

javax.swing.text.JTextComponent textSource

Class org.argouml.uml.ui.ActionDeleteModelElements extends UndoableAction implements Serializable

serialVersionUID: -5728400220151823726L

Class org.argouml.uml.ui.ActionDeploymentDiagram extends ActionAddDiagram implements Serializable

serialVersionUID: 9027235104963895167L

Class org.argouml.uml.ui.ActionGenerateAll extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionGenerateOne extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionGenerateProjectCode extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionGenerationSettings extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionImportFromSources extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionLayout extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionNavigateAction extends AbstractActionNavigate implements Serializable

serialVersionUID: -4136512885671684476L

Class org.argouml.uml.ui.ActionNavigateAssociation extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNavigateContainerElement extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNavigateContext extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNavigateNamespace extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNavigateOppositeAssocEnd extends AbstractActionNavigate implements Serializable

serialVersionUID: 7054600929513339932L

Class org.argouml.uml.ui.ActionNavigateOwner extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNavigateTransition extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNavigateUpNextDown extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNavigateUpPreviousDown extends AbstractActionNavigate implements Serializable

Class org.argouml.uml.ui.ActionNewDiagram extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionOpenProject extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionPaste extends javax.swing.AbstractAction implements Serializable

Serialized Fields

textSource

javax.swing.text.JTextComponent textSource
The source textcomponent where the caret is positioned.

Class org.argouml.uml.ui.ActionRemoveModelElement extends AbstractActionRemoveElement implements Serializable

Class org.argouml.uml.ui.ActionReopenProject extends javax.swing.AbstractAction implements Serializable

Serialized Fields

filename

java.lang.String filename

Class org.argouml.uml.ui.ActionRevertToSaved extends javax.swing.AbstractAction implements Serializable

Class org.argouml.uml.ui.ActionSaveAllGraphics extends javax.swing.AbstractAction implements Serializable

Serialized Fields

overwrite

boolean overwrite

Class org.argouml.uml.ui.ActionSaveGraphics extends javax.swing.AbstractAction implements Serializable

serialVersionUID: 3062674953320109889L

Class org.argouml.uml.ui.ActionSaveProject extends javax.swing.AbstractAction implements Serializable

serialVersionUID: -5579548202585774293L

Class org.argouml.uml.ui.ActionSaveProjectAs extends ActionSaveProject implements Serializable

serialVersionUID: -1209396991311217989L

Class org.argouml.uml.ui.ActionSequenceDiagram extends ActionNewDiagram implements Serializable

Class org.argouml.uml.ui.ActionSetMultiplicity extends UndoableAction implements Serializable

Class org.argouml.uml.ui.ActionSetSourcePath extends UndoableAction implements Serializable

serialVersionUID: -6455209886706784094L

Class org.argouml.uml.ui.ActionStateDiagram extends ActionNewDiagram implements Serializable

serialVersionUID: -5197718695001757808L

Class org.argouml.uml.ui.ActionUseCaseDiagram extends ActionAddDiagram implements Serializable

Class org.argouml.uml.ui.LabelledLayout extends java.lang.Object implements Serializable

serialVersionUID: -5596655602155151443L

Serialized Fields

hgap

int hgap
This is the horizontal gap (in pixels) which specifies the space between sections. They can be changed at any time. This should be a non negative integer.

 
See Also:
LabelledLayout.getHgap(), LabelledLayout.setHgap(int)

vgap

int vgap
This is the vertical gap (in pixels) which specifies the space between rows. They can be changed at any time. This should be a non negative integer.

 
See Also:
LabelledLayout.getVgap(), LabelledLayout.setVgap(int)

ignoreSplitters

boolean ignoreSplitters

Class org.argouml.uml.ui.PropPanel extends AbstractArgoJPanel implements Serializable

Serialized Fields

target

java.lang.Object target

modelElement

java.lang.Object modelElement

listenerList

javax.swing.event.EventListenerList listenerList
List of event listeners to notify. This is computed one time and frozen the first time any target change method (e.g. setTarget, targetAdded) is called.


buttonPanel

javax.swing.JPanel buttonPanel

titleLabel

javax.swing.JLabel titleLabel

actions

java.util.List<E> actions
A list with "actions".

Action in this respect are one of:

Class org.argouml.uml.ui.ScrollList extends javax.swing.JScrollPane implements Serializable

serialVersionUID: 6711776013279497682L

Serialized Fields

list

UMLLinkedList list
The Component that this scroll is wrapping.

Class org.argouml.uml.ui.TabConstraints extends AbstractArgoJPanel implements Serializable

Serialized Fields

mOcleEditor

OCLEditor mOcleEditor
The actual editor pane.


mMmeiTarget

java.lang.Object mMmeiTarget
The current target element.

Class org.argouml.uml.ui.TabDocumentation extends PropPanel implements Serializable

Class org.argouml.uml.ui.TabProps extends AbstractArgoJPanel implements Serializable

Serialized Fields

blankPanel

javax.swing.JPanel blankPanel

panels

java.util.Hashtable<K,V> panels

lastPanel

javax.swing.JPanel lastPanel

panelClassBaseName

java.lang.String panelClassBaseName

currentPanel

javax.swing.JPanel currentPanel
The panel currently displayed in center


target

java.lang.Object target

listenerList

javax.swing.event.EventListenerList listenerList
The list with targetlisteners, these are the property panels managed by TabProps. It should only contain one listener at a time.

Class org.argouml.uml.ui.TabSrc extends TabText implements Serializable

serialVersionUID: -4958164807996827484L

Serialized Fields

langName

Language langName

fileName

java.lang.String fileName

files

SourceUnit[] files

cbLang

LanguageComboBox cbLang

cbFiles

javax.swing.JComboBox cbFiles

Class org.argouml.uml.ui.TabStereotype extends PropPanel implements Serializable

serialVersionUID: -4741653225927138553L

Serialized Fields

selectedListModel

UMLModelElementListModel2 selectedListModel

availableListModel

UMLModelElementListModel2 availableListModel

selectedScroll

javax.swing.JScrollPane selectedScroll

availableScroll

javax.swing.JScrollPane availableScroll

panel

javax.swing.JPanel panel

addStButton

javax.swing.JButton addStButton

removeStButton

javax.swing.JButton removeStButton

xferButtons

javax.swing.JPanel xferButtons

selectedList

javax.swing.JList selectedList

availableList

javax.swing.JList availableList

Class org.argouml.uml.ui.TabStyle extends AbstractArgoJPanel implements Serializable

Serialized Fields

target

Fig target

shouldBeEnabled

boolean shouldBeEnabled

blankPanel

javax.swing.JPanel blankPanel

panels

java.util.Hashtable<K,V> panels

lastPanel

javax.swing.JPanel lastPanel

stylePanel

StylePanel stylePanel
The stylepanel shown by the tab style.


stylePanelNames

java.lang.String[] stylePanelNames

listenerList

javax.swing.event.EventListenerList listenerList

Class org.argouml.uml.ui.TabTaggedValues extends AbstractArgoJPanel implements Serializable

serialVersionUID: -8566948113385239423L

Serialized Fields

target

java.lang.Object target

shouldBeEnabled

boolean shouldBeEnabled

table

javax.swing.JTable table

titleLabel

javax.swing.JLabel titleLabel

buttonPanel

javax.swing.JToolBar buttonPanel

tagDefinitionsComboBox

UMLComboBox2 tagDefinitionsComboBox

tagDefinitionsComboBoxModel

UMLComboBoxModel2 tagDefinitionsComboBoxModel

Class org.argouml.uml.ui.TabTaggedValuesModel extends javax.swing.table.AbstractTableModel implements Serializable

serialVersionUID: -5711005901444956345L

Serialized Fields

target

java.lang.Object target
The ModelElement that is the current target.

Class org.argouml.uml.ui.UMLAddDialog extends javax.swing.JPanel implements Serializable

Serialized Fields

choicesList

javax.swing.JList choicesList
The GUI list for the choices


selectedList

javax.swing.JList selectedList
The GUI list for the selected choices


addButton

javax.swing.JButton addButton

removeButton

javax.swing.JButton removeButton

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

dialog

javax.swing.JDialog dialog

title

java.lang.String title

multiSelectAllowed

boolean multiSelectAllowed

returnValue

int returnValue
The returnvalue of the method showDialog. Returnvalue can be either JOptionPane.OK_OPTION or JOptionPane.CANCEL_OPTION


exclusive

boolean exclusive

Class org.argouml.uml.ui.UMLCheckBox2 extends javax.swing.JCheckBox implements Serializable

Serialized Fields

checkBoxTarget

java.lang.Object checkBoxTarget

propertySetName

java.lang.String propertySetName

Class org.argouml.uml.ui.UMLComboBox2 extends javax.swing.JComboBox implements Serializable

Serialized Fields

searchString

java.lang.String searchString

lastKeyEventTime

long lastKeyEventTime

Class org.argouml.uml.ui.UMLComboBoxModel2 extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

comboBoxTarget

java.lang.Object comboBoxTarget
The target of the comboboxmodel. This is some UML modelelement


objects

java.util.List<E> objects
The list with objects that should be shown in the combobox. TODO: Using a list here forces a linear search when we're trying to add a new element to the model which can be very slow for large models.


selectedObject

java.lang.Object selectedObject
The selected object.


isClearable

boolean isClearable
Flag to indicate if the user may select the special CLEARED choice ("") as value in the combobox. If true the attribute that is shown by this combobox may be set to null. Makes sure that there is always an entry in the list with objects so the user has the opportunity to select this to clear the attribute.


propertySetName

java.lang.String propertySetName
The name of the property that we will use to listen for change events associated with this model element.


fireListEvents

boolean fireListEvents
Flag to indicate whether list events should be fired.


buildingModel

boolean buildingModel
Flag to indicate whether the model is being build.


processingWillBecomeVisible

boolean processingWillBecomeVisible
Flag needed to prevent infinite recursion during processing of popup visibility notification event.


modelValid

boolean modelValid

Class org.argouml.uml.ui.UMLComboBoxNavigator extends javax.swing.JPanel implements Serializable

Serialized Fields

theComboBox

javax.swing.JComboBox theComboBox

theButton

javax.swing.JButton theButton

Class org.argouml.uml.ui.UMLDeprecatedCheckBox extends UMLTaggedValueCheckBox implements Serializable

Class org.argouml.uml.ui.UMLDerivedCheckBox extends UMLTaggedValueCheckBox implements Serializable

Class org.argouml.uml.ui.UMLEditableComboBox extends UMLComboBox2 implements Serializable

Class org.argouml.uml.ui.UMLExpressionBodyField extends javax.swing.JTextArea implements Serializable

Serialized Fields

model

UMLExpressionModel2 model

notifyModel

boolean notifyModel

Class org.argouml.uml.ui.UMLExpressionLanguageField extends javax.swing.JTextField implements Serializable

Serialized Fields

model

UMLExpressionModel2 model

notifyModel

boolean notifyModel

Class org.argouml.uml.ui.UMLLinkedList extends UMLList2 implements Serializable

Class org.argouml.uml.ui.UMLLinkedListCellRenderer extends UMLListCellRenderer2 implements Serializable

serialVersionUID: -710457475656542074L

Class org.argouml.uml.ui.UMLList2 extends javax.swing.JList implements Serializable

Class org.argouml.uml.ui.UMLListCellRenderer2 extends javax.swing.DefaultListCellRenderer implements Serializable

Serialized Fields

showIcon

boolean showIcon
True if the icon for the modelelement should be shown. The icon is, for instance, a small class symbol for a class.


showPath

boolean showPath
True if the containment path should be shown (to help the user disambiguate elements with the same name);

Class org.argouml.uml.ui.UMLModelElementCommentDocument extends UMLPlainTextDocument implements Serializable

Serialized Fields

useBody

boolean useBody

Class org.argouml.uml.ui.UMLModelElementElementResidenceListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.UMLModelElementListModel2 extends javax.swing.DefaultListModel implements Serializable

Serialized Fields

eventName

java.lang.String eventName

listTarget

java.lang.Object listTarget

fireListEvents

boolean fireListEvents
Flag to indicate wether list events should be fired


buildingModel

boolean buildingModel
Flag to indicate wether the model is being build


metaType

java.lang.Object metaType
The type of model elements this list model is designed to hold.


reverseDropConnection

boolean reverseDropConnection
Indicates that drops onto this list should connect in the opposite way to standard.

Class org.argouml.uml.ui.UMLModelElementOrderedListModel2 extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.UMLModelElementTaggedValueDocument extends UMLPlainTextDocument implements Serializable

Class org.argouml.uml.ui.UMLMultiplicityPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

multiplicityComboBox

javax.swing.JComboBox multiplicityComboBox

checkBox

javax.swing.JCheckBox checkBox

multiplicityComboBoxModel

org.argouml.uml.ui.UMLMultiplicityPanel.MultiplicityComboBoxModel multiplicityComboBoxModel

Class org.argouml.uml.ui.UMLMutableLinkedList extends UMLLinkedList implements Serializable

Serialized Fields

deletePossible

boolean deletePossible

addPossible

boolean addPossible

newPossible

boolean newPossible

popupMenu

javax.swing.JPopupMenu popupMenu

addAction

AbstractActionAddModelElement2 addAction

newAction

AbstractActionNewModelElement newAction

deleteAction

AbstractActionRemoveElement deleteAction

Class org.argouml.uml.ui.UMLPlainTextDocument extends javax.swing.text.PlainDocument implements Serializable

Serialized Fields

firing

boolean firing
True if an event should be fired when the text of the document is changed


editing

boolean editing
Deprecated. 
True if an user edits the document directly (by typing in text)


panelTarget

java.lang.Object panelTarget
The target of the propertypanel that's behind this property.


eventName

java.lang.String eventName
The name of the property set event that will change the property this document shows.

Class org.argouml.uml.ui.UMLRadioButtonPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

panelTarget

java.lang.Object panelTarget
The target object of which some attribute is shown via this panel.


propertySetName

java.lang.String propertySetName
The name of the event that is fired when the target object has changed the attribute that is shown here.


buttonGroup

javax.swing.ButtonGroup buttonGroup
The group of buttons

Class org.argouml.uml.ui.UMLSearchableComboBox extends UMLEditableComboBox implements Serializable

Class org.argouml.uml.ui.UMLSingleRowSelector extends javax.swing.JPanel implements Serializable

Serialized Fields

scroll

javax.swing.JScrollPane scroll
The scrollpane that will contain the list


preferredSize

java.awt.Dimension preferredSize

Class org.argouml.uml.ui.UMLStimulusActionTextField extends javax.swing.JTextField implements Serializable

Serialized Fields

theContainer

UMLUserInterfaceContainer theContainer

theProperty

UMLStimulusActionTextProperty theProperty

Class org.argouml.uml.ui.UMLTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Class org.argouml.uml.ui.UMLTaggedValueCheckBox extends UMLCheckBox2 implements Serializable

Serialized Fields

tagName

java.lang.String tagName

Class org.argouml.uml.ui.UMLTextArea2 extends javax.swing.JTextArea implements Serializable

serialVersionUID: -9172093001792636086L

Class org.argouml.uml.ui.UMLTextField2 extends javax.swing.JTextField implements Serializable

serialVersionUID: -5740838103900828073L

Class org.argouml.uml.ui.UMLTreeCellRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable


Package org.argouml.uml.ui.behavior.activity_graphs

Class org.argouml.uml.ui.behavior.activity_graphs.ActionAddEventAsTrigger extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.behavior.activity_graphs.ActionSetObjectFlowStateClassifier extends UndoableAction implements Serializable

Class org.argouml.uml.ui.behavior.activity_graphs.ActionSetSynch extends UndoableAction implements Serializable

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelActionState extends AbstractPropPanelState implements Serializable

serialVersionUID: 4936258091606712050L

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelActivityGraph extends PropPanelStateMachine implements Serializable

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelActivityGraph.UMLActivityGraphPartiitionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelCallState extends AbstractPropPanelState implements Serializable

serialVersionUID: -8830997687737785261L

Serialized Fields

callActionEntryScroll

javax.swing.JScrollPane callActionEntryScroll

callActionEntryList

javax.swing.JList callActionEntryList

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelClassifierInState extends PropPanelClassifier implements Serializable

serialVersionUID: 609338855898756817L

Serialized Fields

typeComboBox

javax.swing.JComboBox typeComboBox

statesScroll

javax.swing.JScrollPane statesScroll

typeComboBoxModel

org.argouml.uml.ui.behavior.activity_graphs.UMLClassifierInStateTypeComboBoxModel typeComboBoxModel

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelObjectFlowState extends AbstractPropPanelState implements Serializable

Serialized Fields

classifierComboBox

javax.swing.JComboBox classifierComboBox

statesScroll

javax.swing.JScrollPane statesScroll

actionNewCIS

org.argouml.uml.ui.behavior.activity_graphs.ActionNewClassifierInState actionNewCIS

classifierComboBoxModel

UMLObjectFlowStateClassifierComboBoxModel classifierComboBoxModel

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelPartition extends PropPanelModelElement implements Serializable

Serialized Fields

contentsScroll

javax.swing.JScrollPane contentsScroll

activityGraphScroll

javax.swing.JPanel activityGraphScroll

Class org.argouml.uml.ui.behavior.activity_graphs.PropPanelSubactivityState extends PropPanelSubmachineState implements Serializable

Class org.argouml.uml.ui.behavior.activity_graphs.UMLActionSynchCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.behavior.activity_graphs.UMLObjectFlowStateClassifierComboBoxModel extends UMLComboBoxModel2 implements Serializable


Package org.argouml.uml.ui.behavior.collaborations

Class org.argouml.uml.ui.behavior.collaborations.ActionAddClassifierRoleBase extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.ActionAddMessagePredecessor extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.ActionNewActionForMessage extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.ActionRemoveClassifierRoleBase extends AbstractActionRemoveElement implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.ActionSetAssociationRoleBase extends UndoableAction implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.ActionSetClassifierRoleMultiplicity extends ActionSetMultiplicity implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.PropPanelAssociationEndRole extends PropPanelAssociationEnd implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.PropPanelAssociationRole extends PropPanelAssociation implements Serializable

serialVersionUID: 7693759162647306494L

Class org.argouml.uml.ui.behavior.collaborations.PropPanelClassifierRole extends PropPanelClassifier implements Serializable

serialVersionUID: -5407549104529347513L

Serialized Fields

multiplicityComboBox

UMLMultiplicityPanel multiplicityComboBox
The combobox for the multiplicity of this type.

Class org.argouml.uml.ui.behavior.collaborations.PropPanelCollaboration extends PropPanelNamespace implements Serializable

serialVersionUID: 5642815840272293391L

Class org.argouml.uml.ui.behavior.collaborations.PropPanelInteraction extends PropPanelModelElement implements Serializable

serialVersionUID: 8965284617441796326L

Class org.argouml.uml.ui.behavior.collaborations.PropPanelMessage extends PropPanelModelElement implements Serializable

serialVersionUID: -8433911715875762175L

Class org.argouml.uml.ui.behavior.collaborations.UMLAssociationEndRoleBaseListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLAssociationRoleAssociationEndRoleListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLAssociationRoleBaseComboBoxModel extends UMLComboBoxModel2 implements Serializable

Serialized Fields

others

java.util.Collection<E> others

Class org.argouml.uml.ui.behavior.collaborations.UMLAssociationRoleMessageListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLClassifierRoleAvailableContentsListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLClassifierRoleAvailableFeaturesListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLClassifierRoleBaseListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLCollaborationConstrainingElementListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLCollaborationInteractionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLInteractionContextListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLInteractionMessagesListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLMessageActionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLMessageActivatorComboBox extends UMLComboBox2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLMessageActivatorComboBoxModel extends UMLComboBoxModel2 implements Serializable

Serialized Fields

interaction

java.lang.Object interaction

Class org.argouml.uml.ui.behavior.collaborations.UMLMessageInteractionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLMessagePredecessorListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLMessageReceiverListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLMessageSenderListModel extends UMLModelElementListModel2 implements Serializable


Package org.argouml.uml.ui.behavior.common_behavior

Class org.argouml.uml.ui.behavior.common_behavior.ActionAddContextSignal extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionAddCreateActionInstantiation extends AbstractActionAddModelElement2 implements Serializable

serialVersionUID: -7108663482184056359L

Serialized Fields

choiceClass

java.lang.Object choiceClass

Class org.argouml.uml.ui.behavior.common_behavior.ActionAddInstanceClassifier extends AbstractActionAddModelElement2 implements Serializable

Serialized Fields

choiceClass

java.lang.Object choiceClass

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewAction extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewActionSequence extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewArgument extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewCallAction extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewCreateAction extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewDestroyAction extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewException extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewReception extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewReturnAction extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewSendAction extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewSignal extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewTerminateAction extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewUninterpretedAction extends ActionNewAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionRemoveArgument extends AbstractActionRemoveElement implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.ActionSetActionAsynchronous extends UndoableAction implements Serializable

serialVersionUID: 1683440096488846000L

Class org.argouml.uml.ui.behavior.common_behavior.PopupMenuNewAction extends javax.swing.JPopupMenu implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelAction extends PropPanelModelElement implements Serializable

Serialized Fields

argumentsScroll

javax.swing.JScrollPane argumentsScroll
The scroll pane for arguments.

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelActionSequence extends PropPanelModelElement implements Serializable

Serialized Fields

actionsScroll

javax.swing.JScrollPane actionsScroll

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelArgument extends PropPanelModelElement implements Serializable

serialVersionUID: 6737211630130267264L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelCallAction extends PropPanelAction implements Serializable

serialVersionUID: 6998109319912301992L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelComponentInstance extends PropPanelInstance implements Serializable

serialVersionUID: 7178149693694151459L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelCreateAction extends PropPanelAction implements Serializable

serialVersionUID: 6909604490593418840L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelDestroyAction extends PropPanelAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelException extends PropPanelSignal implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelInstance extends PropPanelModelElement implements Serializable

Serialized Fields

stimuliSenderScroll

javax.swing.JPanel stimuliSenderScroll

stimuliReceiverScroll

javax.swing.JPanel stimuliReceiverScroll

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelLink extends PropPanelModelElement implements Serializable

serialVersionUID: 8861148331491989705L

Serialized Fields

associationSelector

javax.swing.JComboBox associationSelector

associationComboBoxModel

org.argouml.uml.ui.behavior.common_behavior.UMLLinkAssociationComboBoxModel associationComboBoxModel

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelLinkEnd extends PropPanelModelElement implements Serializable

serialVersionUID: 666929091194719951L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelNodeInstance extends PropPanelInstance implements Serializable

serialVersionUID: -3391167975804021594L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelObject extends PropPanelInstance implements Serializable

serialVersionUID: 3594423150761388537L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelReception extends PropPanelFeature implements Serializable

serialVersionUID: -8572743081899344540L

Serialized Fields

modifiersPanel

javax.swing.JPanel modifiersPanel

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelReturnAction extends PropPanelAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelSendAction extends PropPanelAction implements Serializable

serialVersionUID: -6002902665554123820L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelSignal extends PropPanelClassifier implements Serializable

serialVersionUID: -4496838172438164508L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelStimulus extends PropPanelModelElement implements Serializable

serialVersionUID: 81659498358156000L

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelTerminateAction extends PropPanelAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.PropPanelUninterpretedAction extends PropPanelAction implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLActionArgumentListModel extends UMLModelElementOrderedListModel2 implements Serializable

serialVersionUID: -3265997785192090331L

Class org.argouml.uml.ui.behavior.common_behavior.UMLActionAsynchronousCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLCreateActionClassifierListModel extends UMLModelElementListModel2 implements Serializable

serialVersionUID: -3653652920890159417L

Class org.argouml.uml.ui.behavior.common_behavior.UMLInstanceClassifierListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLInstanceLinkEndListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLInstanceReceiverStimulusListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLInstanceSenderStimulusListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLLinkConnectionListModel extends UMLModelElementOrderedListModel2 implements Serializable

serialVersionUID: 4459749162218567926L

Class org.argouml.uml.ui.behavior.common_behavior.UMLReceptionSignalComboBox extends UMLComboBox2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLReceptionSignalComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLReceptionSpecificationDocument extends UMLPlainTextDocument implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLSignalContextListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLStimulusReceiverListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.common_behavior.UMLStimulusSenderListModel extends UMLModelElementListModel2 implements Serializable


Package org.argouml.uml.ui.behavior.state_machines

Class org.argouml.uml.ui.behavior.state_machines.AbstractPropPanelState extends PropPanelStateVertex implements Serializable

Serialized Fields

entryScroll

javax.swing.JScrollPane entryScroll

exitScroll

javax.swing.JScrollPane exitScroll

doScroll

javax.swing.JScrollPane doScroll

internalTransitionsScroll

javax.swing.JScrollPane internalTransitionsScroll

deferrableEventsScroll

ScrollList deferrableEventsScroll

Class org.argouml.uml.ui.behavior.state_machines.ActionAddEventAsDeferrableEvent extends AbstractActionAddModelElement2 implements Serializable

serialVersionUID: 1815648968597093974L

Class org.argouml.uml.ui.behavior.state_machines.ActionNewCallEvent extends ActionNewEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewChangeEvent extends ActionNewEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewCompositeState extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewEvent extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewFinalState extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewGuard extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewPseudoState extends AbstractActionNewModelElement implements Serializable

Serialized Fields

kind

java.lang.Object kind

Class org.argouml.uml.ui.behavior.state_machines.ActionNewSignalEvent extends ActionNewEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewSimpleState extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewStubState extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewSubmachineState extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewSynchState extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewTimeEvent extends ActionNewEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionNewTransition extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionSetCompositeStateConcurrent extends UndoableAction implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionSetContextStateMachine extends UndoableAction implements Serializable

serialVersionUID: -8118983979324112900L

Class org.argouml.uml.ui.behavior.state_machines.ActionSetStubStateReferenceState extends UndoableAction implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ActionSetSubmachineStateSubmachine extends UndoableAction implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.ButtonActionNewGuard extends UndoableAction implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.PopupMenuNewEvent extends javax.swing.JPopupMenu implements Serializable

serialVersionUID: -7624618103144695448L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelCallEvent extends PropPanelEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.PropPanelChangeEvent extends PropPanelEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.PropPanelCompositeState extends AbstractPropPanelState implements Serializable

serialVersionUID: 4758716706184949796L

Serialized Fields

subverticesList

javax.swing.JList subverticesList

addConcurrentRegion

javax.swing.Action addConcurrentRegion

Class org.argouml.uml.ui.behavior.state_machines.PropPanelEvent extends PropPanelModelElement implements Serializable

Serialized Fields

paramScroll

javax.swing.JScrollPane paramScroll

paramListModel

UMLEventParameterListModel paramListModel

Class org.argouml.uml.ui.behavior.state_machines.PropPanelFinalState extends AbstractPropPanelState implements Serializable

serialVersionUID: 4111793068615402073L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelGuard extends PropPanelModelElement implements Serializable

serialVersionUID: 3698249606426850936L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelPseudostate extends PropPanelStateVertex implements Serializable

serialVersionUID: 5822284822242536007L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelSignalEvent extends PropPanelEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.PropPanelSimpleState extends AbstractPropPanelState implements Serializable

serialVersionUID: 7072535148338954868L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelStateMachine extends PropPanelModelElement implements Serializable

serialVersionUID: -2157218581140487530L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelStateVertex extends PropPanelModelElement implements Serializable

Serialized Fields

incomingScroll

javax.swing.JScrollPane incomingScroll

outgoingScroll

javax.swing.JScrollPane outgoingScroll

containerScroll

javax.swing.JPanel containerScroll

Class org.argouml.uml.ui.behavior.state_machines.PropPanelStubState extends PropPanelStateVertex implements Serializable

serialVersionUID: 5934039619236682498L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelSubmachineState extends PropPanelCompositeState implements Serializable

serialVersionUID: 2384673708664550264L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelSynchState extends PropPanelStateVertex implements Serializable

serialVersionUID: -6671890304679263593L

Class org.argouml.uml.ui.behavior.state_machines.PropPanelTimeEvent extends PropPanelEvent implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.PropPanelTransition extends PropPanelModelElement implements Serializable

serialVersionUID: 7249233994894343728L

Class org.argouml.uml.ui.behavior.state_machines.UMLCompositeStateConcurrentCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLCompositeStateSubvertexList extends UMLMutableLinkedList implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLCompositeStateSubvertexListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLEventParameterListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLEventTransitionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLGuardTransitionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateDeferrableEventList extends UMLMutableLinkedList implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateDeferrableEventListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateDoActivityList extends UMLMutableLinkedList implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateDoActivityListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateEntryList extends UMLMutableLinkedList implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateEntryListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateExitList extends UMLMutableLinkedList implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateExitListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateInternalTransition extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateMachineContextComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateMachineContextListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateMachineSubmachineStateListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateMachineTopListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateMachineTransitionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateVertexContainerListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateVertexIncomingListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStateVertexOutgoingListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLStubStateComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLSubmachineStateComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLSynchStateBoundDocument extends UMLPlainTextDocument implements Serializable

serialVersionUID: -1391739151659430935L

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionEffectList extends UMLMutableLinkedList implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionEffectListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionGuardListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionSourceListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionStateListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionStatemachineListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionTargetListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionTriggerList extends UMLMutableLinkedList implements Serializable

Class org.argouml.uml.ui.behavior.state_machines.UMLTransitionTriggerListModel extends UMLModelElementListModel2 implements Serializable


Package org.argouml.uml.ui.behavior.use_cases

Class org.argouml.uml.ui.behavior.use_cases.ActionAddExtendExtensionPoint extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionNewActor extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionNewExtendExtensionPoint extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionNewUseCase extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionNewUseCaseExtensionPoint extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.PropPanelActor extends PropPanelClassifier implements Serializable

serialVersionUID: 7368183497864490115L

Class org.argouml.uml.ui.behavior.use_cases.PropPanelExtend extends PropPanelRelationship implements Serializable

serialVersionUID: -3257769932777323293L

Class org.argouml.uml.ui.behavior.use_cases.PropPanelExtensionPoint extends PropPanelModelElement implements Serializable

serialVersionUID: 1835785842490972735L

Class org.argouml.uml.ui.behavior.use_cases.PropPanelInclude extends PropPanelRelationship implements Serializable

serialVersionUID: -8235207258195445477L

Class org.argouml.uml.ui.behavior.use_cases.PropPanelUseCase extends PropPanelClassifier implements Serializable

serialVersionUID: 8352300400553000518L

Class org.argouml.uml.ui.behavior.use_cases.UMLExtendBaseListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLExtendExtensionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLExtendExtensionPointListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLExtensionPointExtendListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLExtensionPointLocationDocument extends UMLPlainTextDocument implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLExtensionPointUseCaseListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLIncludeAdditionListModel extends UMLIncludeListModel implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLIncludeBaseListModel extends UMLIncludeListModel implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLIncludeListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLUseCaseExtendListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLUseCaseExtensionPointListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLUseCaseIncludeListModel extends UMLModelElementListModel2 implements Serializable


Package org.argouml.uml.ui.foundation.core

Class org.argouml.uml.ui.foundation.core.ActionAddAssociationSpecification extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionAddAttribute extends UndoableAction implements Serializable

serialVersionUID: -111785878370086329L

Class org.argouml.uml.ui.foundation.core.ActionAddClientDependencyAction extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionAddDataType extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionAddEnumeration extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionAddEnumerationLiteral extends UndoableAction implements Serializable

serialVersionUID: -1206083856173080229L

Class org.argouml.uml.ui.foundation.core.ActionAddLiteral extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionAddOperation extends UndoableAction implements Serializable

serialVersionUID: -1383845502957256177L

Class org.argouml.uml.ui.foundation.core.ActionAddSupplierDependencyAction extends AbstractActionAddModelElement2 implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionNewClass extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionNewInnerClass extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionNewModelElementConstraint extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionNewParameter extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetAssociationEndAggregation extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetAssociationEndMultiplicity extends ActionSetMultiplicity implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetAssociationEndNavigable extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetAssociationEndOrdering extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetAssociationEndTargetScope extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetAssociationEndType extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetBehavioralFeatureQuery extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetChangeability extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetClassActive extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetElementOwnershipSpecification extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetFeatureOwner extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetFeatureOwnerScope extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetFlowSource extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetGeneralizableElementAbstract extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetGeneralizableElementLeaf extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetGeneralizableElementRoot extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetGeneralizationPowertype extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetModelElementNamespace extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetModelElementStereotype extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetModelElementVisibility extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetOperationConcurrencyKind extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetParameterDirectionKind extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetParameterType extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetStructuralFeatureMultiplicity extends ActionSetMultiplicity implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetStructuralFeatureTargetScope extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionSetStructuralFeatureType extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.core.PropPanelAbstraction extends PropPanelDependency implements Serializable

serialVersionUID: 595724551744206773L

Class org.argouml.uml.ui.foundation.core.PropPanelAssociation extends PropPanelRelationship implements Serializable

serialVersionUID: 4272135235664638209L

Serialized Fields

assocEndScroll

javax.swing.JScrollPane assocEndScroll
The scrollpane with the associationends.


associationRoleScroll

javax.swing.JScrollPane associationRoleScroll
The scrollpane with the associationroles this association plays a role in.


linksScroll

javax.swing.JScrollPane linksScroll
Ths scrollpane with the links that implement this association.


modifiersPanel

javax.swing.JPanel modifiersPanel
Panel for abstract/leaf/root

Class org.argouml.uml.ui.foundation.core.PropPanelAssociationClass extends PropPanelClassifier implements Serializable

serialVersionUID: -7620821534700927917L

Serialized Fields

attributeScroll

javax.swing.JScrollPane attributeScroll

operationScroll

javax.swing.JScrollPane operationScroll

assocEndScroll

javax.swing.JScrollPane assocEndScroll

Class org.argouml.uml.ui.foundation.core.PropPanelAssociationEnd extends PropPanelModelElement implements Serializable

serialVersionUID: 9119453587506578751L

Serialized Fields

typeCombobox

javax.swing.JComboBox typeCombobox
The combobox that shows the type of this association end.


associationScroll

javax.swing.JPanel associationScroll
The scrollpane showing the association that owns this associationend


multiplicityComboBox

UMLMultiplicityPanel multiplicityComboBox
The combobox for the multiplicity of this type.


navigabilityCheckBox

javax.swing.JCheckBox navigabilityCheckBox
The checkbox that shows if this association end is navigable.


orderingCheckBox

javax.swing.JCheckBox orderingCheckBox
The checkbox that shows the ordering of the associationend. It's selected if it's an ordered associationend. Unselected if it's unordered. Sorted is not supported atm.


targetScopeCheckBox

javax.swing.JCheckBox targetScopeCheckBox
The checkbox that shows the scope of the associationend. Selected means that the scope is the classifier (static). Unselected means that the scope is the instance (the default).


aggregationRadioButtonpanel

javax.swing.JPanel aggregationRadioButtonpanel
The panel with the radiobuttons the user can select to select the aggregation of this associationend.


changeabilityRadioButtonpanel

javax.swing.JPanel changeabilityRadioButtonpanel
The panel with the radiobuttons the user can select to select the changeability of this associationend.


visibilityRadioButtonPanel

javax.swing.JPanel visibilityRadioButtonPanel
The panel with the radiobuttons to set the visibility (public, protected, private) of this associationend.


specificationScroll

javax.swing.JScrollPane specificationScroll
The list of classifiers that specify the operations that must be implemented by the classifier type. These operations can be used by this association.


qualifiersScroll

javax.swing.JScrollPane qualifiersScroll
The list of qualifiers that owns this association end


associationLabel

java.lang.String associationLabel

Class org.argouml.uml.ui.foundation.core.PropPanelAttribute extends PropPanelStructuralFeature implements Serializable

serialVersionUID: -5596689167193050170L

Class org.argouml.uml.ui.foundation.core.PropPanelClass extends PropPanelClassifier implements Serializable

serialVersionUID: -8288739384387629966L

Class org.argouml.uml.ui.foundation.core.PropPanelClassifier extends PropPanelNamespace implements Serializable

Serialized Fields

modifiersPanel

javax.swing.JPanel modifiersPanel

actionNewReception

ActionNewReception actionNewReception
The action used to add a reception to the classifier.


generalizationScroll

javax.swing.JScrollPane generalizationScroll

specializationScroll

javax.swing.JScrollPane specializationScroll

featureScroll

javax.swing.JScrollPane featureScroll

createActionScroll

javax.swing.JScrollPane createActionScroll

powerTypeRangeScroll

javax.swing.JScrollPane powerTypeRangeScroll

associationEndScroll

javax.swing.JScrollPane associationEndScroll

attributeScroll

javax.swing.JScrollPane attributeScroll

operationScroll

javax.swing.JScrollPane operationScroll

Class org.argouml.uml.ui.foundation.core.PropPanelComment extends PropPanelModelElement implements Serializable

serialVersionUID: -8781239511498017147L

Class org.argouml.uml.ui.foundation.core.PropPanelComponent extends PropPanelClassifier implements Serializable

serialVersionUID: 1551050121647608478L

Class org.argouml.uml.ui.foundation.core.PropPanelConstraint extends PropPanelModelElement implements Serializable

serialVersionUID: -7621484706045787046L

Class org.argouml.uml.ui.foundation.core.PropPanelDataType extends PropPanelClassifier implements Serializable

serialVersionUID: -8752986130386737802L

Serialized Fields

operationScroll

javax.swing.JScrollPane operationScroll

Class org.argouml.uml.ui.foundation.core.PropPanelDependency extends PropPanelRelationship implements Serializable

serialVersionUID: 3665986064546532722L

Serialized Fields

supplierScroll

javax.swing.JScrollPane supplierScroll
The scrollpane with the modelelement that is the supplier of this dependency


clientScroll

javax.swing.JScrollPane clientScroll
The scrollpane with the modelelement that is the client of this dependency

Class org.argouml.uml.ui.foundation.core.PropPanelDirectedRelationship extends PropPanelRelationship implements Serializable

Serialized Fields

sourceList

javax.swing.JComponent sourceList

targetList

javax.swing.JComponent targetList

Class org.argouml.uml.ui.foundation.core.PropPanelElementResidence extends PropPanelModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.PropPanelEnumeration extends PropPanelDataType implements Serializable

Serialized Fields

literalsScroll

javax.swing.JScrollPane literalsScroll

Class org.argouml.uml.ui.foundation.core.PropPanelEnumerationLiteral extends PropPanelModelElement implements Serializable

serialVersionUID: 1486642919681744144L

Class org.argouml.uml.ui.foundation.core.PropPanelFeature extends PropPanelModelElement implements Serializable

Serialized Fields

ownerScopeCheckbox

UMLFeatureOwnerScopeCheckBox ownerScopeCheckbox

ownerScroll

javax.swing.JPanel ownerScroll

visibilityPanel

javax.swing.JPanel visibilityPanel

Class org.argouml.uml.ui.foundation.core.PropPanelFlow extends PropPanelRelationship implements Serializable

serialVersionUID: 2967789232647658450L

Class org.argouml.uml.ui.foundation.core.PropPanelGeneralization extends PropPanelRelationship implements Serializable

serialVersionUID: 2577361208291292256L

Serialized Fields

discriminatorTextField

javax.swing.JTextField discriminatorTextField

Class org.argouml.uml.ui.foundation.core.PropPanelInterface extends PropPanelClassifier implements Serializable

serialVersionUID: 849399652073446108L

Class org.argouml.uml.ui.foundation.core.PropPanelMethod extends PropPanelFeature implements Serializable

Serialized Fields

specificationComboBox

UMLComboBox2 specificationComboBox

Class org.argouml.uml.ui.foundation.core.PropPanelModelElement extends PropPanel implements Serializable

Serialized Fields

namespaceSelector

javax.swing.JComboBox namespaceSelector
Deprecated. 

supplierDependencyScroll

javax.swing.JScrollPane supplierDependencyScroll
Deprecated. 

clientDependencyScroll

javax.swing.JScrollPane clientDependencyScroll
Deprecated. 

targetFlowScroll

javax.swing.JScrollPane targetFlowScroll
Deprecated. 

sourceFlowScroll

javax.swing.JScrollPane sourceFlowScroll
Deprecated. 

constraintScroll

javax.swing.JScrollPane constraintScroll
Deprecated. 

visibilityPanel

javax.swing.JPanel visibilityPanel
Deprecated. 

elementResidenceScroll

javax.swing.JScrollPane elementResidenceScroll
Deprecated. 

nameTextField

javax.swing.JTextField nameTextField
Deprecated. 

namespaceComboBoxModel

UMLModelElementNamespaceComboBoxModel namespaceComboBoxModel
Deprecated. 

Class org.argouml.uml.ui.foundation.core.PropPanelNamespace extends PropPanelModelElement implements Serializable

Serialized Fields

ownedElementsScroll

javax.swing.JScrollPane ownedElementsScroll

Class org.argouml.uml.ui.foundation.core.PropPanelNode extends PropPanelClassifier implements Serializable

serialVersionUID: 2681345252220104772L

Class org.argouml.uml.ui.foundation.core.PropPanelOperation extends PropPanelFeature implements Serializable

serialVersionUID: -8231585002039922761L

Class org.argouml.uml.ui.foundation.core.PropPanelParameter extends PropPanelModelElement implements Serializable

serialVersionUID: -1207518946939283220L

Serialized Fields

behFeatureScroll

javax.swing.JPanel behFeatureScroll

Class org.argouml.uml.ui.foundation.core.PropPanelPermission extends PropPanelDependency implements Serializable

serialVersionUID: 5724713380091275451L

Class org.argouml.uml.ui.foundation.core.PropPanelRelationship extends PropPanelModelElement implements Serializable

serialVersionUID: -1610200799419501588L

Class org.argouml.uml.ui.foundation.core.PropPanelStructuralFeature extends PropPanelFeature implements Serializable

Serialized Fields

multiplicityComboBox

javax.swing.JPanel multiplicityComboBox

typeComboBox

UMLComboBox2 typeComboBox

changeabilityRadioButtonPanel

UMLRadioButtonPanel changeabilityRadioButtonPanel

targetScopeCheckBox

UMLCheckBox2 targetScopeCheckBox

Class org.argouml.uml.ui.foundation.core.PropPanelTemplateParameter extends PropPanelModelElement implements Serializable

serialVersionUID: 8466952187322427678L

Class org.argouml.uml.ui.foundation.core.PropPanelTemplateParameter.UMLTemplateParameterDocument extends UMLPlainTextDocument implements Serializable

serialVersionUID: -2597673735297949111L

Class org.argouml.uml.ui.foundation.core.PropPanelUsage extends PropPanelDependency implements Serializable

serialVersionUID: 5927912703376526760L

Class org.argouml.uml.ui.foundation.core.UMLAssociationAssociationRoleListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationConnectionListModel extends UMLModelElementOrderedListModel2 implements Serializable

Serialized Fields

others

java.util.Collection<E> others

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndAggregationRadioButtonPanel extends UMLRadioButtonPanel implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndAssociationListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndChangeabilityRadioButtonPanel extends UMLRadioButtonPanel implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndNavigableCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndOrderingCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndQualifiersListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndSpecificationListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndTargetScopeCheckbox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationEndTypeComboBoxModel extends UMLStructuralFeatureTypeComboBoxModel implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationLinkListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAttributeInitialValueListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLBehavioralFeatureQueryCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassActiveCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassAttributeListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierAssociationEndListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierCreateActionListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierFeatureListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierParameterListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierPowertypeRangeListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassOperationListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLCommentAnnotatedElementListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLComponentResidentListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLConstraintConstrainedElementListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLContainerResidentListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLDependencyClientListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLDependencySupplierListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLDiagramNameDocument extends UMLPlainTextDocument implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLDirectedRelationshipSourceListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLDirectedRelationshipTargetListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLDiscriminatorNameDocument extends UMLPlainTextDocument implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLEnumerationLiteralsListModel extends UMLModelElementOrderedListModel2 implements Serializable

serialVersionUID: 4111214628991094451L

Class org.argouml.uml.ui.foundation.core.UMLFeatureOwnerListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLFeatureOwnerScopeCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizableElementAbstractCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizableElementGeneralizationListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizableElementLeafCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizableElementRootCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizableElementSpecializationListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizationChildListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizationParentListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLGeneralizationPowertypeComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementClientDependencyListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementConstraintListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementElementResidenceListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementNameDocument extends UMLPlainTextDocument implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementNamespaceComboBoxModel extends UMLComboBoxModel2 implements Serializable

serialVersionUID: -775116993155949065L

Class org.argouml.uml.ui.foundation.core.UMLModelElementNamespaceListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementSourceFlowListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementStereotypeListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementSupplierDependencyListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementTargetFlowListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLModelElementVisibilityRadioButtonPanel extends UMLRadioButtonPanel implements Serializable

serialVersionUID: -1705561978481456281L

Class org.argouml.uml.ui.foundation.core.UMLNamespaceOwnedElementListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLOperationConcurrencyRadioButtonPanel extends UMLRadioButtonPanel implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLOperationMethodsListModel extends UMLModelElementListModel2 implements Serializable

serialVersionUID: -6905298765859760688L

Class org.argouml.uml.ui.foundation.core.UMLOperationRaisedExceptionsListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLOperationRaisedSignalsListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLOperationSpecificationDocument extends UMLPlainTextDocument implements Serializable

serialVersionUID: -152721992761681537L

Class org.argouml.uml.ui.foundation.core.UMLParameterBehavioralFeatListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLParameterDirectionKindRadioButtonPanel extends UMLRadioButtonPanel implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLParameterTypeComboBoxModel extends UMLStructuralFeatureTypeComboBoxModel implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLStructuralFeatureChangeabilityRadioButtonPanel extends UMLRadioButtonPanel implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLStructuralFeatureTargetScopeCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLStructuralFeatureTypeComboBoxModel extends UMLComboBoxModel2 implements Serializable


Package org.argouml.uml.ui.foundation.extension_mechanisms

Class org.argouml.uml.ui.foundation.extension_mechanisms.ActionNewStereotype extends AbstractActionNewModelElement implements Serializable

Class org.argouml.uml.ui.foundation.extension_mechanisms.ActionNewTagDefinition extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.extension_mechanisms.ActionSetMetaClass extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.extension_mechanisms.ActionSetTagDefinitionMultiplicity extends ActionSetMultiplicity implements Serializable

Class org.argouml.uml.ui.foundation.extension_mechanisms.ActionSetTagDefinitionOwner extends UndoableAction implements Serializable

serialVersionUID: -5230402929326015086L

Class org.argouml.uml.ui.foundation.extension_mechanisms.ActionSetTagDefinitionType extends UndoableAction implements Serializable

Class org.argouml.uml.ui.foundation.extension_mechanisms.PropPanelStereotype extends PropPanelModelElement implements Serializable

serialVersionUID: 8038077991746618130L

Serialized Fields

metaClasses

java.util.List<E> metaClasses

generalizationScroll

javax.swing.JScrollPane generalizationScroll

specializationScroll

javax.swing.JScrollPane specializationScroll

tagDefinitionScroll

javax.swing.JScrollPane tagDefinitionScroll

extendedElementsScroll

javax.swing.JScrollPane extendedElementsScroll

Class org.argouml.uml.ui.foundation.extension_mechanisms.PropPanelTagDefinition extends PropPanelModelElement implements Serializable

serialVersionUID: 3563940705352568635L

Serialized Fields

ownerSelector

javax.swing.JComponent ownerSelector

tdNamespaceSelector

javax.swing.JComponent tdNamespaceSelector

typeComboBox

UMLComboBox2 typeComboBox

typedValuesScroll

javax.swing.JScrollPane typedValuesScroll

tdNamespaceComboBoxModel

UMLComboBoxModel2 tdNamespaceComboBoxModel

multiplicityComboBox

javax.swing.JPanel multiplicityComboBox
The combobox for the multiplicity of this type.

Class org.argouml.uml.ui.foundation.extension_mechanisms.PropPanelTaggedValue extends PropPanelModelElement implements Serializable

Serialized Fields

modelElementSelector

javax.swing.JComponent modelElementSelector

typeSelector

javax.swing.JComponent typeSelector

referenceValuesScroll

javax.swing.JScrollPane referenceValuesScroll

dataValuesScroll

javax.swing.JScrollPane dataValuesScroll

Class org.argouml.uml.ui.foundation.extension_mechanisms.UMLMetaClassComboBoxModel extends UMLComboBoxModel2 implements Serializable

Serialized Fields

metaClasses

java.util.List<E> metaClasses

Class org.argouml.uml.ui.foundation.extension_mechanisms.UMLTagDefinitionComboBoxModel extends UMLComboBoxModel2 implements Serializable

serialVersionUID: -4194727034416788372L

Class org.argouml.uml.ui.foundation.extension_mechanisms.UMLTagDefinitionOwnerComboBoxModel extends UMLComboBoxModel2 implements Serializable


Package org.argouml.uml.ui.model_management

Class org.argouml.uml.ui.model_management.PropPanelElementImport extends PropPanelModelElement implements Serializable

Serialized Fields

modifiersPanel

javax.swing.JPanel modifiersPanel

aliasTextField

javax.swing.JTextField aliasTextField

Class org.argouml.uml.ui.model_management.PropPanelModel extends PropPanelPackage implements Serializable

Class org.argouml.uml.ui.model_management.PropPanelPackage extends PropPanelNamespace implements Serializable

serialVersionUID: -699491324617952412L

Serialized Fields

modifiersPanel

javax.swing.JPanel modifiersPanel

generalizationScroll

javax.swing.JScrollPane generalizationScroll

specializationScroll

javax.swing.JScrollPane specializationScroll

Class org.argouml.uml.ui.model_management.PropPanelSubsystem extends PropPanelPackage implements Serializable

serialVersionUID: -8616239241648089917L

Serialized Fields

featureScroll

javax.swing.JScrollPane featureScroll

Package org.argouml.uml.util

Class org.argouml.uml.util.SortedListModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

delegate

java.util.Set<E> delegate



ArgoUML © 1996-2006ArgoUML HomepageArgoUML Developers' pageArgoUML Cookbook