Serialized Form


Package org.argouml.application.events

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

Serialized Fields

eventType

int eventType

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

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


Package org.argouml.application.helpers

Class org.argouml.application.helpers.DiagramHelper extends ArgoDiagram implements Serializable

Serialized Fields

bundle

String bundle
String naming the resource bundle to use for localization.

Class org.argouml.application.helpers.SettingsTabHelper extends JPanel implements Serializable


Package org.argouml.application.security

Class org.argouml.application.security.ExitSecurityException extends SecurityException implements Serializable

Serialized Fields

hidden

boolean hidden


Package org.argouml.cognitive

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

Serialized Fields

decisions

Vector decisions

Class org.argouml.cognitive.Design extends DesignMaterial implements Serializable

Serialized Fields

subdesigns

Vector subdesigns
The contained DesignMaterial's (including other Design's).

Class org.argouml.cognitive.Designer extends Object implements Serializable

Serialized Fields

toDoList

ToDoList toDoList
ToDoList items that are on the designers ToDoList because of this material.


prefs

Properties prefs
Preferences -- very ill defined


emailAddr

String emailAddr
The email address where other designers can send this designer email. This is not used yet.


designerName

String designerName
The designerName is the name of the current user, as he can enter in the menuitem Edit->Settings...->User->Full Name.

The designerName gets updated when the user enters a new name.


decisions

DecisionModel decisions
The decisions currently being considered by the designer.

Decisions are currently modeled as simple descriptive strings.

Each decision also has a priority number which is ill defined, but positive Ints mean that the designer is considering it. This explicit representation of what decisions the designer is interested in at a given moment allows the Agency to select relevant critics for execution.


goals

GoalModel goals
The goals of the designer are likewise used by the Agency to determine what critics are relevant.


agency

Agency agency
Each designer has their own Agency instance that is responsible for selecting and executing critics that are relevant to this designer on an on going basis.


clarifier

Icon clarifier

critiquerThread

Thread critiquerThread

critiquingInterval

int critiquingInterval

critiqueCPUPercent

int critiqueCPUPercent

autoCritique

boolean autoCritique

hotQueue

Vector hotQueue
dm's that should be critiqued ASAP.


hotReasonQueue

Vector hotReasonQueue

addQueue

Vector addQueue

addReasonQueue

Vector addReasonQueue

removeQueue

Vector removeQueue

warmQueue

Vector warmQueue
dm's that should be critiqued relatively soon.


childGenerator

org.tigris.gef.util.ChildGenerator childGenerator

critiqueDuration

long critiqueDuration

critiqueLock

int critiqueLock

lastCritique

long lastCritique

Class org.argouml.cognitive.DesignMaterial extends Observable implements Serializable

Serialized Fields

persistObservers

Vector persistObservers
Observers of this object that should be saved and loaded with this object.


pendingItems

ToDoList pendingItems
ToDoList items that are on the designers ToDoList because of this material.


parents

Vector parents
Other DesignMaterial's that contain this one.


props

Hashtable props
"Soft" Properties that this DesignMaterial may have, but we do not want to allocate an instance variable to them.


highlight

boolean highlight

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

Serialized Fields

goals

Vector goals

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

Serialized Fields

thePoster

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


theHeadline

String theHeadline
One line description of issue.


thePriority

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


theDescription

String theDescription
One paragraph description of the issue.


theMoreInfoURL

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


theOffenders

org.tigris.gef.util.VectorSet theOffenders
Which part of the design this issue affects. This is set by the constructor and cannot change.


theClarifier

Icon theClarifier

theWizard

Wizard theWizard

cachedExpandedHeadline

String cachedExpandedHeadline

cachedExpandedDescription

String cachedExpandedDescription

Class org.argouml.cognitive.ToDoList extends Observable implements Serializable

Serialized Fields

items

Vector items
Pending ToDoItems for the designer to consider.


allOffenders

org.tigris.gef.util.VectorSet allOffenders
These are computed when needed.


allPosters

org.tigris.gef.util.VectorSet allPosters
These are computed when needed.


resolvedItems

Vector resolvedItems
ToDoItems that the designer has explicitly indicated that (s)he considers resolved.

TODO: generalize into a design rationale logging facility.


validityChecker

Thread validityChecker
A Thread that keeps checking if the items on the list are still valid.


designer

Designer designer
The designer, used in determining if a ToDoItem is still valid.


listenerList

EventListenerList listenerList

isPaused

boolean isPaused
state variable for whether the validity checking thread is paused (waiting).

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


Package org.argouml.cognitive.checklist

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

Serialized Fields

category

String category

description

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


moreInfoURL

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


pred

org.tigris.gef.util.Predicate pred
The predicate is the condition under which the checkitem should be listed.

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

Serialized Fields

items

Vector items
Pending CheckItems for the designer to consider.


nextCategory

String nextCategory

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

Serialized Fields

items

Vector items
CheckItems that the designer has marked off as already considered.

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


Package org.argouml.cognitive.checklist.ui

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

Serialized Fields

target

Object target

tableModel

TableModelChecklist tableModel

shouldBeEnabled

boolean shouldBeEnabled

table

JTable table


Package org.argouml.cognitive.critics

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

Serialized Fields

critics

Vector critics
The sub-critics that make up this CompoundCritic.

Class org.argouml.cognitive.critics.ControlMech extends Object implements Serializable

Class org.argouml.cognitive.critics.Critic extends Object implements Serializable

Serialized Fields

emailAddr

String emailAddr
The email address of the author/maintainer of this critic.


priority

int priority
The priority of the ToDoItem produced.


headline

String headline
The headline of the ToDoItem produced.


description

String description
The description of the ToDoItem produced.


moreInfoURL

String moreInfoURL
The moreInfoURL of the ToDoItem produced.


args

Hashtable args
Arguments used to configure the critic. TODO: Could this be removed from the main critics class?


clarifier

Icon clarifier

decisionCategory

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

Vector supportedDecisions

supportedGoals

Vector supportedGoals

criticType

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

Hashtable controlRecs
Control records used in determining if this Critic should be active.


knowledgeTypes

org.tigris.gef.util.VectorSet knowledgeTypes

triggerMask

long triggerMask

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

Serialized Fields

initialIntervalMS

long initialIntervalMS
The initial sleeping time.

See Also:
Constant Field Values

snoozeUntil

Date snoozeUntil
Critic should sleep until this time.


snoozeAgain

Date snoozeAgain
Ifthe 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

Date now

Class org.argouml.cognitive.critics.StandardCM extends AndCM implements Serializable


Package org.argouml.cognitive.critics.ui

Class org.argouml.cognitive.critics.ui.CriticBrowserDialog extends ArgoDialog implements Serializable

Serialized Fields

criticsLabel

JLabel criticsLabel

clsNameLabel

JLabel clsNameLabel

headlineLabel

JLabel headlineLabel

priorityLabel

JLabel priorityLabel

moreInfoLabel

JLabel moreInfoLabel

descLabel

JLabel descLabel

clarifierLabel

JLabel clarifierLabel

tableModel

TableModelCritics tableModel

table

JTable table

className

JTextField className

headline

JTextField headline

priority

JComboBox priority

moreInfo

JTextField moreInfo

desc

JTextArea desc

useClar

JComboBox useClar

wakeButton

JButton wakeButton

configButton

JButton configButton

networkButton

JButton networkButton

goButton

JButton goButton

target

Critic target

critics

List critics


Package org.argouml.cognitive.ui

Class org.argouml.cognitive.ui.AddToDoItemDialog extends ArgoDialog implements Serializable

Serialized Fields

headLineTextField

JTextField headLineTextField

priorityComboBox

JComboBox priorityComboBox

moreinfoTextField

JTextField moreinfoTextField

offenderList

JList offenderList

descriptionTextArea

JTextArea descriptionTextArea

Class org.argouml.cognitive.ui.DesignIssuesDialog extends ArgoDialog implements Serializable

Serialized Fields

mainPanel

JPanel mainPanel

slidersToDecisions

Hashtable slidersToDecisions

slidersToDigits

Hashtable slidersToDigits

Class org.argouml.cognitive.ui.DismissToDoItemDialog extends ArgoDialog implements Serializable

Serialized Fields

badGoalButton

JRadioButton badGoalButton

badDecButton

JRadioButton badDecButton

explainButton

JRadioButton explainButton

actionGroup

ButtonGroup actionGroup

explanation

JTextArea explanation

target

ToDoItem target

Class org.argouml.cognitive.ui.GoalsDialog extends ArgoDialog implements Serializable

Serialized Fields

width

int width
See Also:
Constant Field Values

height

int height
See Also:
Constant Field Values

mainPanel

JPanel mainPanel

slidersToDecisions

Hashtable slidersToDecisions

slidersToDigits

Hashtable slidersToDigits

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

Serialized Fields

description

WizDescription description

lastPanel

JPanel lastPanel

splitPane

org.tigris.swidgets.BorderSplitPane splitPane

target

Object target

Class org.argouml.cognitive.ui.ToDoByDecision extends ToDoPerspective implements Serializable

Class org.argouml.cognitive.ui.ToDoByGoal extends ToDoPerspective implements Serializable

Class org.argouml.cognitive.ui.ToDoByOffender extends ToDoPerspective implements Serializable

Class org.argouml.cognitive.ui.ToDoByPoster extends ToDoPerspective implements Serializable

Class org.argouml.cognitive.ui.ToDoByPriority extends ToDoPerspective implements Serializable

Class org.argouml.cognitive.ui.ToDoByType extends ToDoPerspective implements Serializable

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

Serialized Fields

tree

JTree tree

toolbar

org.tigris.gef.ui.ToolBar toolbar

combo

JComboBox combo

perspectives

Vector perspectives
vector of TreeModels


curPerspective

ToDoPerspective curPerspective

root

ToDoList root

flatButton

JToggleButton flatButton

countLabel

JLabel countLabel

lastSel

Object lastSel

oldSize

int oldSize

dir

char dir

pb

ProjectBrowser pb
shouldn't need this

Class org.argouml.cognitive.ui.ToDoPerspective extends TreeModelComposite implements Serializable

Serialized Fields

flat

boolean flat
todoList specific


flatChildren

Vector flatChildren
todoList specific

Class org.argouml.cognitive.ui.ToDoTreeRenderer extends DefaultTreeCellRenderer implements Serializable

Serialized Fields

postIt0

ImageIcon postIt0

postIt25

ImageIcon postIt25

postIt50

ImageIcon postIt50

postIt75

ImageIcon postIt75

postIt99

ImageIcon postIt99

postIt100

ImageIcon postIt100

postItD0

ImageIcon postItD0

postItD25

ImageIcon postItD25

postItD50

ImageIcon postItD50

postItD75

ImageIcon postItD75

postItD99

ImageIcon postItD99

postItD100

ImageIcon postItD100

treeCellRenderer

UMLTreeCellRenderer treeCellRenderer

Class org.argouml.cognitive.ui.Wizard extends Object implements Serializable

Serialized Fields

panels

Vector 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

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

Serialized Fields

description

JTextArea description

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

Serialized Fields

mainPanel

JPanel mainPanel

backButton

JButton backButton

nextButton

JButton nextButton

finishButton

JButton finishButton

helpButton

JButton helpButton

buttonPanel

JPanel buttonPanel

target

Object target
The current target

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

Serialized Fields

instructions

JTextArea instructions

group

ButtonGroup group

choices

Vector choices

selectedIndex

int selectedIndex

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

Serialized Fields

instructions

JTextArea instructions

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

Serialized Fields

instructions

JTextArea instructions

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

Serialized Fields

instructions

JTextArea instructions

fields

Vector fields

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

Serialized Fields

instructions

JTextArea instructions

label

JLabel label

field

JTextField field


Package org.argouml.kernel

Class org.argouml.kernel.Project extends Object implements Serializable

serialVersionUID: 1399111233978692444l

Serialized Fields

url

URL url
TODO: should just be the directory to write.


authorname

String authorname

description

String description

version

String version

searchpath

Vector searchpath

members

MemberList members

historyFile

String historyFile

persistenceVersion

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


models

Vector models
Instances of the uml model.


diagrams

Vector diagrams
Instances of the uml diagrams.


defaultModel

Object defaultModel

currentNamespace

Object currentNamespace

uuidRefs

HashMap uuidRefs

cgPrefs

GenerationPreferences cgPrefs

treeRoot

Object treeRoot
The root of the modeltree the user is working on. (The untitledModel in the navpane).


activeDiagram

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


defaultModelCache

HashMap defaultModelCache
Cache for the default model.


trashcan

Collection trashcan


Package org.argouml.language.java.cognitive.critics

Class org.argouml.language.java.cognitive.critics.CrMultipleInheritance extends CrUML implements Serializable

Class org.argouml.language.java.cognitive.critics.CrMultipleRealization extends CrUML implements Serializable


Package org.argouml.language.ui

Class org.argouml.language.ui.ActionNotation extends UMLAction implements Serializable

Serialized Fields

menu

JMenu menu
The popup menu with all notations. It gets filled the first time this action is performed (see ActionNotation.actionPerformed(ActionEvent ae)).

Class org.argouml.language.ui.NotationComboBox extends JComboBox implements Serializable

Class org.argouml.language.ui.SettingsTabNotation extends SettingsTabHelper implements Serializable

Serialized Fields

allowNotations

JCheckBox allowNotations

useGuillemots

JCheckBox useGuillemots

showVisibility

JCheckBox showVisibility

showMultiplicity

JCheckBox showMultiplicity

showInitialValue

JCheckBox showInitialValue

showProperties

JCheckBox showProperties

showStereotypes

JCheckBox showStereotypes

defaultShadowWidth

ShadowComboBox defaultShadowWidth


Package org.argouml.model.uml

Class org.argouml.model.uml.ExplorerNSUMLEventAdaptor extends PropertyChangeSupport implements Serializable


Package org.argouml.moduleloader

Class org.argouml.moduleloader.SettingsTabModules extends SettingsTabHelper implements Serializable

Serialized Fields

table

JTable table

notYetLoadedPanel

JPanel notYetLoadedPanel

columnNames

String[] columnNames

elements

Object[][] elements


Package org.argouml.pattern.cognitive.critics

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

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 PersistenceException implements Serializable

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

Serialized Fields

cause

Throwable cause

Class org.argouml.persistence.ProgressEvent extends EventObject implements Serializable

Serialized Fields

length

long length

position

long position

description

String description

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

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


Package org.argouml.swingext

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

Serialized Fields

w

int w

h

int h


Package org.argouml.ui

Class org.argouml.ui.AboutBox extends JDialog implements Serializable

Serialized Fields

tabs

JTabbedPane tabs

splashPanel

SplashPanel splashPanel
Shared splash panel

Class org.argouml.ui.ActionAutoResize extends UMLAction implements Serializable

Class org.argouml.ui.ActionExportXMI extends UMLAction implements Serializable

Class org.argouml.ui.ActionGoToCritique extends UMLAction implements Serializable

Serialized Fields

item

ToDoItem item

Class org.argouml.ui.ActionGoToDetails extends UMLAction implements Serializable

Serialized Fields

tabName

String tabName

Class org.argouml.ui.ActionGoToEdit extends UMLAction implements Serializable

Serialized Fields

tabName

String tabName

Class org.argouml.ui.ActionSaveConfiguration extends UMLAction implements Serializable

Class org.argouml.ui.ActionSettings extends UMLAction implements Serializable

Serialized Fields

applyButton

JButton applyButton

tabs

JTabbedPane tabs

dialog

ArgoDialog dialog

Class org.argouml.ui.ArgoDiagram extends org.tigris.gef.base.Diagram implements Serializable

serialVersionUID: -401219134410459387l

Serialized Fields

id

ItemUID id

Class org.argouml.ui.ArgoDialog extends org.tigris.swidgets.Dialog implements Serializable

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

Class org.argouml.ui.CmdCreateNode extends org.tigris.gef.base.CmdCreateNode implements Serializable

Class org.argouml.ui.CmdSetMode extends org.tigris.gef.base.CmdSetMode implements Serializable

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

Serialized Fields

selectedTodoItem

Object selectedTodoItem
The currently selected todo item.


topLevelTabbedPane

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


currentTarget

Object currentTarget
The current target.


tabPanelList

Vector tabPanelList
a list of all the tabs, which are JPanels, in the JTabbedPane tabs.


lastNonNullTab

int lastNonNullTab
index of the selected tab in the JTabbedPane.


listenerList

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


upArrowIcon

Icon upArrowIcon
Graphic that goes on the tab label.


leftArrowIcon

Icon leftArrowIcon
Graphic that goes on the tab label.

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

Serialized Fields

expandedPathsInModel

Hashtable expandedPathsInModel
A Map helping the tree maintain a consistent expanded paths state.
 keys = the current TreeModel of this Tree
 values = Vector of currently expanded paths.


reexpanding

boolean reexpanding

Class org.argouml.ui.EmailExpertDialog extends ArgoDialog implements Serializable

Serialized Fields

emailTo

JTextField emailTo
This field sets the email of the recipient. As yet, the user can not access a list of contributors to a particular argo project.


emailCc

JTextField emailCc

emailSubject

JTextField emailSubject
The subject line should be automatically generated based on the class or the diagram.


emailBody

JTextArea emailBody

target

ToDoItem target
The target todo item.

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

Serialized Fields

closeButton

JButton closeButton

northLabel

JLabel northLabel

Class org.argouml.ui.FindDialog extends ArgoDialog implements Serializable

Serialized Fields

search

JButton search

clearTabs

JButton clearTabs

tabs

JTabbedPane tabs

nameLocTab

JPanel nameLocTab

modifiedTab

JPanel modifiedTab

tagValsTab

JPanel tagValsTab

constraintsTab

JPanel constraintsTab

elementName

JComboBox elementName

diagramName

JComboBox diagramName

location

JComboBox location

type

JComboBox type

typeDetails

JPanel typeDetails

results

JTabbedPane results

help

JPanel help

resultTabs

Vector resultTabs

Class org.argouml.ui.GotoDialog extends ArgoDialog implements Serializable

Serialized Fields

allDiagrams

TabResults allDiagrams

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

Serialized Fields

target

Object target

tabs

JTabbedPane tabs

ed

org.tigris.gef.base.Editor ed

tabPanels

Vector tabPanels

lastTab

Component lastTab

Class org.argouml.ui.NavigatorPane extends JPanel implements Serializable

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

Serialized Fields

appName

String appName

editorPane

MultiEditorPane editorPane

northEastPane

DetailsPane northEastPane

northPane

DetailsPane northPane

northWestPane

DetailsPane northWestPane

westPane

JPanel westPane

eastPane

DetailsPane eastPane

southEastPane

DetailsPane southEastPane

southWestPane

JPanel southWestPane

southPane

DetailsPane southPane

detailsPanesByCompassPoint

Map detailsPanesByCompassPoint

menuBar

GenericArgoMenuBar menuBar

statusBar

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


defaultFont

Font defaultFont
this needs work so that users can set the font size through a gui preference window


workAreaPane

org.tigris.swidgets.BorderSplitPane workAreaPane

splashScreen

SplashScreen splashScreen
The splash screen shown at startup


explorerPane

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


todoPane

ToDoPane todoPane
The todopane (lower left corner of screen)

Class org.argouml.ui.SettingsTabAppearance extends SettingsTabHelper implements Serializable

Serialized Fields

lookAndFeel

JComboBox lookAndFeel

metalTheme

JComboBox metalTheme

metalLabel

JLabel metalLabel

smoothEdges

JCheckBox smoothEdges

Class org.argouml.ui.SettingsTabEnvironment extends SettingsTabHelper implements Serializable

Serialized Fields

userDir

String userDir

fieldArgoRoot

JTextField fieldArgoRoot

fieldArgoHome

JTextField fieldArgoHome

fieldArgoExtDir

JTextField fieldArgoExtDir

fieldJavaHome

JTextField fieldJavaHome

fieldUserHome

JTextField fieldUserHome

fieldUserDir

JTextField fieldUserDir

fieldStartupDir

JTextField fieldStartupDir

userDirButton

JButton userDirButton

Class org.argouml.ui.SettingsTabLayout extends SettingsTabHelper implements Serializable

Serialized Fields

prpTodo

org.tigris.swidgets.Property prpTodo

prpProperties

org.tigris.swidgets.Property prpProperties

prpDocumentation

org.tigris.swidgets.Property prpDocumentation

prpStyle

org.tigris.swidgets.Property prpStyle

prpSource

org.tigris.swidgets.Property prpSource

prpConstraints

org.tigris.swidgets.Property prpConstraints

prpTaggedValues

org.tigris.swidgets.Property prpTaggedValues

Class org.argouml.ui.SettingsTabPreferences extends SettingsTabHelper implements Serializable

Serialized Fields

chkSplash

JCheckBox chkSplash

chkPreload

JCheckBox chkPreload

chkEdem

JCheckBox chkEdem

chkProfile

JCheckBox chkProfile

chkReloadRecent

JCheckBox chkReloadRecent

Class org.argouml.ui.SettingsTabUser extends SettingsTabHelper implements Serializable

Serialized Fields

userFullname

JTextField userFullname
This is where the user enters full name in settings tab. This information is stored in the argo.user.properties file.


userEmail

JTextField userEmail
This is where the user enters email in settings tab. This information is stored in the argo.user.properties file.

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

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

Serialized Fields

statusBar

StatusBar statusBar

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

Serialized Fields

msg

JLabel msg

progress

JProgressBar progress

statusText

String statusText

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

Serialized Fields

panelTarget

org.tigris.gef.presentation.Fig panelTarget

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

Serialized Fields

bboxLabel

JLabel bboxLabel

bboxField

JTextField bboxField

fillLabel

JLabel fillLabel

fillField

JComboBox fillField

lineLabel

JLabel lineLabel

lineField

JComboBox lineField

spacer

SpacerPanel spacer

spacer2

SpacerPanel spacer2

spacer3

SpacerPanel spacer3

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

Serialized Fields

shadowLabel

JLabel shadowLabel

shadowField

JComboBox shadowField

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

Serialized Fields

roundingLabel

JLabel roundingLabel

roundingField

JTextField roundingField

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

Serialized Fields

fontLabel

JLabel fontLabel

fontField

JComboBox fontField

sizeLabel

JLabel sizeLabel

sizeField

JComboBox sizeField

styleLabel

JLabel styleLabel

styleField

