Component Properties

You can modify an object's properties from its property sheet. To open a component property sheet, double-click its diagram symbol or its Browser entry in the Components folder. The following sections detail the property sheet tabs that contain the properties most commonly entered for components.

The General Tab contains the following properties:

Property

Description

Name

Specifies the name of the item, which should be clear and meaningful, and should convey the item's purpose to non-technical users.

Code

Specifies the technical name of the object, which is used for generating code or scripts.

Comment

Descriptive comment for the object.

Stereotype

Extends the semantics of the object beyond the core UML definition. The following standard stereotypes are available by default:
  • <<Document>> - Generic file that is not a source file or an executable

  • <<Executable>> - Program file that can be executed on a computer system

  • <<File>> - Physical file in the context of the system developed

  • <<Library>> - Static or dynamic library file

  • <<Table>> - Database table

You can modify an existing stereotype or create a new one in an object language or extension file.

Type

Specifies the type of component. You can choose between a standard component (if no specific implementation has been defined) or a specific component, such as EJB, JSP, Servlet or ASP.NET (see Working with Web Services).

To display the type of a component, select Tools > Display Preferences and select the Type option in the component category.



Whenever you change the type of a component after creation, the modification triggers a conversion from one type to another: all relevant interfaces, classes, and dependencies are automatically created and initialized. Such a change will affect some property sheets, the Check Model feature, and code generation.

For example, if you convert a standard component to an EJB Entity Bean, it will automatically generate a Bean class and a primary key class of the EJB, as well as home and component interfaces. If you convert an EJB to a standard component, the classes and interfaces of the EJB are preserved in the model.

Transaction

Used for a component with transactional behavior.

Class diagram

Specifies a diagram with classes and interfaces linked to the component, which is automatically created and updated (see Creating a Class Diagram for a Component).

Web service

Indicates that the component is a Web service.

Interfaces Tab

Each component uses one or several interfaces. It also uses or requires interfaces from other components. These interfaces are visible entry points and services that a component makes available to other software components and classes. If dependencies among components originate from interfaces, these components can be replaced by other components that use the same interfaces.

The Interfaces tab lists interfaces exposed and implemented by the component. Use the Add Objects tool to add existing interfaces or the Create an Object tool to create new interfaces for the component.

Component interfaces are shown as circles linked to the component side by an horizontal or a vertical line:



The symbol of a component interface is visible if you have selected the Interface symbols display preference from Tools > Display Preferences. The symbol of an interface can be moved around the component symbol, and the link from the component to the interface can be extended.

If you are working with EJB, some of the interfaces have a special meaning (local interface, remote interface, etc...). For more information, see Defining Interfaces and Classes for EJBs.

Classes Tab

A component usually uses one implementation class as the main class, while other classes are used to implement the functions of the component. Typically, a component consists of many internal classes and packages of classes but it may also be assembled from a collection of smaller components.

The Classes tab lists classes contained within the component. Use the Add Objects tool to add existing classes or the Create an Object tool to create new classes for the component.

Classes are not visible in the component diagram.

The following tabs list objects associated with the component: