HOME

TheInfoList



OR:

Glossary of
Unified Modeling Language The Unified Modeling Language (UML) is a general-purpose, developmental modeling language in the field of software engineering that is intended to provide a standard way to visualize the design of a system. The creation of UML was originally ...
(UML) terms provides a compilation of ''terminology'' used in all versions of ''UML'', along with their ''definitions''. Any notable distinctions that may exist between versions are noted with the individual entry it applies to.


A

* Abstract - An indicator applied to a classifier (e.g.,
actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), l ...
, class,
use case In software and systems engineering, the phrase use case is a polyseme with two senses: # A usage scenario for a piece of software; often used in the plural to suggest situations where a piece of software may be useful. # A potential scenari ...
) or to some features of a classifier (e.g., a class's operations) showing that the feature is incomplete and is intended not to be instantiated, but to be specialized by other definitions. *
Abstract class In programming languages, an abstract type is a type in a nominative type system that cannot be instantiated directly; a type that is not abstract – which ''can'' be instantiated – is called a ''concrete type''. Every instance of an abstra ...
- A class that does not provide a complete declaration, perhaps because it has no implementation method identified for an operation. By declaring a class as ''abstract'', one intends to prohibit direct instantiation of the class. An abstract class cannot directly instantiate objects; it must be inherited from before it can be used. *
Abstract data type In computer science, an abstract data type (ADT) is a mathematical model for data types. An abstract data type is defined by its behavior (semantics) from the point of view of a '' user'', of the data, specifically in terms of possible values, po ...
* Abstract operation - Unlike attributes, class operations can be abstract, meaning that there is no provided implementation. Generally, a class containing an abstract operation should be marked as an abstract class. An Operation must have a method supplied in some specialized Class before it can be used. * Abstraction is the process of picking out common features and deriving essential characteristics from objects and
procedure Procedure may refer to: * Medical procedure * Instructions or recipes, a set of commands that show how to achieve some result, such as to prepare or make something * Procedure (business), specifying parts of a business process * Standard operat ...
entities An entity is something that exists as itself, as a subject or as an object, actually or potentially, concretely or abstractly, physically or not. It need not be of material existence. In particular, abstractions and legal fictions are usually r ...
that distinguish it from other kinds of entities. * Action - An action is the fundamental unit of behaviour specification and represents some transformation or processing in the modeled system, such as invoking a method of a class or a sub activity * Action sequence - * Action state - * Action steps - * Activation - the time during which an object has a method executing. It is often indicated by a thin box or bar superimposed on the Object's lifeline in a Sequence Diagram *
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
- a diagram that describes procedural logic, business process or work flow. An activity diagram contains a number of Activities and connected by Control Flows and Object Flows. * Active class - a class defining active objects * Active object - an object running under its own
thread Thread may refer to: Objects * Thread (yarn), a kind of thin yarn used for sewing ** Thread (unit of measurement), a cotton yarn measure * Screw thread, a helical ridge on a cylindrical fastener Arts and entertainment * ''Thread'' (film), 2016 ...
* Activity - carrying out behaviour in a
State machine diagram A state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states; sometimes, this is indeed the case ...
** Do - a type of Activity which may be interrupted, as opposed to normal Activities which may not be interrupted ** Internal - an Activity that is executed within a State *** Entry - an Activity that is executed when a State is entered *** Exit - an Activity that is executed when a State is exited * Activity final - the end point of an
activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
. When a thread reaches an Activity Final node, all the threads of the activity terminate. (Contrast with Flow Final node, which marks the end of one thread.) *
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), l ...
- a
role A role (also rôle or social role) is a set of connected behaviors, rights, obligations, beliefs, and norms as conceptualized by people in a social situation. It is an expected or free or continuously changing behavior and may have a given indivi ...
that a user takes when invoking a
use case In software and systems engineering, the phrase use case is a polyseme with two senses: # A usage scenario for a piece of software; often used in the plural to suggest situations where a piece of software may be useful. # A potential scenari ...
. Also see actor modeling. *
Aggregation Aggregation may refer to: Business and economics * Aggregation problem (economics) * Purchasing aggregation, the joining of multiple purchasers in a group purchasing organization to increase their buying power * Community Choice Aggregation, the ...
- 1. a special type of association used to represent a stronger relationship between two classes than a regular association; typically read as "owns a", as in, "Class A owns a Class B". A
hierarchy A hierarchy (from Greek: , from , 'president of sacred rites') is an arrangement of items (objects, names, values, categories, etc.) that are represented as being "above", "below", or "at the same level as" one another. Hierarchy is an important ...
of classes where the child object may or may not continue to exist if the parent object is destroyed; see 'composition'. 2. An aggregation is a structural relationship that specifies that one class represents a large thing which constitute of smaller things and represents "has-a" relationship. * Artifact - items that model physical pieces of information in your system, such as a user's manual, training material, or password file * Association - 1. a relationship with 2 or more ends, where each end is on a class (or other classifier). Each end is called a Role, and may have a role name, Multiplicity, and may be Navigable. 2. An association is a structural relationship that specifies that the objects of one thing are connected with the objects of another. * Association class - a class that describes an association. * Asynchronous - The sender of an asynchronous message does not wait for a response. * Attribute - a significant piece of data owned by a Class, often containing values describing each instance of the class. Besides the attribute name and a slot for the attribute value, an attribute may have specified Visibility, Type, Multiplicity, Default value, and Property-string.


B

* Block - Block is a place where all the aggregates are collected at one place * BPM - Business Process Model, is used to define the process followed by the business. It is a high level design for the business process. * BPMN - Business Process Modelling Notations, are used to define the process on paper with the help of predefined shapes of UML.


C

* Call - * Cardinality - the current number of occurrences of a Property. The cardinality must be a value that is allowed by the multiplicity * Child - * Class - the primary declarative construct of
object-oriented programming Object-oriented programming (OOP) is a programming paradigm based on the concept of " objects", which can contain data and code. The data is in the form of fields (often known as attributes or ''properties''), and the code is in the form of ...
; a cohesive unit of Attributes and Operations; a compile-time template for an Object *
Class diagram In software engineering, a class diagram in the Unified Modeling Language (UML) is a type of static structure diagram that describes the structure of a system by showing the system's classes, their attributes, operations (or methods), and the r ...
- a type of static structure diagram that describes the structure of a system by showing the system's classes, their attributes and the relationships between the classes. * Classifier - a category of UML elements that have some common features, such as attributes or methods. * Client - * Collaboration - A collaboration is a society of classes, interfaces and other elements that work together to provide some cooperative behavior that is bigger than the sum of its parts. * Communication diagram * Component - A component represents a software module (source code, binary code, executable, DLL, etc.) with a well-defined interface. The interface of a component is represented by one or several interface elements that the component provides. Components are used to show compiler and run-time dependencies, as well as interface and calling dependencies among software modules. They also show which components implement a specific class. * Component diagram * Composite structure diagram *
Composition Composition or Compositions may refer to: Arts and literature * Composition (dance), practice and teaching of choreography *Composition (language), in literature and rhetoric, producing a work in spoken tradition and written discourse, to include ...
- a specific type of relationship describing how one Object is ''composed of'' another Object; a form of
Aggregation Aggregation may refer to: Business and economics * Aggregation problem (economics) * Purchasing aggregation, the joining of multiple purchasers in a group purchasing organization to increase their buying power * Community Choice Aggregation, the ...
where the child object is destroyed if the parent object is destroyed. * Condition - * Connection - * Constraint - natural language, programming language or Object Constraint Language boolean condition which may not be false if a Class is to be considered valid * Containment - containment by value and containment by reference. Containment by value implies that an object contains another object; containment by reference implies that an object contains a pointer to another object.


D

* Decision - a point in an
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
where a Flow splits into several, mutually exclusive, Guarded flows. A Merge marks the end of the optional behaviour started by the Decision * Dependency - a dependency exists between two defined elements if a change to the definition of one would result in a change to the other. In UML this is indicated by a line pointing from the dependent to the independent element. * Deployment diagram * Derived property - a property that can be calculated or inferred from other properties * Diagram - a visual representation of a subset of features of a UML Model * Directed relationship - * Domain - a logical grouping that explicitly declares a rule which defines ownership of objects based upon some
type Type may refer to: Science and technology Computing * Typing, producing text via a keyboard, typewriter, etc. * Data type, collection of values used for computations. * File type * TYPE (DOS command), a command to display contents of a file. * Ty ...
or
property Property is a system of rights that gives people legal control of valuable things, and also refers to the valuable things themselves. Depending on the nature of the property, an owner of property may have the right to consume, alter, share, r ...
.