JComboBox styleField

justLabel

JLabel justLabel

justField

JComboBox justField

textColorLabel

JLabel textColorLabel

textColorField

JComboBox textColorField

Class org.argouml.ui.SystemInfoDialog extends ArgoDialog implements Serializable

Serialized Fields

info

JTextArea info

runGCButton

JButton runGCButton

copyButton

JButton copyButton

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

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

Serialized Fields

pred

PredicateFind pred

cg

org.tigris.gef.util.ChildGenerator cg

root

Object root

mainPane

JSplitPane mainPane

results

Vector results

related

Vector related

diagrams

Vector diagrams

relatedShown

boolean relatedShown

resultsLabel

JLabel resultsLabel

resultsTable

JTable resultsTable

resultsModel

TMResults resultsModel

relatedLabel

JLabel relatedLabel

relatedTable

JTable relatedTable

relatedModel

TMResults relatedModel

Class org.argouml.ui.TabSpawnable extends JPanel implements Serializable

Serialized Fields

title

String title

tear

boolean tear
if true, remove tab from parent JTabbedPane


orientation

org.tigris.swidgets.Orientation orientation

Class org.argouml.ui.TabTable extends TabProps implements Serializable

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

Serialized Fields

target

Object target

textArea

JTextArea textArea

parseChanges

boolean parseChanges

enabled

boolean enabled

toolbar

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

Class org.argouml.ui.ZoomSliderButton extends org.tigris.swidgets.PopupButton implements Serializable

Serialized Fields

slider

JSlider slider
The slider component.


currentValue

JTextField currentValue
The text field which shows the current zoom magnification value.


Package org.argouml.ui.cmd

Class org.argouml.ui.cmd.ActionEmailExpert extends ToDoItemAction implements Serializable

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

Class org.argouml.ui.cmd.ActionNewToDoItem extends UMLAction implements Serializable

Class org.argouml.ui.cmd.ActionOpenBrowser extends UMLAction implements Serializable

Class org.argouml.ui.cmd.ActionPrint extends UMLAction implements Serializable

Serialized Fields

cmd

org.tigris.gef.base.CmdPrint cmd

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

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

Class org.argouml.ui.cmd.CmdSetPreferredSize extends org.tigris.gef.base.Cmd implements Serializable

Serialized Fields

mode

int mode

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

Serialized Fields

fileToolbar

JToolBar fileToolbar
The toolbars.


editToolbar

JToolBar editToolbar

viewToolbar

JToolBar viewToolbar

createDiagramToolbar

JToolBar createDiagramToolbar

lruList

LastRecentlyUsedMenuList lruList
lru project list.


edit

JMenu edit
Edit menu.


select

JMenu select
The Select menu is a submenu of Edit.


view

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


createDiagrams

JMenu createDiagrams
Toolbar:create diagram.


tools

JMenu tools
Currently disactivated.


generate

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


arrange

ArgoJMenu arrange
This should be invoked automatically when importing sources.


critique

ArgoJMenu critique
The critique menu.


help

JMenu help
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.


Package org.argouml.ui.explorer

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

Serialized Fields

selectedTreePath

TreePath selectedTreePath
The selected node.


dragSource

DragSource dragSource
dnd source.

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

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

Serialized Fields

showStereotype

boolean showStereotype
Holds state info about whether to display stereotypes in the explorer pane.


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 DefaultTreeModel implements Serializable

Serialized Fields

rules

Object[] rules
an array of PerspectiveRules, that determine the tree view.


modelElementMap

Map modelElementMap
a map used to resolve model elements to tree nodes when determining what effect a model event will have on the tree.


order

Comparator order
the global order for siblings in the tree.


updatingChildren

Vector updatingChildren
The children currently being updated.


nodeUpdater

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

Class org.argouml.ui.explorer.ExplorerTreeNode extends DefaultMutableTreeNode implements Serializable

Serialized Fields

model

ExplorerTreeModel model

expanded

boolean expanded

pending

boolean pending

modifySet

Set modifySet

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

Class org.argouml.ui.explorer.PerspectiveConfigurator extends ArgoDialog implements Serializable

Serialized Fields

configPanelNorth

JPanel configPanelNorth

configPanelSouth

JPanel configPanelSouth

splitPane

JSplitPane splitPane

renameTextField

JTextField renameTextField

newPerspectiveButton

JButton newPerspectiveButton

removePerspectiveButton

JButton removePerspectiveButton

duplicatePerspectiveButton

JButton duplicatePerspectiveButton

moveUpButton

JButton moveUpButton

moveDownButton

JButton moveDownButton

addRuleButton

JButton addRuleButton

removeRuleButton

JButton removeRuleButton

resetToDefaultButton

JButton resetToDefaultButton

perspectiveList

JList perspectiveList

perspectiveRulesList

JList perspectiveRulesList

ruleLibraryList

JList ruleLibraryList

perspectiveListModel

DefaultListModel perspectiveListModel

perspectiveRulesListModel

DefaultListModel perspectiveRulesListModel

ruleLibraryListModel

DefaultListModel ruleLibraryListModel

persLabel

JLabel persLabel

ruleLibLabel

JLabel ruleLibLabel

rulesLabel

JLabel rulesLabel


Package org.argouml.ui.targetmanager

Class org.argouml.ui.targetmanager.NavigateTargetBackAction extends UMLAction implements Serializable

Class org.argouml.ui.targetmanager.NavigateTargetForwardAction extends UMLAction implements Serializable

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

Serialized Fields

theEventName

String theEventName
The name of the event


theOldTargets

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


theNewTargets

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


Package org.argouml.uml

Class org.argouml.uml.GenAncestorClasses extends Object implements Serializable

Class org.argouml.uml.GenCompositeClasses extends Object implements Serializable

Class org.argouml.uml.GenDescendantClasses extends Object implements Serializable

Class org.argouml.uml.PredicateFind extends Object implements Serializable

Serialized Fields

elementName

org.tigris.gef.util.Predicate elementName

packageName

org.tigris.gef.util.Predicate packageName

diagramName

org.tigris.gef.util.Predicate diagramName

theType

org.tigris.gef.util.Predicate theType

specific

org.tigris.gef.util.Predicate specific

Class org.argouml.uml.PredicateNotInTrash extends Object implements Serializable

Serialized Fields

p

Project p

Class org.argouml.uml.SuperclassGen extends Object implements Serializable

Class org.argouml.uml.TMResults extends AbstractTableModel implements Serializable

Serialized Fields

rowObjects

Vector rowObjects

diagrams

Vector diagrams

showInDiagramColumn

boolean showInDiagramColumn


Package org.argouml.uml.cognitive

Class org.argouml.uml.cognitive.ChildGenFind extends Object implements Serializable

Class org.argouml.uml.cognitive.ChildGenRelated extends Object implements Serializable

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

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

Class org.argouml.uml.cognitive.critics.ChildGenUML extends Object implements Serializable

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

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

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

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

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.CrConsiderFacade 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

String suggestion
The suggestion string.

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

Serialized Fields

step1

WizStepTextField step1

label

String label

instructions

String instructions

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

Serialized Fields

step1

WizStepTextField step1

label

String label

instructions

String instructions

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

Serialized Fields

step1

WizStepTextField step1

label

String label

instructions

String instructions

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

Serialized Fields

instructions

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

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

String instructions1

instructions2

String instructions2

instructions3

String instructions3

step1

WizStepChoice step1

step2

WizStepChoice step2

step3

WizStepConfirm step3

selectedCls

Object selectedCls

selectedAsc

Object selectedAsc

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

Serialized Fields

cues

Vector cues

steps

WizStepCue[] steps

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

Serialized Fields

instructions

String instructions

mes

Vector mes

step1

WizStepManyTextFields step1

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

Serialized Fields

instructions

String instructions

label

String label

mustEdit

boolean mustEdit

step1

WizStepTextField step1

origSuggest

String origSuggest

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

Serialized Fields

instructions

String instructions

option0

String option0

option1

String option1

option2

String option2

step1

WizStepChoice step1

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

Serialized Fields

possibleConstructor

boolean possibleConstructor

stereotypePathChosen

boolean stereotypePathChosen

option0

String option0

option1

String option1

step1

WizStepChoice step1

step2

WizStepCue step2

oldStereotype

Object oldStereotype

oldStereotypeIsSet

boolean oldStereotypeIsSet

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

Serialized Fields

instructions

String instructions

step1

WizStepTextField step1


Package org.argouml.uml.diagram

Class org.argouml.uml.diagram.UmlDiagramRenderer extends Object implements Serializable

Class org.argouml.uml.diagram.UMLMutableGraphSupport extends org.tigris.gef.graph.MutableGraphSupport implements Serializable

Serialized Fields

nodes

Vector nodes
Contains all the nodes in the graphmodel/diagram.


edges

Vector edges
Constains all the edges in the graphmodel/diagram.


Package org.argouml.uml.diagram.activity

Class org.argouml.uml.diagram.activity.ActivityDiagramGraphModel extends StateDiagramGraphModel implements Serializable


Package org.argouml.uml.diagram.activity.ui

Class org.argouml.uml.diagram.activity.ui.ActivityDiagramRenderer extends StateDiagramRenderer implements Serializable

Class org.argouml.uml.diagram.activity.ui.FigActionState extends FigStateVertex implements Serializable

Serialized Fields

cover

org.tigris.gef.presentation.FigRRect cover

Class org.argouml.uml.diagram.activity.ui.FigCallState extends FigActionState implements Serializable

Class org.argouml.uml.diagram.activity.ui.FigObjectFlowState extends FigNodeModelElement implements Serializable

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover

classifier

org.tigris.gef.presentation.FigText classifier

state

org.tigris.gef.presentation.FigText state

Class org.argouml.uml.diagram.activity.ui.FigPartition extends FigNodeModelElement implements Serializable

Serialized Fields

leftLine

org.tigris.gef.presentation.FigLine leftLine

rightLine

org.tigris.gef.presentation.FigLine rightLine

Class org.argouml.uml.diagram.activity.ui.FigSubactivityState extends FigStateVertex implements Serializable

Serialized Fields

cover

org.tigris.gef.presentation.FigRRect cover

icon

org.tigris.gef.presentation.FigGroup icon

s1

org.tigris.gef.presentation.FigRRect s1

s2

org.tigris.gef.presentation.FigRRect s2

s3

org.tigris.gef.presentation.FigLine s3

Class org.argouml.uml.diagram.activity.ui.SelectionActionState extends SelectionWButtons implements Serializable

Serialized Fields

showIncomingLeft

boolean showIncomingLeft

showIncomingAbove

boolean showIncomingAbove

showOutgoingRight

boolean showOutgoingRight

showOutgoingBelow

boolean showOutgoingBelow

Class org.argouml.uml.diagram.activity.ui.UMLActivityDiagram extends UMLDiagram implements Serializable

Serialized Fields

actionState

Action actionState

actionStartPseudoState

Action actionStartPseudoState

actionFinalPseudoState

Action actionFinalPseudoState

actionJunctionPseudoState

Action actionJunctionPseudoState

actionForkPseudoState

Action actionForkPseudoState

actionJoinPseudoState

Action actionJoinPseudoState

actionTransition

Action actionTransition

actionObjectFlowState

Action actionObjectFlowState

actionNewSwimlane

Action actionNewSwimlane

