Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Component Attribute (Buckminster)

Revision as of 20:35, 7 October 2006 by Henrik.lindberg.puppet.com (Talk | contribs) (Definition)

< To: Buckminster Project

Definition

A Component Attribute is an attribute of a component that has a value of type Artifact Group. An attribute can be declared in a CSPEC by using one of the elements artifact, group, or action.


Description

A component attribute in Buckminster sort of works as a getter method (using Java/OO terminology), and this is implemented by using one of the clauses artifact, group, or action. An artifact specifies none, one, or several paths to either individual files or directories where directory paths end with a slash (/). A group specifies a list of other attributes (which in turn may be artifacts, actions, or groups (recursively)). Finally, action, that can produce a path structure on-the-fly returned as the value of the attribute.

Attribute names must be unique within a component.

Refrences to Component Attributes

The group and action attributes can reference attributes. References to attributes in the same component are said to be local, and to attributes in other components are said to be external. Local reference refers to the name of the attribute. External references refers to the name of a component dependency, and the name of one of that component's public attributes.

Protection

Component Attributes can be public or private. The private attributes can only be used within one component specification. The publc attributes can be used from other components.

Todo

Please add examples

Back to the top