E

* Edge - a synonym for Flow * Encapsulation - a means to bind together code and the data it uses. It is the basis of object oriented programming. * Entity - *
Enumeration An enumeration is a complete, ordered listing of all the items in a collection. The term is commonly used in mathematics and computer science to refer to a listing of all of the elements of a set. The precise requirements for an enumeration ( ...
- a set of constant values for a new data type * Event - when it occurs on an Object it may cause a Transition in a
State machine diagram A state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states; sometimes, this is indeed the case ...
* Expansion region - a set of Actions in an
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
that occur once for each of a collection of input Tokens to the Expansion Region * Extend - a means to use a class as a starting point for creation of a new class. The new class inherits all of the attributes, properties, and methods of the class it extends. * Exception -


F

* File - * Final state - the
state State may refer to: Arts, entertainment, and media Literature * ''State Magazine'', a monthly magazine published by the U.S. Department of State * ''The State'' (newspaper), a daily newspaper in Columbia, South Carolina, United States * '' Our ...
at which an object ceases to exist * Flow - a navigational connection between two Actions * Flow Final - the point at which a Flow ends without ending the complete Activity * Fork - a point in an
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
where a Flow of logic splits into several concurrent Flows (Threads) * Found Message - starting point for a
Sequence diagram A sequence diagram or system sequence diagram (SSD) shows process interactions arranged in time sequence in the field of software engineering. It depicts the processes involved and the sequence of messages exchanged between the processes needed ...


G

*
Generalization A generalization is a form of abstraction whereby common properties of specific instances are formulated as general concepts or claims. Generalizations posit the existence of a domain or set of elements, as well as one or more common character ...
- a relationship between a ''specific classifier'' (typically a class) to a more ''general classifier'' asserting that the ''general classifer'' contains common features among both the ''specific classifier'' and the ''general classifier''. Features include, for example, properties, and constraints. The use of generalization is often logically restricted to cases where the specific classifier is a "kind-of" or "sort-of" the general classifier: for example, a Boxer is a "kind-of" Dog. When the classifiers involved are
software engineering Software engineering is a systematic engineering approach to software development. A software engineer is a person who applies the principles of software engineering to design, develop, maintain, test, and evaluate computer software. The term ' ...
classes, generalization usually involves reusing code; it is often implemented using
inheritance Inheritance is the practice of receiving private property, titles, debts, entitlements, privileges, rights, and obligations upon the death of an individual. The rules of inheritance differ among societies and have changed over time. Offici ...
, where the more specific code reuses the more general code. * Generalization Tree - Several specialized classifiers may point to the same general classifier, forming a generalization tree, where the general classifer contains common features shared by all the specialized versions. As generalization is a relationship, it is possible for a classifer to participate in several generalizations, often being on the specific end or on the general end, forming a
directed acyclic graph In mathematics, particularly graph theory, and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That is, it consists of vertices and edges (also called ''arcs''), with each edge directed from one v ...
(DAG) (i.e., no loops). * Generic - * Guard - a boolean test that must be satisfied for a Flow of an
activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
or a Transition of a
state machine diagram A state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states; sometimes, this is indeed the case ...
to be allowed to start


H

* Hierarchy - * History pseudostate - points to the initial
state State may refer to: Arts, entertainment, and media Literature * ''State Magazine'', a monthly magazine published by the U.S. Department of State * ''The State'' (newspaper), a daily newspaper in Columbia, South Carolina, United States * '' Our ...
of an object where no previous state history was saved


I

* Inheritance - where a new more specific Class derives part of its definition from an existing more general Class * Initial node - the start point of an
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
* Initial pseudostate - points to the initial State of an Object * Instance - An instance is a concrete manifestation of an abstraction to which a set of operations can be applied and which has a state that stores the effect of the operation. * Interaction diagram * Interaction overview diagram * Interaction Frame - a section of a
Sequence diagram A sequence diagram or system sequence diagram (SSD) shows process interactions arranged in time sequence in the field of software engineering. It depicts the processes involved and the sequence of messages exchanged between the processes needed ...
, divided into fragments, which is subject to an algorithmic Operator such as iteration, parallelism or optionality. *
Interface Interface or interfacing may refer to: Academic journals * ''Interface'' (journal), by the Electrochemical Society * '' Interface, Journal of Applied Linguistics'', now merged with ''ITL International Journal of Applied Linguistics'' * '' Int ...
- a defined communication boundary.


J

* Join - a point in an
activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
where several concurrent flows (
threads Thread may refer to: Objects * Thread (yarn), a kind of thin yarn used for sewing ** Thread (unit of measurement), a cotton yarn measure * Screw thread, a helical ridge on a cylindrical fastener Arts and entertainment * ''Thread'' (film), 2016 ...
) synchronize, waiting until all are complete before continuing with a single flow


L

* Lifeline - indicates a participating Object or Part in a
sequence diagram A sequence diagram or system sequence diagram (SSD) shows process interactions arranged in time sequence in the field of software engineering. It depicts the processes involved and the sequence of messages exchanged between the processes needed ...
. The Lifeline may show activation, Object creation, and Object deletion. * Link - a relationship between objects. While an Object is an instantiation of a Class a Link can be seen as an instantiation of an Association.


M

* Merge - a point in an
activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
marking the end of the optional behavior started by a Decision * Message - a signal from one object (or similar entity) to another, often with parameters. Often implemented as a call to a Method, including the Constructor and Destructor, of an Object in a
Sequence diagram A sequence diagram or system sequence diagram (SSD) shows process interactions arranged in time sequence in the field of software engineering. It depicts the processes involved and the sequence of messages exchanged between the processes needed ...
. * Metadata - * Metamodel - *
Metamodeling A metamodel or surrogate model is a model of a model, and metamodeling is the process of generating such metamodels. Thus metamodeling or meta-modeling is the analysis, construction and development of the frames, rules, constraints, models and ...
- * Metamodeling technique - *
Meta-Object Facility The Meta-Object Facility (MOF) is an Object Management Group (OMG) standard for model-driven engineering. Its purpose is to provide a type system for entities in the CORBA architecture and a set of interfaces through which those types can be crea ...
- * Method - * Modeling - ** Domain - the representation of real world conceptual entities ** Design - the representation of software Classes and Interfaces ** Dynamic - use of Interaction diagrams to describe collaborations and behavior * model - *
Model-driven architecture Model Driven Architecture (MDA) is a software design approach for the development of software systems. It provides a set of guidelines for the structuring of specifications, which are expressed as models. Model Driven Architecture is a kind of doma ...
(MDA) - * Multiplicity - 1. A specification of the number of possible occurrences of a property, or the number of allowable elements that may participate in a given relationship. In UML 1.x, it was also possible to have a discrete list of values, but this was eliminated in UML 2.0. 2. It specifies how many objects may be connected across an instance of an association which is written as a range of values (like 1..*). ** Mandatory - A required multiplicity, the lower bound is at least one, usually 1..1 or 1 ** Optional - The lower bound is at most zero, usually, 0..1 ** Many - A multiplicity with no upper limit, either 0..* or * ** Forbidden - No elements allowed, 0..0 (in UML 2.2)


N

*
Namespace In computing, a namespace is a set of signs (''names'') that are used to identify and refer to objects of various kinds. A namespace ensures that all of a given set of objects have unique names so that they can be easily identified. Namespaces ...
- a context in which an
identifier An identifier is a name that identifies (that is, labels the identity of) either a unique object or a unique ''class'' of objects, where the "object" or class may be an idea, physical countable object (or class thereof), or physical noncountable ...
exists. * Navigable - the ability for objects of a Class at one end of an Association to retrieve Objects from the other end. Associations need not be navigable. * Node - * Note - It is an explanatory part of UML models. A note is a symbol for rendering constraints and comments attached to an element or collection of elements.


O

* Object - a runtime instance of a Class. Objects are rarely shown on diagrams (because there are usually too many) unless they are used to illustrate some scenario, test, etc. Such Objects are often shown with the Attributes of the Class populated with sample data *
Object Constraint Language The Object Constraint Language (OCL) is a declarative language describing rules applying to Unified Modeling Language (UML) models developed at IBM and is now part of the UML standard. Initially, OCL was merely a formal specification language e ...
(OCL) - a declarative language for describing rules and constraints that apply to UML models * Object diagram * Operation - the signature of a Method of a Class; consists of the Operation Name, Visibility, Parameter list, Return Type, and Property-string * Operator - an algorithmic feature of Interaction Frame that defines the behavior of that frame. Examples include: ** alt - multiple alternatives each with a guard condition. Only one alternative can be true. ** critical - a fragment within a larger parallel Interaction Frame that when entered suspends the interleaving of events from the other fragments. ** loop - the fragment iterates according to a guard condition. ** neg - an invalid interaction. ** opt - single alternative with a guard condition. ** par - each fragment is run in parallel. ** ref - an interaction defined in another diagram. ** strict - a fragment with the ordering of reception events across multiple lifelines follow strictly their graphical arrangement.


P

* Package - A package is a collection or grouping of related classes or of classes with related functionality. * Package diagram * Parameter - data passed in a Message to be used within the Method * Partition - section of an
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
or
Sequence diagram A sequence diagram or system sequence diagram (SSD) shows process interactions arranged in time sequence in the field of software engineering. It depicts the processes involved and the sequence of messages exchanged between the processes needed ...
occupied by a single Class or Object * Pin - a parameter of an Action * Polymorphism - the ability of Objects belonging to different Classes to respond to Operations of the same name, each one according to the right Class-specific behaviour * Profile - Provides a generic extension mechanism for building UML models. Other extension mechanisms include
stereotype In social psychology, a stereotype is a generalized belief about a particular category of people. It is an expectation that people might have about every person of a particular group. The type of expectation can vary; it can be, for exampl ...
s. * Property - an Attribute or an Association * Property-string - a qualifier for Attributes and Operations. Examples include , , .


Q

* Qualified association - tightens the multiplicity or
role A role (also rôle or social role) is a set of connected behaviors, rights, obligations, beliefs, and norms as conceptualized by people in a social situation. It is an expected or free or continuously changing behavior and may have a given indivi ...
of an association between 2 classes by dividing the set of objects into subsets based on a value of the qualifier—an attribute of the target objects, association objects, or some a derived attribute of the target or association objects.


R

* Realization - Realization shows the relationship between an Interface and the class that provides the implementation for the interface. * Reference - * Request - The input to the system for finding the related abstracts from different operations (Add, Del, Mod, Inq.). Request could be for only one for every operation * Response - The output of the "Request". Response could be 1 or more for a single request. * Relation - * Return - a reply that may be issued from a Method following a Message * Role - description of the part played in an Association by one of the Classes in the Association


S

*
Scenario In the performing arts, a scenario (, ; ; ) is a synoptical collage of an event or series of actions and events. In the ''commedia dell'arte'', it was an outline of entrances, exits, and action describing the plot of a play, and was literally p ...
- a narrative describing foreseeable interactions * Self-call - a Message from an Object to one of its own Methods *
Sequence diagram A sequence diagram or system sequence diagram (SSD) shows process interactions arranged in time sequence in the field of software engineering. It depicts the processes involved and the sequence of messages exchanged between the processes needed ...
- describes the Messages sent between a number of participating Objects in a Scenario * Signal - an Event which can occur in an
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
in three different ways: as a Time Signal, as a signal which an Activity can listen for and a signal which an Activity can send * State - an Object exists at one of the
State State may refer to: Arts, entertainment, and media Literature * ''State Magazine'', a monthly magazine published by the U.S. Department of State * ''The State'' (newspaper), a daily newspaper in Columbia, South Carolina, United States * '' Our ...
s described in a
State machine diagram A state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states; sometimes, this is indeed the case ...
. A state encompasses all the properties of the object along with the values of each of these properties. * State diagram - synonym for
State machine diagram A state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states; sometimes, this is indeed the case ...
*
State machine diagram A state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states; sometimes, this is indeed the case ...
- describes the lifetime behaviour of a single Object in terms of in which State it exists and the Transition between those States * Static attribute - an attribute that does not relate to a specific object but is at class level; that is, an attribute that is common among all objects of that class * Static modeling - use of
class diagram In software engineering, a class diagram in the Unified Modeling Language (UML) is a type of static structure diagram that describes the structure of a system by showing the system's classes, their attributes, operations (or methods), and the r ...
s to describe structure * Static operation - an
operation Operation or Operations may refer to: Arts, entertainment and media * ''Operation'' (game), a battery-operated board game that challenges dexterity * Operation (music), a term used in musical set theory * ''Operations'' (magazine), Multi-Man ...
that does not relate to a specific object but is at class level *
Stereotype In social psychology, a stereotype is a generalized belief about a particular category of people. It is an expectation that people might have about every person of a particular group. The type of expectation can vary; it can be, for exampl ...
- a notation allowing the extension of UML symbols. Some are defined within Profiles. Examples of predefined UML stereotypes are
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), l ...
, Exception, Powertype and
Utility As a topic of economics, utility is used to model worth or value. Its usage has evolved significantly over time. The term was introduced initially as a measure of pleasure or happiness as part of the theory of utilitarianism by moral philosoph ...
. * Structure diagram * Superstate - construct allowing several States which share common Transitions and Internal Activities *
Swim lane A swimlane (as in swimlane diagram) is used in process flow diagrams, or flowcharts, that visually distinguishes job sharing and responsibilities for sub-processes of a business process. Swimlanes may be arranged either horizontally or vertically. ...
- synonym for Partition * System model - The logical UML model being represented through one or more UML diagrams