actionCallState

Action actionCallState

actionSubactivityState

Action actionSubactivityState


Package org.argouml.uml.diagram.collaboration

Class org.argouml.uml.diagram.collaboration.CollabDiagramGraphModel extends UMLMutableGraphSupport implements Serializable

Serialized Fields

collab

Object collab
The collaboration / interaction we are diagramming


interaction

Object interaction


Package org.argouml.uml.diagram.collaboration.ui

Class org.argouml.uml.diagram.collaboration.ui.CollabDiagramRenderer extends UmlDiagramRenderer implements Serializable

Class org.argouml.uml.diagram.collaboration.ui.FigAssociationRole extends FigAssociation implements Serializable

Serialized Fields

messages

FigMessageGroup messages

Class org.argouml.uml.diagram.collaboration.ui.FigClassifierRole extends FigNodeModelElement implements Serializable

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover
The fig that is used for the complete classifier role. Identical in size to FigNodeModelElement.bigPort.

Class org.argouml.uml.diagram.collaboration.ui.SelectionClassifierRole extends SelectionWButtons implements Serializable

Serialized Fields

showIncoming

boolean showIncoming

showOutgoing

boolean showOutgoing

Class org.argouml.uml.diagram.collaboration.ui.UMLCollaborationDiagram extends UMLDiagram implements Serializable

Serialized Fields

collaboration

Object collaboration

actionClassifierRole

Action actionClassifierRole

actionGeneralize

Action actionGeneralize

actionAssociation

Action actionAssociation

actionAggregation

Action actionAggregation

actionComposition

Action actionComposition

actionUniAssociation

Action actionUniAssociation

actionUniAggregation

Action actionUniAggregation

actionUniComposition

Action actionUniComposition

actionDepend

Action actionDepend

actionMessage

Action actionMessage


Package org.argouml.uml.diagram.deployment

Class org.argouml.uml.diagram.deployment.DeploymentDiagramGraphModel extends UMLMutableGraphSupport implements Serializable

serialVersionUID: 1003748292917485298l

Serialized Fields

model

Object model
The "home" UML model of this diagram, not all ModelElements in this graph are in the home model, but if they are added and don't already have a model, they are placed in the "home model". Also, elements from other models will have their FigNodes add a line to say what their model is.


Package org.argouml.uml.diagram.deployment.ui

Class org.argouml.uml.diagram.deployment.ui.DeploymentDiagramRenderer extends UmlDiagramRenderer implements Serializable

serialVersionUID: 8002278834226522224l

Class org.argouml.uml.diagram.deployment.ui.FigComponent extends FigNodeModelElement implements Serializable

serialVersionUID: 1647392857462847651l

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover

upperRect

org.tigris.gef.presentation.FigRect upperRect

lowerRect

org.tigris.gef.presentation.FigRect lowerRect

Class org.argouml.uml.diagram.deployment.ui.FigComponentInstance extends FigNodeModelElement implements Serializable

serialVersionUID: 1647392857462847651l

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover

upperRect

org.tigris.gef.presentation.FigRect upperRect

lowerRect

org.tigris.gef.presentation.FigRect lowerRect

Class org.argouml.uml.diagram.deployment.ui.FigMNode extends FigNodeModelElement implements Serializable

serialVersionUID: 8822005566372687713l

Serialized Fields

cover

org.tigris.gef.presentation.FigCube cover

test

org.tigris.gef.presentation.FigRect test

Class org.argouml.uml.diagram.deployment.ui.FigMNodeInstance extends FigNodeModelElement implements Serializable

serialVersionUID: 8822005566372687713l

Serialized Fields

cover

org.tigris.gef.presentation.FigCube cover

test

org.tigris.gef.presentation.FigRect test

Class org.argouml.uml.diagram.deployment.ui.FigObject extends FigNodeModelElement implements Serializable

serialVersionUID: -185736690375678962l

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover

resident

Object resident

Class org.argouml.uml.diagram.deployment.ui.SelectionComponent extends SelectionWButtons implements Serializable

Class org.argouml.uml.diagram.deployment.ui.SelectionComponentInstance extends SelectionWButtons implements Serializable

Class org.argouml.uml.diagram.deployment.ui.SelectionNode extends SelectionWButtons implements Serializable

Class org.argouml.uml.diagram.deployment.ui.SelectionNodeInstance extends SelectionWButtons implements Serializable

Class org.argouml.uml.diagram.deployment.ui.SelectionObject extends SelectionWButtons implements Serializable

Class org.argouml.uml.diagram.deployment.ui.UMLDeploymentDiagram extends UMLDiagram implements Serializable

serialVersionUID: -375918274062198744l

Serialized Fields

actionMNode

Action actionMNode

actionMNodeInstance

Action actionMNodeInstance

actionMComponent

Action actionMComponent

actionMComponentInstance

Action actionMComponentInstance

actionMClass

Action actionMClass

actionMInterface

Action actionMInterface

actionMObject

Action actionMObject

actionMDependency

Action actionMDependency

actionMAssociation

Action actionMAssociation

actionMLink

Action actionMLink

actionAssociation

Action actionAssociation

actionAggregation

Action actionAggregation

actionComposition

Action actionComposition

actionUniAssociation

Action actionUniAssociation

actionUniAggregation

Action actionUniAggregation

actionUniComposition

Action actionUniComposition

actionMGeneralization

Action actionMGeneralization

actionMAbstraction

Action actionMAbstraction


Package org.argouml.uml.diagram.sequence

Class org.argouml.uml.diagram.sequence.SequenceDiagramGraphModel extends UMLMutableGraphSupport implements Serializable

Serialized Fields

collaboration

Object collaboration
The collaboration this sequence diagram belongs too.


interaction

Object interaction
The interaction that is shown on the sequence diagram


Package org.argouml.uml.diagram.sequence.ui

Class org.argouml.uml.diagram.sequence.ui.ActionAddObject extends CmdCreateNode implements Serializable

Class org.argouml.uml.diagram.sequence.ui.FigCallActionLink extends FigLink implements Serializable

Class org.argouml.uml.diagram.sequence.ui.FigCreateActionLink extends FigLink implements Serializable

Class org.argouml.uml.diagram.sequence.ui.FigDestroyActionLink extends FigLink implements Serializable

Class org.argouml.uml.diagram.sequence.ui.FigLink extends FigEdgeModelElement implements Serializable

Serialized Fields

computeRouteNumbersOfTime

int computeRouteNumbersOfTime

Class org.argouml.uml.diagram.sequence.ui.FigLinkPort extends org.tigris.gef.presentation.FigLine implements Serializable

Serialized Fields

activationStatus

int activationStatus

Class org.argouml.uml.diagram.sequence.ui.FigObject extends FigNodeModelElement implements Serializable

Serialized Fields

outerBox

org.tigris.gef.presentation.FigRect outerBox
The outer black rectangle of the object box (object fig without lifeline).


backgroundBox

org.tigris.gef.presentation.FigRect backgroundBox
The filled box for the object box (object fig without lifeline).


lifeLine

org.tigris.gef.presentation.FigLine lifeLine
The lifeline (dashed line under the object box to which activations are attached)


lifeLinePort

LifeLinePort lifeLinePort
The owner of the lifeline.


linkPositions

List linkPositions
The list where the nodes to which links can be attached are stored


figActivations

List figActivations
The list where the figrects are stored that are the activation boxes. The list is only here for performance issues. When removing a figrect, it should also be removed from this list, not only from the figs list.


figFigLinkPorts

List figFigLinkPorts
The list with the figLinkPorts. The list is only here for performance issues. When deleting a figLinkPort, it should also be removed from this list, not only from the figs list.


baseNames

String baseNames
The comma seperated list of base names of the classifierRole(s) that this object represents.


classifierRoleNames

String classifierRoleNames
The comma seperated list of names of the classifierRole(s) that this object represents.


objectName

String objectName
The name of the object (the owner of this fig).

Class org.argouml.uml.diagram.sequence.ui.FigReturnActionLink extends FigLink implements Serializable

Class org.argouml.uml.diagram.sequence.ui.ModeCreateLink extends org.tigris.gef.base.ModeCreate implements Serializable

Serialized Fields

startPort

Object startPort
The NetPort where the arc is paintn from


startPortFig

org.tigris.gef.presentation.Fig startPortFig
The Fig that presents the starting NetPort


sourceFigNode

org.tigris.gef.presentation.FigNode sourceFigNode
The FigNode on the NetNode that owns the start port


newEdge

Object newEdge
The new NetEdge that is being created

Class org.argouml.uml.diagram.sequence.ui.SequenceDiagramLayout extends org.tigris.gef.base.LayerPerspectiveMutable implements Serializable

Serialized Fields

figObjectsX

LinkedList figObjectsX
Linked list with all fig objects sorted by x coordinate in it


heighestObjectHeight

int heighestObjectHeight
The heighest height of the outer box of a figobject.

Class org.argouml.uml.diagram.sequence.ui.SequenceDiagramRenderer extends UmlDiagramRenderer implements Serializable

Class org.argouml.uml.diagram.sequence.ui.UMLSequenceDiagram extends UMLDiagram implements Serializable

Serialized Fields

actions

Object[] actions


Package org.argouml.uml.diagram.state

Class org.argouml.uml.diagram.state.PredIsFinalState extends Object implements Serializable

Class org.argouml.uml.diagram.state.PredIsStartState extends Object implements Serializable

Class org.argouml.uml.diagram.state.StateDiagramGraphModel extends UMLMutableGraphSupport implements Serializable

serialVersionUID: -8056507319026044174l

Serialized Fields

namespace

Object namespace
The "home" UML model of this diagram, not all ModelElements in this graph are in the home model, but if they are added and don't already have a model, they are placed in the "home model". Also, elements from other models will have their FigNodes add a line to say what their model is.


machine

Object machine
The statemachine we are diagramming.


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

Class org.argouml.uml.diagram.state.ui.ActionCreatePseudostate extends CmdCreateNode implements Serializable

Class org.argouml.uml.diagram.state.ui.FigBranchState extends FigStateVertex implements Serializable

serialVersionUID: 6572261327347541373l

Serialized Fields

head

org.tigris.gef.presentation.FigCircle head

Class org.argouml.uml.diagram.state.ui.FigCompositeState extends FigState implements Serializable

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover

divider

org.tigris.gef.presentation.FigLine divider

Class org.argouml.uml.diagram.state.ui.FigConcurrentRegion extends FigState implements Serializable

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover
The main label on this icon.


dividerline

org.tigris.gef.presentation.FigLine dividerline

color

Color color

Class org.argouml.uml.diagram.state.ui.FigDeepHistoryState extends FigHistoryState implements Serializable

Class org.argouml.uml.diagram.state.ui.FigFinalState extends FigStateVertex implements Serializable

serialVersionUID: -3506578343969467480l

Serialized Fields

inCircle

org.tigris.gef.presentation.FigCircle inCircle

Class org.argouml.uml.diagram.state.ui.FigForkState extends FigStateVertex implements Serializable

serialVersionUID: 6702818473439087473l

Serialized Fields

head

org.tigris.gef.presentation.FigRect head

Class org.argouml.uml.diagram.state.ui.FigHistoryState extends FigStateVertex implements Serializable

serialVersionUID: 6572261327347541373l

Serialized Fields

h

org.tigris.gef.presentation.FigText h
The main label on this icon.


head

org.tigris.gef.presentation.FigCircle head

Class org.argouml.uml.diagram.state.ui.FigInitialState extends FigStateVertex implements Serializable

serialVersionUID: 6572261327347541373l

Serialized Fields

head

org.tigris.gef.presentation.FigCircle head

Class org.argouml.uml.diagram.state.ui.FigJoinState extends FigStateVertex implements Serializable

serialVersionUID: 2075803883819230367l

Serialized Fields

head

org.tigris.gef.presentation.FigRect head

Class org.argouml.uml.diagram.state.ui.FigJunctionState extends FigStateVertex implements Serializable

Serialized Fields

head

org.tigris.gef.presentation.FigPoly head

Class org.argouml.uml.diagram.state.ui.FigShallowHistoryState extends FigHistoryState implements Serializable

Class org.argouml.uml.diagram.state.ui.FigSimpleState extends FigState implements Serializable

Serialized Fields

cover

org.tigris.gef.presentation.FigRect cover

divider

org.tigris.gef.presentation.FigLine divider

Class org.argouml.uml.diagram.state.ui.FigState extends FigStateVertex implements Serializable

Serialized Fields

internal

org.tigris.gef.presentation.FigText internal
the text inside the state

Class org.argouml.uml.diagram.state.ui.FigStateVertex extends FigNodeModelElement implements Serializable

Class org.argouml.uml.diagram.state.ui.FigStubState extends FigStateVertex implements Serializable

Serialized Fields

MARGIN

int MARGIN
See Also:
Constant Field Values

x

int x

y

int y

width

int width

height

int height

_reference

org.tigris.gef.presentation.FigText _reference

_stubline

org.tigris.gef.presentation.FigLine _stubline

Class org.argouml.uml.diagram.state.ui.FigSubmachineState extends FigState implements Serializable

Serialized Fields

MARGIN

int MARGIN
See Also:
Constant Field Values

_cover

org.tigris.gef.presentation.FigRect _cover

_divider

org.tigris.gef.presentation.FigLine _divider

_divider2

org.tigris.gef.presentation.FigLine _divider2

_circle1

org.tigris.gef.presentation.FigRect _circle1

_circle2

org.tigris.gef.presentation.FigRect _circle2

_circle1tocircle2

org.tigris.gef.presentation.FigLine _circle1tocircle2

_include

org.tigris.gef.presentation.FigText _include

Class org.argouml.uml.diagram.state.ui.FigSynchState extends FigStateVertex implements Serializable

Serialized Fields

MARGIN

int MARGIN
See Also:
Constant Field Values

X

int X

Y

int Y

WIDTH

int WIDTH

HEIGHT

int HEIGHT

bound

org.tigris.gef.presentation.FigText bound

head

org.tigris.gef.presentation.FigCircle head

Class org.argouml.uml.diagram.state.ui.FigTransition extends FigEdgeModelElement implements Serializable

Serialized Fields

endArrow

org.tigris.gef.presentation.ArrowHeadGreater endArrow

dashed

boolean dashed
If dashed is true, then the transition represents "object flow". If the line is solid, then it represents "control flow".

Class org.argouml.uml.diagram.state.ui.SelectionState extends SelectionWButtons implements Serializable

Serialized Fields

showIncoming

boolean showIncoming

showOutgoing

boolean showOutgoing

Class org.argouml.uml.diagram.state.ui.StateDiagramRenderer extends UmlDiagramRenderer implements Serializable

serialVersionUID: 8448809085349795886l

Class org.argouml.uml.diagram.state.ui.UMLStateDiagram extends UMLDiagram implements Serializable

Serialized Fields

theStateMachine

Object theStateMachine
this diagram needs to be deleted when its statemachine is deleted.


actionStubState

Action actionStubState

actionState

Action actionState

actionSynchState

Action actionSynchState

actionSubmachineState

Action actionSubmachineState

actionCompositeState

Action actionCompositeState

actionStartPseudoState

Action actionStartPseudoState

actionFinalPseudoState

Action actionFinalPseudoState

actionBranchPseudoState

Action actionBranchPseudoState

actionForkPseudoState

Action actionForkPseudoState

actionJoinPseudoState

Action actionJoinPseudoState

actionShallowHistoryPseudoState

Action actionShallowHistoryPseudoState

actionDeepHistoryPseudoState

Action actionDeepHistoryPseudoState

actionTransition

Action actionTransition

actionJunctionPseudoState

Action actionJunctionPseudoState


Package org.argouml.uml.diagram.static_structure

Class org.argouml.uml.diagram.static_structure.ClassDiagramGraphModel extends UMLMutableGraphSupport implements Serializable

serialVersionUID: -2638688086415040146l

Serialized Fields

model

Object model
The "home" UML model of this diagram, not all ModelElements in this graph are in the home model, but if they are added and don't already have a model, they are placed in the "home model". Also, elements from other models will have their FigNodes add a line to say what their model is.


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

Class org.argouml.uml.diagram.static_structure.ui.ClassDiagramRenderer extends UmlDiagramRenderer implements Serializable

serialVersionUID: 675407719309039112l

Class org.argouml.uml.diagram.static_structure.ui.FigClass extends FigNodeModelElement implements Serializable

Serialized Fields

highlightedFigText

CompartmentFigText highlightedFigText
Text highlighted by mouse actions on the diagram.


newlyCreated

boolean newlyCreated
Flag to indicate that we have just been created. This is to fix the problem with loading classes that have stereotypes already defined.


resident

Object resident

Manages residency of a class within a component on a deployment diagram.

Class org.argouml.uml.diagram.static_structure.ui.FigComment extends FigNodeModelElement implements Serializable

Serialized Fields

x

int x

y

int y

width

int width

height

int height

gapY

int gapY

readyToEdit

boolean readyToEdit

text

org.tigris.gef.presentation.FigText text

body

org.tigris.gef.presentation.FigPoly body

urCorner

org.tigris.gef.presentation.FigPoly urCorner

Class org.argouml.uml.diagram.static_structure.ui.FigEdgeNote extends FigEdgeModelElement implements Serializable

Serialized Fields

owner

Object owner

Class org.argouml.uml.diagram.static_structure.ui.FigFeature extends CompartmentFigText implements Serializable

Class org.argouml.uml.diagram.static_structure.ui.FigInstance extends FigNodeModelElement implements Serializable

Serialized Fields

attr

org.tigris.gef.presentation.FigText attr
UML does not really use ports, so just define one big one so that users can drag edges to or from any point in the icon.

Class org.argouml.uml.diagram.static_structure.ui.FigInterface extends FigNodeModelElement implements Serializable

Serialized Fields

operVec

FigOperationsCompartment operVec
The vector of graphics for operations (if any). First one is the rectangle for the entire operations box.


stereoLineBlinder

org.tigris.gef.presentation.FigRect stereoLineBlinder
A rectangle to blank out the line that would otherwise appear at the bottom of the stereotype text box.


resident

Object resident
Manages residency of an interface within a component on a deployment diagram. Not clear why it is an instance variable (rather than local to the method).


highlightedFigText

CompartmentFigText highlightedFigText
Text highlighted by mouse actions on the diagram.

Class org.argouml.uml.diagram.static_structure.ui.FigLink extends FigEdgeModelElement implements Serializable

Class org.argouml.uml.diagram.static_structure.ui.FigModel extends FigPackage implements Serializable

Serialized Fields

figPoly

org.tigris.gef.presentation.FigPoly figPoly

Class org.argouml.uml.diagram.static_structure.ui.FigPackage extends FigNodeModelElement implements Serializable

Serialized Fields

x

int x

y

int y

width

int width

height

int height

indentX

int indentX

textH

int textH

body

org.tigris.gef.presentation.FigText body

showStereotype

boolean showStereotype
Flags that indicates if the stereotype should be shown even if it is specified or not.


stereoLineBlinder

org.tigris.gef.presentation.FigRect stereoLineBlinder

A rectangle to blank out the line that would otherwise appear at the bottom of the stereotype text box.

Class org.argouml.uml.diagram.static_structure.ui.FigSubsystem extends FigPackage implements Serializable

Serialized Fields

figPoly

org.tigris.gef.presentation.FigPoly figPoly

Class org.argouml.uml.diagram.static_structure.ui.SelectionClass extends SelectionWButtons implements Serializable

Serialized Fields

useComposite

boolean useComposite

Class org.argouml.uml.diagram.static_structure.ui.SelectionInterface extends SelectionWButtons implements Serializable

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

Serialized Fields

attrCheckBox

JCheckBox attrCheckBox

operCheckBox

JCheckBox operCheckBox

displayLabel

JLabel displayLabel

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

Serialized Fields

operCheckBox

JCheckBox operCheckBox

displayLabel

JLabel displayLabel

refreshTransaction

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

Class org.argouml.uml.diagram.static_structure.ui.UMLClassDiagram extends UMLDiagram implements Serializable

Serialized Fields

actionAssociationClass

Action actionAssociationClass

actionClass

Action actionClass

actionObject

Action actionObject

actionInterface

Action actionInterface

actionDependency

Action actionDependency

actionPermission

Action actionPermission

actionUsage

Action actionUsage

actionLink

Action actionLink

actionGeneralization

Action actionGeneralization

actionRealization

Action actionRealization

actionPackage

Action actionPackage

actionModel

Action actionModel

actionSubsystem

Action actionSubsystem

actionAssociation

Action actionAssociation

actionAggregation

Action actionAggregation

actionComposition

Action actionComposition

actionUniAssociation

Action actionUniAssociation

actionUniAggregation

Action actionUniAggregation

actionUniComposition

Action actionUniComposition

actionAttribute

Action actionAttribute

actionOperation

Action actionOperation


Package org.argouml.uml.diagram.ui

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

Serialized Fields

tabName

String tabName

object

Object object

Class org.argouml.uml.diagram.ui.ActionAddAssociation extends CmdSetMode implements Serializable

Class org.argouml.uml.diagram.ui.ActionAddAssociationRole extends CmdSetMode implements Serializable

Class org.argouml.uml.diagram.ui.ActionAddAttribute extends UMLAction implements Serializable

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

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

Serialized Fields

edge

Object edge

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

Serialized Fields

object

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

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

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

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

Class org.argouml.uml.diagram.ui.ActionAddOperation extends UMLAction implements Serializable

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

Serialized Fields

str

String str

agg

Object agg

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

Serialized Fields

display

boolean display

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


compartment

String compartment

A string indicating the action desired.

Class org.argouml.uml.diagram.ui.ActionDeleteConcurrentRegion extends UMLAction implements Serializable

Class org.argouml.uml.diagram.ui.ActionDeleteFromDiagram extends UMLAction implements Serializable

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

Serialized Fields

show

boolean show

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

Serialized Fields

str

String str

mult

Object mult

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

Serialized Fields

nav

int nav

assocStart

Object assocStart

assocEnd

Object assocEnd

Class org.argouml.uml.diagram.ui.ActionProperties extends UMLAction implements Serializable

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

Class org.argouml.uml.diagram.ui.CompartmentFigText extends org.tigris.gef.presentation.FigText implements Serializable

Serialized Fields

refFig

org.tigris.gef.presentation.Fig refFig
The bounding figure of the compartment containing this fig text.