T

* Tagged values - In extensibility * Template - a Class that accepts a compile-time parameter defining the Type to be used within the Class; often to implement Collections of any Type *
Thread Thread may refer to: Objects * Thread (yarn), a kind of thin yarn used for sewing ** Thread (unit of measurement), a cotton yarn measure * Screw thread, a helical ridge on a cylindrical fastener Arts and entertainment * ''Thread'' (film), 2016 ...
- a sequence of instructions whose execution is being scheduled by the Operating System and may run in parallel with other threads * Timing Diagram * Token - symbolises the Thread of an
Activity diagram Activity diagrams are graphical representations of workflows of stepwise activities and actions with support for choice, iteration and concurrency. In the Unified Modeling Language, activity diagrams are intended to model both computational and o ...
* Transition - 1. movement from one State to another in a
State machine diagram A state diagram is a type of diagram used in computer science and related fields to describe the behavior of systems. State diagrams require that the system described is composed of a finite number of states; sometimes, this is indeed the case ...
. The transition is specified by its ''Trigger-signature uardActivity'' 2. a relationship between two states indicating that when a specific event occurs and specific conditions are satisfied an object in the first state will perform certain actions and enter the second state. * Type - the options are: an elementary Value type such as integer, string, date, or Boolean or a Reference type defined in a Class