isHighlighted

boolean isHighlighted
Record whether we are currently highlighted.


modelElement

Object modelElement
The model element with which we are associated.

Class org.argouml.uml.diagram.ui.FigAssociation extends FigEdgeModelElement implements Serializable

serialVersionUID: 9100125695919853919l

Serialized Fields

srcGroup

FigTextGroup srcGroup
Group for the FigTexts concerning the source association end.


destGroup

FigTextGroup destGroup
Group for the FigTexts concerning the dest association end.


middleGroup

FigTextGroup middleGroup
Group for the FigTexts concerning the name and stereotype of the association itself.


srcMult

org.tigris.gef.presentation.FigText srcMult

srcRole

org.tigris.gef.presentation.FigText srcRole

destMult

org.tigris.gef.presentation.FigText destMult

destRole

org.tigris.gef.presentation.FigText destRole

srcOrdering

org.tigris.gef.presentation.FigText srcOrdering

destOrdering

org.tigris.gef.presentation.FigText destOrdering

sourceArrowHead

org.tigris.gef.presentation.ArrowHead sourceArrowHead

destArrowHead

org.tigris.gef.presentation.ArrowHead destArrowHead

Class org.argouml.uml.diagram.ui.FigAssociationClass extends FigAssociation implements Serializable

Serialized Fields

bigPort

org.tigris.gef.presentation.FigCircle bigPort

head

org.tigris.gef.presentation.FigCircle head

edge

FigEdgeAssociationClass edge

fig

FigClassAssociationClass fig

oldMin

int oldMin

oldMax

int oldMax

damageLock

boolean damageLock

Class org.argouml.uml.diagram.ui.FigAssociationEnd extends FigEdgeModelElement implements Serializable

Serialized Fields

srcGroup

FigTextGroup srcGroup
Group for the FigTexts concerning the association end.


srcMult

org.tigris.gef.presentation.FigText srcMult

srcRole

org.tigris.gef.presentation.FigText srcRole

srcOrdering

org.tigris.gef.presentation.FigText srcOrdering

Class org.argouml.uml.diagram.ui.FigAttributesCompartment extends FigFeaturesCompartment implements Serializable

Class org.argouml.uml.diagram.ui.FigClassAssociationClass extends FigClass implements Serializable

Serialized Fields

mainFig

FigAssociationClass mainFig
The FigAssociationClass that is associated to

Class org.argouml.uml.diagram.ui.FigCompartment extends org.tigris.gef.presentation.FigGroup implements Serializable

Class org.argouml.uml.diagram.ui.FigDependency extends FigEdgeModelElement implements Serializable

Serialized Fields

endArrow

org.tigris.gef.presentation.ArrowHeadGreater endArrow

Class org.argouml.uml.diagram.ui.FigEdgeAssociationClass extends FigEdgeModelElement implements Serializable

Serialized Fields

mainFig

FigAssociationClass mainFig
The FigAssociationClass that is associated to.

Class org.argouml.uml.diagram.ui.FigEdgeModelElement extends org.tigris.gef.presentation.FigEdgePoly implements Serializable

Serialized Fields

removeFromDiagram

boolean removeFromDiagram
Set the removeFromDiagram to false if this edge may not be removed from the diagram.


name

org.tigris.gef.presentation.FigText name
The Fig that displays the name of this model element. Use getNameFig(), no setter should be required.


stereo

org.tigris.gef.presentation.FigText stereo
The Fig that displays the stereotype of this model element. Use getStereotypeFig(), no setter should be required.


id

ItemUID id

currentNotationName

NotationName currentNotationName
The current notation for this fig. The notation is for example UML 1.3 or Java

Class org.argouml.uml.diagram.ui.FigEmptyRect extends org.tigris.gef.presentation.FigRect implements Serializable

Class org.argouml.uml.diagram.ui.FigFeaturesCompartment extends FigCompartment implements Serializable

Serialized Fields

bigPort

org.tigris.gef.presentation.Fig bigPort

Class org.argouml.uml.diagram.ui.FigGeneralization extends FigEdgeModelElement implements Serializable

Serialized Fields

discriminator

org.tigris.gef.presentation.FigText discriminator
Text box for discriminator


endArrow

org.tigris.gef.presentation.ArrowHeadTriangle endArrow

Class org.argouml.uml.diagram.ui.FigMessage extends FigNodeModelElement implements Serializable

Serialized Fields

figPoly

org.tigris.gef.presentation.FigPoly figPoly

arrowDirection

int arrowDirection
The current arrow direction set to constants above.

Class org.argouml.uml.diagram.ui.FigName extends org.tigris.gef.presentation.FigText implements Serializable

Class org.argouml.uml.diagram.ui.FigNameCompartment extends FigCompartment implements Serializable

Serialized Fields

stereotype

FigStereotype stereotype

name

FigName name

Class org.argouml.uml.diagram.ui.FigNodeAssociation extends FigNodeModelElement implements Serializable

Serialized Fields

head

org.tigris.gef.presentation.FigDiamond head

Class org.argouml.uml.diagram.ui.FigNodeModelElement extends org.tigris.gef.presentation.FigNode implements Serializable

Serialized Fields

currentNotationName

NotationName currentNotationName

checkSize

boolean checkSize
Needed for loading. Warning: if false, a too small size might look bad!


shadowImage

BufferedImage shadowImage

cachedWidth

int cachedWidth

cachedHeight

int cachedHeight

bigPort

org.tigris.gef.presentation.Fig bigPort

name

org.tigris.gef.presentation.FigText name
use getNameFig() and setNameFig() to access the Figs. Use getName() and setName() to just change the text.


stereo

org.tigris.gef.presentation.FigText stereo
use getter/setter getStereotypeFig() and setStereoTypeFig() to access the Figs. Use getStereotype() and setStereotype() to change stereotype text. MVW: Why are the getter/setter not returning a FigText, but a Fig? I created a new (real) getter: getStereotypeFigText()


enclosedFigs

Vector enclosedFigs
enclosedFigs are the Figs that are enclosed by this figure. Say that it is a Package then these are the Classes, Interfaces, Packages etc that are on this figure. This is not the same as the figures in the FigGroup that this FigNodeModelElement "is", since these are the figures that make up this high-level primitive figure.


encloser

org.tigris.gef.presentation.Fig encloser
The figure enclosing this figure.


readyToEdit

boolean readyToEdit

suppressCalcBounds

boolean suppressCalcBounds

shadowSize

int shadowSize

itemUid

ItemUID itemUid

removeFromDiagram

boolean removeFromDiagram
Set the removeFromDiagram to false if this node may not be removed from the diagram.

Class org.argouml.uml.diagram.ui.FigNote extends FigNodeModelElement implements Serializable

Class org.argouml.uml.diagram.ui.FigOperationsCompartment extends FigFeaturesCompartment implements Serializable

Class org.argouml.uml.diagram.ui.FigPermission extends FigDependency implements Serializable

Class org.argouml.uml.diagram.ui.FigRealization extends FigEdgeModelElement implements Serializable

Serialized Fields

endArrow

org.tigris.gef.presentation.ArrowHeadTriangle endArrow

Class org.argouml.uml.diagram.ui.FigStereotype extends org.tigris.gef.presentation.FigText implements Serializable

Class org.argouml.uml.diagram.ui.FigTextGroup extends org.tigris.gef.presentation.FigGroup implements Serializable

Serialized Fields

supressCalcBounds

boolean supressCalcBounds

Class org.argouml.uml.diagram.ui.FigTrace extends org.tigris.gef.presentation.FigEdgeLine implements Serializable

serialVersionUID: -2094146244090391544l

Class org.argouml.uml.diagram.ui.FigUsage extends FigDependency implements Serializable

Class org.argouml.uml.diagram.ui.ModeCreateAssociation extends org.tigris.gef.base.ModeCreatePolyEdge implements Serializable

Serialized Fields

newFigNodeAssociation

org.tigris.gef.presentation.FigNode newFigNodeAssociation

oldFigAssociation

org.tigris.gef.presentation.FigEdge oldFigAssociation

association

Object association

associationEnds

Collection associationEnds

Class org.argouml.uml.diagram.ui.ModeCreateEdgeAndNode extends org.tigris.gef.base.ModeCreate implements Serializable

serialVersionUID: -427957543380196265l

Serialized Fields

startPort

Object startPort
The NetPort where the arc is paintn from.


startPortFig

org.tigris.gef.presentation.Fig startPortFig
The Fig that presents the starting NetPort.


sourceFigNode

org.tigris.gef.presentation.FigNode sourceFigNode
The FigNode on the NetNode that owns the start port.


newEdge

Object newEdge
The new NetEdge that is being created.


destToSource

boolean destToSource
False if drawing from source and destination. True if drawing from destination to source.


handle

org.tigris.gef.presentation.Handle handle
The number of points added so far.


fn

org.tigris.gef.presentation.FigNode fn

fe

org.tigris.gef.presentation.FigEdge fe

postProcessEdge

boolean postProcessEdge

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

Serialized Fields

field

JTextField field

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

Serialized Fields

target

org.tigris.gef.presentation.FigText target

nameLabel

JLabel nameLabel

nameField

JTextField nameField

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

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

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

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

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

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

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

Class org.argouml.uml.diagram.ui.RadioAction extends org.tigris.toolbar.toolbutton.AbstractButtonAction implements Serializable

Serialized Fields

realAction

Action realAction

Class org.argouml.uml.diagram.ui.SelectionEdgeClarifiers extends org.tigris.gef.base.SelectionReshape implements Serializable

Class org.argouml.uml.diagram.ui.SelectionMoveClarifiers extends org.tigris.gef.base.SelectionMove implements Serializable

Class org.argouml.uml.diagram.ui.SelectionNodeClarifiers extends org.tigris.gef.base.SelectionResize implements Serializable

Class org.argouml.uml.diagram.ui.SelectionRerouteEdge extends SelectionEdgeClarifiers implements Serializable

Serialized Fields

sourceFig

FigNodeModelElement sourceFig
used to determine if the association is now to self, in which case The association needs automatic layout.


destFig

FigNodeModelElement destFig
used to determine if the association is now to self, in which case The association needs automatic layout.


armed

boolean armed

the re-routing capability it armed if the mouse was previously dragged.

prevents just selecting the message then clicking somewhere else on the diagram,


pointIndex

int pointIndex

the index of the point on the line of the message.

0 = sender end

1..* = receiver end

Class org.argouml.uml.diagram.ui.SelectionWButtons extends SelectionNodeClarifiers implements Serializable

Serialized Fields

paintButtons

boolean paintButtons
True if the buttons on selection are currently shown.


pressedButton

int pressedButton

placeCounter

int placeCounter
Counter for counting the number of times there has been a try to place a fig.

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

Serialized Fields

spacer

SpacerPanel spacer

spacer2

SpacerPanel spacer2

spacer3

SpacerPanel spacer3

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

Serialized Fields

arrowLabel

JLabel arrowLabel

arrowField

JComboBox arrowField

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

Serialized Fields

target

UMLDiagram target
The diagram object.


graph

org.tigris.gef.graph.presentation.JGraph graph
The GEF JGraph in where the figs are painted.


updatingSelection

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


toolBar

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

Class org.argouml.uml.diagram.ui.UMLDiagram extends ArgoDiagram implements Serializable

serialVersionUID: -401219134410459387l

Serialized Fields

diagramSerial

int diagramSerial
The serial number for new diagrams. Used to create an unique number for the name of the diagram.


namespace

Object namespace

toolBar

JToolBar toolBar


Package org.argouml.uml.diagram.use_case

Class org.argouml.uml.diagram.use_case.UseCaseDiagramGraphModel extends UMLMutableGraphSupport implements Serializable

serialVersionUID: -8516841965639203796l

Serialized Fields

model

Object model
The "home" UML model of this diagram, not all ModelElements in this graph are in the home model, but if they are added and don't already have a model, they are placed in the "home model". Also, elements from other models will have their FigNodes add a line to say what their model is.


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

Class org.argouml.uml.diagram.use_case.ui.FigActor extends FigNodeModelElement implements Serializable

Class org.argouml.uml.diagram.use_case.ui.FigExtend extends FigEdgeModelElement implements Serializable

Serialized Fields

label

org.tigris.gef.presentation.FigText label
The «extend» label.


condition

org.tigris.gef.presentation.FigText condition
The condition expression.


fg

org.tigris.gef.presentation.FigGroup fg
The group of label and condition.


endArrow

org.tigris.gef.presentation.ArrowHeadGreater endArrow

Class org.argouml.uml.diagram.use_case.ui.FigInclude extends FigEdgeModelElement implements Serializable

Serialized Fields

label

org.tigris.gef.presentation.FigText label

endArrow

org.tigris.gef.presentation.ArrowHeadGreater endArrow

Class org.argouml.uml.diagram.use_case.ui.FigUseCase extends FigNodeModelElement implements Serializable

Serialized Fields

bigPort

FigUseCase.FigMyCircle bigPort
UML use cases do not really have ports, so just define one big one so that users can drag edges to or from any point in the icon.


cover

FigUseCase.FigMyCircle cover
We don't use _bigPort for the actual graphics of the oval. We define an identical oval that sits on top of it.


epSep

org.tigris.gef.presentation.FigLine epSep
The line separating name and extension points.


epVec

org.tigris.gef.presentation.FigGroup epVec
The vector of graphics for extension points (if any). First one is the rectangle for the entire extension points box.


epBigPort

org.tigris.gef.presentation.FigRect epBigPort
The rectangle for the entire extension point box.


highlightedFigText

CompartmentFigText highlightedFigText
Text highlighted by mouse actions on the diagram. Assumed to belong to the extension point compartment.

Class org.argouml.uml.diagram.use_case.ui.FigUseCase.FigMyCircle extends org.tigris.gef.presentation.FigCircle implements Serializable

Class org.argouml.uml.diagram.use_case.ui.SelectionActor extends SelectionWButtons implements Serializable

Class org.argouml.uml.diagram.use_case.ui.SelectionUseCase extends SelectionWButtons implements Serializable

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

Serialized Fields

epCheckBox

JCheckBox epCheckBox
The check box for extension points.


displayLabel

JLabel displayLabel
The label alongside the check box for extension points.


refreshTransaction

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

Class org.argouml.uml.diagram.use_case.ui.UMLUseCaseDiagram extends UMLDiagram implements Serializable

Serialized Fields

actionActor

Action actionActor
Tool to add an actor node.


actionUseCase

Action actionUseCase
Tool to add a use case node.


actionAssociation

Action actionAssociation
Tool to create an association between UML artifacts using a polyedge.


actionAggregation

Action actionAggregation

actionComposition

Action actionComposition

actionUniAssociation

Action actionUniAssociation

actionUniAggregation

Action actionUniAggregation

actionUniComposition

Action actionUniComposition

actionGeneralize

Action actionGeneralize
Tool to create a generalization between UML artifacts using a polyedge.


actionExtend

Action actionExtend
Tool to create an extend relationship between UML use cases using a polyedge.


actionInclude

Action actionInclude
Tool to create an include relationship between UML use cases using a polyedge.


actionDependency

Action actionDependency
Tool to create a dependency between UML artifacts using a polyedge.


actionExtensionPoint

Action actionExtensionPoint

Class org.argouml.uml.diagram.use_case.ui.UseCaseDiagramRenderer extends UmlDiagramRenderer implements Serializable

serialVersionUID: 2217410137377934879l


Package org.argouml.uml.generator

Class org.argouml.uml.generator.GenerationPreferences extends Object implements Serializable

Serialized Fields

headerComment

String headerComment

outputDir

String outputDir


Package org.argouml.uml.generator.ui

Class org.argouml.uml.generator.ui.ClassGenerationDialog extends ArgoDialog implements Serializable

Serialized Fields

classTableModel

ClassGenerationDialog.TableModelClassChecks classTableModel

isPathInModel

boolean isPathInModel

languages

List languages

classTable

JTable classTable

outputDirectoryComboBox

JComboBox outputDirectoryComboBox

languageHistory

int languageHistory
Used to select the next language column in case the "Select All" button is pressed.


Package org.argouml.uml.ui

Class org.argouml.uml.ui.AbstractActionAddModelElement extends UMLAction implements Serializable

Serialized Fields

target

Object target

multiSelect

boolean multiSelect

exclusive

boolean exclusive

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

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

Serialized Fields

target

Object target

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

Serialized Fields

target

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

Object objectToRemove

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

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

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

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

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

Serialized Fields

tagName

String tagName

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

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

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

Serialized Fields

textSource

JTextComponent textSource

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

Serialized Fields

textSource

JTextComponent textSource

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

Class org.argouml.uml.ui.ActionExit extends UMLAction implements Serializable

Serialized Fields

active

boolean active
remember if this form is already active, so that it does not popup twice.

Class org.argouml.uml.ui.ActionFileOperations extends AbstractAction implements Serializable

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

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

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

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

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

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

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

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.ActionNew extends ActionFileOperations implements Serializable

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

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

Serialized Fields

textSource

JTextComponent textSource
The source textcomponent where the caret is positioned


inJGraph

boolean inJGraph
Flag to indicate that the mouse is hovering over the JGraph.

Class org.argouml.uml.ui.ActionRemoveFromModel extends UMLAction implements Serializable

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

Class org.argouml.uml.ui.ActionReopenProject extends ActionFileOperations implements Serializable

Serialized Fields

filename

String filename

Class org.argouml.uml.ui.ActionRevertToSaved extends ActionFileOperations implements Serializable

Class org.argouml.uml.ui.ActionSaveGraphics extends UMLAction implements Serializable

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

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

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

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

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

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

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

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

Serialized Fields

target

Object target

modelElement

Object modelElement

bundle

ResourceBundle bundle

panels

Vector panels

lastRow

int lastRow

listenerList

EventListenerList listenerList

center