U

*
Use case In software and systems engineering, the phrase use case is a polyseme with two senses: # A usage scenario for a piece of software; often used in the plural to suggest situations where a piece of software may be useful. # A potential scenari ...
- A use case can be defined as a sequence of actions, including variations, that the system can execute and that produce an observable result which has some value for an actor that interacts with the system *
Use case diagram A use case diagram is a graphical depiction of a user's possible interactions with a system. A use case diagram shows various use cases and different types of users the system has and will often be accompanied by other types of diagrams as well. Th ...
* Uses dependency -


V

* Visibility - the availability for access of elements in a model. Typically used to limit the visibility of features defined by a Class (e.g., attributes, operations). When applied to features defined by a class, the standard options are: ** private (-): available only within the Class in which it was defined. This is the most limited visibility ** protected (#): available within any subclass of this class and within the package which directly contains the defining Class ** package (~): available only within the Package which directly contains the defining Class ** public (+): available to any Class that can see the defining Class. This is the least limited visibility.


W

* Workflow - Set of sequential steps which must be done to get a job done


X

* XMI - An OMG standard for exchanging metadata information via Extensible Markup Language (XML). * xUML - an UML profile or generic extension mechanism for customizing Unified Modeling Language (UML).


See also

*
Automatic programming In computer science, the term automatic programming identifies a type of computer programming in which some mechanism generates a computer program to allow human programmers to write the code at a higher abstraction level. There has been little ...
*
Class-Responsibility-Collaboration card Class-responsibility-collaboration (CRC) cards are a brainstorming tool used in the design of object-oriented software. They were originally proposed by Ward Cunningham and Kent Beck as a teaching tool but are also popular among expert designers ...
(CRC) *
Data mapping In computing and data management, data mapping is the process of creating data element mappings between two distinct data models. Data mapping is used as a first step for a wide variety of data integration tasks, including: * Data transformat ...
*
Data transformation In computing, data transformation is the process of converting data from one format or structure into another format or structure. It is a fundamental aspect of most data integrationCIO.com. Agile Comes to Data Integration. Retrieved from: http ...
*
Domain Specific Language A domain-specific language (DSL) is a computer language specialized to a particular application domain. This is in contrast to a general-purpose language (GPL), which is broadly applicable across domains. There are a wide variety of DSLs, ranging f ...
(DSL) * Domain-specific modelling (DSM) *
Eclipse An eclipse is an astronomical event that occurs when an astronomical object or spacecraft is temporarily obscured, by passing into the shadow of another body or by having another body pass between it and the viewer. This alignment of three ce ...
br>GMT Project
* Generative programming (GP) *
Intentional Programming In computer programming, Intentional Programming is a programming paradigm developed by Charles Simonyi that encodes in software source code the precise ''intention'' which programmers (or users) have in mind when conceiving their work. By using ...
(IP) *
KM3 KM3 or Kernel Meta Meta Model is a neutral computer language to write metamodels and to define Domain Specific Languages. KM3 has been defined at INRIA and is available under the Eclipse platform. References ...
*
Language oriented programming Language-oriented programming (LOP) is a software-development paradigm where "language" is a software building block with the same status as objects, modules and components, and rather than solving problems in general-purpose programming languages ...
(LOP) *
List of UML tools A ''list'' is any set of items in a row. List or lists may also refer to: People * List (surname) Organizations * List College, an undergraduate division of the Jewish Theological Seminary of America * SC Germania List, German rugby unio ...
*
Model-based testing Model-based testing is an application of model-based design for designing and optionally also executing artifacts to perform software testing or system testing. Models can be used to represent the desired behavior of a system under test (SUT), ...
(MBT) *
Model Driven Engineering Model-driven engineering (MDE) is a software development methodology that focuses on creating and exploiting domain models, which are conceptual models of all the topics related to a specific problem. Hence, it highlights and aims at abstract re ...
(MDE) * Model Transformation Language (MTL) *
Modeling language A modeling language is any artificial language that can be used to express information or knowledge or systems in a structure that is defined by a consistent set of rules. The rules are used for interpretation of the meaning of components in the ...
* Modeling perspectives * MOF Queries/Views/Transformations (QVT) *
Object-oriented analysis and design Object-oriented analysis and design (OOAD) is a technical approach for analyzing and designing an application, system, or business by applying object-oriented programming, as well as using visual modeling throughout the software development proces ...
(OOAD) *
Semantic spectrum The semantic spectrum (sometimes referred to as the ontology spectrum or the smart data continuum or semantic precision) is a series of increasingly precise or rather semantically expressive definitions for data elements in knowledge representatio ...
*
Semantic translation Semantic translation is the process of using semantic information to aid in the translation of data in one representation or data model to another representation or data model. Semantic translation takes advantage of semantics that associate meani ...
*
Software factory A software factory is a structured collection of related software assets that aids in producing computer software applications or software components according to specific, externally defined end-user requirements through an assembly process. A s ...
*
Transformation language A transformation language is a computer language designed to transform some input text in a certain formal language into a modified output text that meets some specific goal. Program transformation systems such as Stratego/XT, TXL, Tom, DMS, ...
(TL) *
UML The Unified Modeling Language (UML) is a general-purpose, developmental modeling language in the field of software engineering that is intended to provide a standard way to visualize the design of a system. The creation of UML was originally ...
* UML tool *
Vocabulary-based transformation In metadata, a vocabulary-based transformation (VBT) is a transformation aided by the use of a semantic equivalence statements within a controlled vocabulary. Many organizations today require communication between two or more computers. Althoug ...
*
XML transformation language An XML transformation language is a programming language designed specifically to transform an ''input'' XML document into an ''output'' document which satisfies some specific goal. There are two special cases of transformation: * XML to XML: ...
(XTL)


Sources

* * {{DEFAULTSORT:Glossary Of Unified Modeling Language Terms Unified Modeling Language
Unified Modeling Language The Unified Modeling Language (UML) is a general-purpose, developmental modeling language in the field of software engineering that is intended to provide a standard way to visualize the design of a system. The creation of UML was originally ...
Wikipedia glossaries using unordered lists