JPanel center
The metaclass/property pairs for the third party listener (if we have set one up. We use this when creating a new listener on target change.


buttonPanel

JToolBar buttonPanel

titleLabel

JLabel titleLabel

captionPanel

JPanel captionPanel

smallFont

Font smallFont

Class org.argouml.uml.ui.PropPanelButton2 extends JButton implements Serializable

Class org.argouml.uml.ui.SourcePathDialog extends ArgoDialog implements Serializable

Serialized Fields

srcPathCtrl

SourcePathController srcPathCtrl

srcPathTableModel

SourcePathTableModel srcPathTableModel

srcPathTable

JTable srcPathTable

delButton

JButton delButton

rowSM

ListSelectionModel rowSM

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

Serialized Fields

mOcleEditor

tudresden.ocl.gui.OCLEditor mOcleEditor
The actual editor pane.


mMmeiTarget

Object mMmeiTarget
The current target element.

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

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

Serialized Fields

shouldBeEnabled

boolean shouldBeEnabled

blankPanel

JPanel blankPanel

panels

Hashtable panels

lastPanel

JPanel lastPanel

panelClassBaseName

String panelClassBaseName

target

Object target

listenerList

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

Serialized Fields

notationName

NotationName notationName

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

Serialized Fields

target

org.tigris.gef.presentation.Fig target

shouldBeEnabled

boolean shouldBeEnabled

blankPanel

JPanel blankPanel

panels

Hashtable panels

lastPanel

JPanel lastPanel

stylePanel

StylePanel stylePanel
The stylepanel shown by the tab style.


stylePanelNames

String[] stylePanelNames

listenerList

EventListenerList listenerList

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

Serialized Fields

target

Object target

tableModel

TableModelTaggedValues tableModel

shouldBeEnabled

boolean shouldBeEnabled

table

JTable table

titleLabel

JLabel titleLabel

buttonPanel

JToolBar buttonPanel

Class org.argouml.uml.ui.UMLAction extends AbstractAction implements Serializable

Serialized Fields

iconName

String iconName

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

Serialized Fields

choices

Vector choices
The choices a user has


preSelected

Vector preSelected
The preselected choices


selected

Vector selected
The selected choices.


choicesList

JList choicesList
The GUI list for the choices


selectedList

JList selectedList
The GUI list for the selected choices


addButton

JButton addButton

removeButton

JButton removeButton

okButton

JButton okButton

cancelButton

JButton cancelButton

dialog

JDialog dialog

title

String title

returnValue

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

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

Serialized Fields

checkBoxTarget

Object checkBoxTarget

propertySetName

String propertySetName

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

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

Serialized Fields

comboBoxTarget

Object comboBoxTarget
The taget of the comboboxmodel. This is some UML modelelement


objects

List objects
The list with objects that should be shown in the combobox


selectedObject

Object selectedObject
The selected object


isClearable

boolean isClearable
Flag to indicate if the user may select "" 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 allways a "" in the list with objects so the user has the oportunity to select this to clear the attribute.


propertySetName

String propertySetName
The name of the event with which NSUML sets the attribute that is shown in this comboboxmodel.


fireListEvents

boolean fireListEvents
Flag to indicate wether list events should be fired


buildingModel

boolean buildingModel
Flag to indicate wether the model is being build

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

Serialized Fields

theContainer

UMLUserInterfaceContainer theContainer

theComboBox

JComboBox theComboBox

theButton

JButton theButton

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

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

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

Serialized Fields

model

UMLExpressionModel2 model

notifyModel

boolean notifyModel

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

Serialized Fields

model

UMLExpressionModel2 model

notifyModel

boolean notifyModel

Class org.argouml.uml.ui.UMLInitialValueComboBox extends JComboBox implements Serializable

Serialized Fields

theContainer

UMLUserInterfaceContainer theContainer
Deprecated. 

isUpdating

boolean isUpdating
Deprecated. 
Prevent event storms through not generating unnecessary events.


listItems

String[] listItems
Deprecated. 
Items in the initial value combobox that are available for selection.

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

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

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

Class org.argouml.uml.ui.UMLListCellRenderer extends DefaultListCellRenderer implements Serializable

Class org.argouml.uml.ui.UMLListCellRenderer2 extends 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.

Class org.argouml.uml.ui.UMLListMenuItem extends JMenuItem implements Serializable

Serialized Fields

actionObj

Object actionObj
Deprecated. 

index

int index
Deprecated. 

action

Method action
Deprecated. 

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

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

Serialized Fields

eventName

String eventName

listTarget

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

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.UMLMultiplicityComboBox2 extends UMLSearchableComboBox implements Serializable

Class org.argouml.uml.ui.UMLMultiplicityComboBoxModel extends UMLComboBoxModel2 implements Serializable

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

Serialized Fields

deletePossible

boolean deletePossible

addPossible

boolean addPossible

newPossible

boolean newPossible

popupMenu

JPopupMenu popupMenu

addAction

AbstractActionAddModelElement addAction

newAction

AbstractActionNewModelElement newAction

deleteAction

AbstractActionRemoveElement deleteAction

Class org.argouml.uml.ui.UMLPlainTextDocument extends 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
True if an user edits the document directly (by typing in text)


panelTarget

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


eventName

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

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

Serialized Fields

panelTarget

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


propertySetName

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


buttonGroup

ButtonGroup buttonGroup
The group of buttons

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

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

Serialized Fields

theContainer

UMLUserInterfaceContainer theContainer

theProperty

UMLStimulusActionTextProperty theProperty

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

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

Class org.argouml.uml.ui.UMLTreeCellRenderer extends DefaultTreeCellRenderer implements Serializable


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

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

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

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

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

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

Serialized Fields

classifierComboBox

JComboBox classifierComboBox

classifierComboBoxModel

UMLObjectFlowStateClassifierComboBoxModel classifierComboBoxModel

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

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

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

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


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

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

Class org.argouml.uml.ui.behavior.collaborations.ActionAddMessagePredecessor extends AbstractActionAddModelElement 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 UMLAction 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

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

Serialized Fields

multiplicityComboBox

UMLComboBox2 multiplicityComboBox
The combobox for the multiplicity of this type.

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

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

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

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

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

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

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.UMLClassifierRoleMultiplicityComboBoxModel extends UMLMultiplicityComboBoxModel 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.UMLCollaborationRepresentedClassifierListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.behavior.collaborations.UMLCollaborationRepresentedOperationListModel 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

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 AbstractActionAddModelElement implements Serializable

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

Serialized Fields

choiceClass

Object choiceClass

Class org.argouml.uml.ui.behavior.common_behavior.ActionNewAction 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.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.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.PopupMenuNewAction extends JPopupMenu implements Serializable

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

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

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

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

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

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

Serialized Fields

stimuliSenderScroll

JScrollPane stimuliSenderScroll

stimuliReceiverScroll

JScrollPane stimuliReceiverScroll

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

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

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

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

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

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

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

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

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.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

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.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

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 UMLAction implements Serializable

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

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

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

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 PropPanelState implements Serializable

Serialized Fields

subverticesList

JList subverticesList

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

Serialized Fields

paramScroll

JScrollPane paramScroll

paramListModel

UMLEventParameterListModel paramListModel

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

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

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

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

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

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

Serialized Fields

entryScroll

JScrollPane entryScroll

exitScroll

JScrollPane exitScroll

doScroll

JScrollPane doScroll

internalTransitionsScroll

JScrollPane internalTransitionsScroll

deferrableEventsScroll

JScrollPane deferrableEventsScroll

entryList

JList entryList

exitList

JList exitList

doList

JList doList

internalTransitionList

JList internalTransitionList

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

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

Serialized Fields

incomingScroll

JScrollPane incomingScroll

outgoingScroll

JScrollPane outgoingScroll

containerScroll

JScrollPane containerScroll

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

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

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

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

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 UMLModelElementListModel2 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.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.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

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 AbstractActionAddModelElement implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionNewExtendExtensionPoint 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.ActionSetExtendBase extends UMLAction implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionSetExtendExtension extends UMLAction implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionSetIncludeAddition extends UMLAction implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.ActionSetIncludeBase extends UMLAction implements Serializable

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

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

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

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

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

Class org.argouml.uml.ui.behavior.use_cases.UMLExtendBaseComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLExtendExtensionComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLExtendExtensionPointListModel extends UMLModelElementListModel2 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.UMLIncludeAdditionComboBoxModel extends UMLComboBoxModel2 implements Serializable

Class org.argouml.uml.ui.behavior.use_cases.UMLIncludeBaseComboBoxModel extends UMLComboBoxModel2 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 AbstractActionAddModelElement implements Serializable

Class org.argouml.uml.ui.foundation.core.ActionAddDataType extends AbstractActionNewModelElement 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 UMLAction implements Serializable

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Serialized Fields

assocEndScroll

JScrollPane assocEndScroll
The scrollpane with the associationends.


associationRoleScroll

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


linksScroll

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


modifiersPanel

JPanel modifiersPanel
Panel for abstract/leaf/root

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

Serialized Fields

attributeScroll

JScrollPane attributeScroll

operationScroll

JScrollPane operationScroll

assocEndScroll

JScrollPane assocEndScroll

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

Serialized Fields

typeCombobox

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


associationScroll

JScrollPane associationScroll
The scrollpane showing the association that owns this associationend


multiplicityComboBox

UMLComboBox2 multiplicityComboBox
The combobox for the multiplicity of this type.


navigabilityCheckBox

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


orderingCheckBox

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

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


aggregationRadioButtonpanel

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


changeabilityRadioButtonpanel

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


visibilityRadioButtonPanel

JPanel visibilityRadioButtonPanel
The panel with the radiobuttons to set the visibility (public, protected, private) of this associationend. There is a bug (or inconsistency) with NSUML since NSUML equals this visibility with the visibility of a modelelement. The UML 1.3 spec does not. Since I try to follow the spec as much as possible, the panel is defined here and not in PropPanelModelElement


specificationScroll

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

JScrollPane qualifiersScroll
The list of qualifiers that owns this association end


qualifierButton

PropPanelButton2 qualifierButton
Button to add qualified attributes to this association end


associationLabel

String associationLabel

oppositeEndButton

PropPanelButton2 oppositeEndButton

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

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

Serialized Fields

attributeScroll

JScrollPane attributeScroll

operationScroll

JScrollPane operationScroll

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

Serialized Fields

modifiersPanel

JPanel modifiersPanel

actionNewReception

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


generalizationScroll

JScrollPane generalizationScroll

specializationScroll

JScrollPane specializationScroll

featureScroll

JScrollPane featureScroll

participantScroll

JScrollPane participantScroll

createActionScroll

JScrollPane createActionScroll

instanceScroll

JScrollPane instanceScroll

collaborationScroll

JScrollPane collaborationScroll

classifierRoleScroll

JScrollPane classifierRoleScroll

classifierInStateScroll

JScrollPane classifierInStateScroll

objectFlowStateScroll

JScrollPane objectFlowStateScroll

powerTypeRangeScroll

JScrollPane powerTypeRangeScroll

associationEndScroll

JScrollPane associationEndScroll

parameterScroll

JScrollPane parameterScroll

structuralFeatureScroll

JScrollPane structuralFeatureScroll

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

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

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

Serialized Fields

attributeScroll

JScrollPane attributeScroll

operationScroll

JScrollPane operationScroll

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

Serialized Fields

supplierScroll

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


clientScroll

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

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

Serialized Fields

ownerScopeCheckbox

UMLFeatureOwnerScopeCheckBox ownerScopeCheckbox

ownerComboBox

UMLComboBox2 ownerComboBox

ownerScroll

JScrollPane ownerScroll

visibilityPanel

JPanel visibilityPanel

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

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

Serialized Fields

discriminatorTextField

JTextField discriminatorTextField

parentScroll

JScrollPane parentScroll

childScroll

JScrollPane childScroll

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

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

Serialized Fields

namespaceScroll

JScrollPane namespaceScroll

namespaceComboBox

JComboBox namespaceComboBox

stereotypeComboBox

JComboBox stereotypeComboBox

stereotypeBox

Box stereotypeBox

supplierDependencyScroll

JScrollPane supplierDependencyScroll

clientDependencyScroll

JScrollPane clientDependencyScroll

targetFlowScroll

JScrollPane targetFlowScroll

sourceFlowScroll

JScrollPane sourceFlowScroll

constraintScroll

JScrollPane constraintScroll

namespaceVisibilityPanel

JPanel namespaceVisibilityPanel

specializationCheckBox

JCheckBox specializationCheckBox

elementResidenceScroll

JScrollPane elementResidenceScroll

nameTextField

JTextField nameTextField

namespaceComboBoxModel

UMLModelElementNamespaceComboBoxModel namespaceComboBoxModel

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

Serialized Fields

ownedElementsScroll

JScrollPane ownedElementsScroll

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

Class org.argouml.uml.ui.foundation.core.PropPanelOperation extends PropPanelFeature implements Serializable

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

Serialized Fields

behFeatureScroll

JScrollPane behFeatureScroll

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

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

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

Serialized Fields

multiplicityComboBox

UMLComboBox2 multiplicityComboBox

typeComboBox

UMLComboBox2 typeComboBox

changeabilityRadioButtonPanel

UMLRadioButtonPanel changeabilityRadioButtonPanel

targetScopeCheckBox

UMLCheckBox2 targetScopeCheckBox

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

Class org.argouml.uml.ui.foundation.core.UMLAssociationAssociationRoleListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLAssociationConnectionListModel extends UMLModelElementOrderedListModel2 implements Serializable

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.UMLAssociationEndMultiplicityComboBoxModel extends UMLMultiplicityComboBoxModel 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.UMLClassifierClassifierInStateListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierClassifierRoleListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierCollaborationListModel 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.UMLClassifierInstanceListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierObjectFlowStateListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierParameterListModel extends UMLModelElementOrderedListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierParticipantListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierPowertypeRangeListModel extends UMLModelElementListModel2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLClassifierStructuralFeatureListModel 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.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.UMLDiscriminatorNameDocument extends UMLPlainTextDocument implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLElementOwnershipSpecificationCheckBox extends UMLCheckBox2 implements Serializable

Class org.argouml.uml.ui.foundation.core.UMLFeatureOwnerComboBoxModel extends UMLComboBoxModel2 implements Serializable

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

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.UMLModelElementStereotypeComboBoxModel extends UMLComboBoxModel2 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

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.UMLOperationRaisedSignalsListModel extends UMLModelElementListModel2 implements Serializable

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.UMLStructuralFeatureMultiplicityComboBoxModel extends UMLMultiplicityComboBoxModel 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.ActionSetMetaClass extends UMLAction implements Serializable

Class org.argouml.uml.ui.foundation.extension_mechanisms.PropPanelStereotype extends PropPanelModelElement implements Serializable

Serialized Fields

generalizationScroll

JScrollPane generalizationScroll

specializationScroll

JScrollPane specializationScroll

Class org.argouml.uml.ui.foundation.extension_mechanisms.UMLMetaClassComboBoxModel extends UMLComboBoxModel2 implements Serializable

Serialized Fields

metaClasses

Collection metaClasses


Package org.argouml.uml.ui.model_management

Class org.argouml.uml.ui.model_management.PropPanelModel extends PropPanelPackage implements Serializable

Class org.argouml.uml.ui.model_management.PropPanelPackage extends PropPanelNamespace implements Serializable

Serialized Fields

modifiersPanel

JPanel modifiersPanel

generalizationScroll

JScrollPane generalizationScroll

specializationScroll

JScrollPane specializationScroll

Class org.argouml.uml.ui.model_management.PropPanelSubsystem extends PropPanelPackage implements Serializable

Serialized Fields

featureScroll

JScrollPane featureScroll



ArgoUML © 1996-2004 (20050222)ArgoUML HomepageArgoUML Developers' pageArgoUML Cookbook