This profile contains all elements that can be applied on the model used as the MDA transformation process. These elements are specific to the AndroMDA JSF2 Cartridge component.
ManageableAttribute(Back to Stereotypes) |
Applied on: Attribute of Manageable class |
Modeled on a property. |
FrontEndException(Back to Stereotypes) |
Applied on: Transition |
Modeled on a transition it designates an exception occuring while processing an action, must exit an action state and enter a <<FrontEndView>>. |
FrontEndRegistration(Back to Stereotypes) |
Applied on: UseCase |
Modeled on a use case, this stereotype indicates that this use case is a front-end registration wizard. This will cause a link on the login taking the user to this use case. |
FrontEndNavigation(Back to Stereotypes) |
Applied on: UseCase |
Modeled on a use case, this stereotype indicates that this use case is a front-end navigation element. This will cause this use-case to be included in the menu-model for the application. |
FrontEndSessionObject(Back to Stereotypes) |
Applied on: Class |
These classes can be associated to controllers. They represent objects that persist during the session of the user. For each such session object associated with a controller the controller will have accessor methods for this object. Use a dependency from the controller to the session object to properly model this relationship, a controller can depend on many such session objects; and in the same way a session object might be shared between controllers. |
andromda_manageable_implementation(Back to Tagged Values) |
Applied on: Manageable class |
Added to manageable classes that needs the Impl class to change the default behavior. |
Allowed values for this element:
|
andromda_manageable_attribute_searchable(Back to Tagged Values) |
Applied on: Manageable attribute |
No documentation available |
Allowed values for this element:
|
andromda_manageable_attribute_ignore(Back to Tagged Values) |
Applied on: Manageable attribute |
No documentation available |
Allowed values for this element:
|
andromda_manageable_attribute_display(Back to Tagged Values) |
Applied on: Manageable attribute |
The column representing this entity,by default the first <<Unique>> attribute found is taken but you might want to specify another column yourself. This value is used when one entity has a foreign key to another one and you want to select the value of this foreign key from a combobox and you would like to see a more meaningful label for each option, if no <<Unique>> attribute is found the identifier is used, which isn't very helpful. |
Allowed values for this element:
|
andromda_presentation_web_action_type(Back to Tagged Values) |
Applied on: Transition coming out of an action state carrying the <<FrontEndView>> stereotype |
Modeled on a transition coming out of an action state carrying the <<FrontEndView>> stereotype. Indicates the type of trigger causing the action, possible values are hyperlink, image and form. Form is the default value. |
Allowed values for this element:
|
andromda_presentation_web_action_tablelink(Back to Tagged Values) |
Applied on: Transition coming out of an action state carrying the <<FrontEndView>> stereotype |
Denotes this action applies on the information shown in a tabular format, you will need to specify the name of the table as the value, optionally suffix with a dot and the name of the column. If the column is specified the action will be rendered in that specific column, otherwise a new column will be created for it. |
andromda_presentation_web_action_form_scope(Back to Tagged Values) |
Applied on: Transition coming out of an action state carrying the <<FrontEndView>> stereotype |
This allows one to override the action form scope defined by the formScope namespace property. |
Allowed values for this element:
|
andromda_presentation_web_action_form_reset(Back to Tagged Values) |
Applied on: Transition coming out of an action state carrying the <<FrontEndView>> stereotype |
This allows one to reset all parameter values on the form after the action is invoked (this is useful when you have an action transition coming back to the same page and want the form variables reset to their original values before the action was submitted). |
Allowed values for this element:
|
andromda_presentation_web_action_form_key(Back to Tagged Values) |
Applied on: Transition coming out of an action state carrying the <<FrontEndView>> stereotype |
Denotes the name of the key under which this action's form is stored under. Will only be used when the form is not empty, and is ignored otherwise. This feature is useful when you are doing something that requires more than one action to be executed at the same time and you don't want form key names colliding. |
Allowed values for this element:
|
andromda_presentation_web_action_resettable(Back to Tagged Values) |
Applied on: Transition coming out of an action state carrying the <<FrontEndView>> stereotype |
Set this value to true if you want to be able to reset forms to their initial values (i.e. have a reset button rendered). |
Allowed values for this element:
|
andromda_presentation_web_view_type(Back to Tagged Values) |
Applied on: A <<FrontEndView>> |
Represents the type of view (regular, popup, etc). |
andromda_presentation_web_view_field_type(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Indicates the type of parameter, this information will be used when rendering the views, possible values are: link, multibox, text, textarea, checkbox, radio, select, password, hidden and plaintext. |
Allowed values for this element:
|
andromda_presentation_web_view_field_reset(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Indicates whether or not the field should be reset (to its orginal value) after the execution of the action. This is useful when you want only some of the parameters reset on the form but not all of them. |
Allowed values for this element:
|
andromda_presentation_web_view_field_validwhen(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Additional validation to be performed, specify a commons-validator condition here, see Struts-Validator and go to the section labeled http://struts.apache.org/userGuide/dev_validator.html. The required parentheses will automatically be placed around your condition. |
Allowed values for this element:
|
andromda_presentation_web_view_field_equal(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Allows the comparison between 2 fields, this allows you to specify the other field that a parameter must equal in order to be valid (like when comparing two passwords) |
Allowed values for this element:
|
andromda_presentation_web_view_field_validators(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Custom validation to be performed, you can add one or more of your own validators here. Make sure you add your validator definitions in validator-rules.xml, there is a merge point that can be used to have them automatically inserted. Validator values look like this: myValidator, myValidator(myVar=myArg), myValidator(myVar=myArg,myVar2=myArg2), etc... Specify each validator using a new value, don't specify all of them in a single value. Be careful when using multiple validators with the same 'var' name, the last one found will be used! Normally speaking this should not happen, so try to avoid it (I recommend against using names used by known validators: minlength, test, datePattern, ...) |
Allowed values for this element:
|
andromda_presentation_web_view_field_tablelink(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
The value is of the format table.column where table denotes a parameter coming into the page of type Collection (and containing a tagged value to indicate it is to be displayed as a table); the column part is used to indicate which column of the corresponding table is to be used for linking. The result will be that the specified table column will contain a hyperlink reference to the action on which this parameter resides, this is useful for example, to display a list of persons and view their details by simply clicking on their names in the table (for that to work this parameter's type should be 'link', use the andromda_presentation_web_view_field_type=link tagged value for that). The column name is optional, if you do not specify it the name of the parameter will be assumed. By setting the parameter type you can have any widget rendered into the table. |
Allowed values for this element:
|
andromda_presentation_view_table(Back to Tagged Values) |
Applied on: A collection type parameter going into an action state carrying the <<FrontEndView>> stereotype |
A flag indicating whether or not a parameter should be considered a table. This must be set to true when you wish to display a list of simple types (such as strings) within a table. |
Allowed values for this element:
|
andromda_presentation_view_field_table_identifier_columns(Back to Tagged Values) |
Applied on: A collection type parameter (array is preferred) going out of an action state carrying the <<FrontEndView>> stereotype |
Allows one to define which columns should be considered identifiers when creating an input table, these columns determine how the value is merged with the backing value of the table to be submitted. |
Allowed values for this element:
|
andromda_presentation_view_table_columns(Back to Tagged Values) |
Applied on: A collection type parameter going into an action state carrying the <<FrontEndView>> stereotype |
The collection will be displayed in scrollable tabular format. Each column in this table will be mapped to a property of the object type contained in the collection. So you will need to make sure all objects have accessor methods for the property you list in this tagged value. Properties are separated using a comma ','. More than one value maybe be assigned to this tag, all properties will correctly be resolved. |
Allowed values for this element:
|
andromda_presentation_view_table_pageable(Back to Tagged Values) |
Applied on: A collection type parameter going into an action state carrying the <<FrontEndView>> stereotype |
A flag indicating whether or not a table is "pageable". When a table is flagged as "pageable", support for DB paging is generated. |
Allowed values for this element:
|
andromda_presentation_view_field_required(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Denotes whether or not this is a required field. If a field is required its type will always be checked (you cannot enter a String value when an int is expected) |
Allowed values for this element:
|
andromda_presentation_web_view_field_size(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Denotes the number of columns an input field should have. |
Allowed values for this element:
|
andromda_presentation_web_view_field_rows(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype, while having andromda_presentation_web_view_field_textarea |
Denotes the number of rows on a textarea field. |
Allowed values for this element:
|
andromda_presentation_view_field_readonly(Back to Tagged Values) |
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype |
Indicates the parameter is read only, it's value cannot be entered by the user |
Allowed values for this element:
|
andromda_presentation_action_success_message(Back to Tagged Values) |
Applied on: Transition |
On action completion will have a success message rendered on screen |
Allowed values for this element:
|
andromda_presentation_action_warning_message(Back to Tagged Values) |
Applied on: Transition |
On action completion will have a warning message rendered on screen |
Allowed values for this element:
|
andromda_presentation_view_field_format(Back to Tagged Values) | |||||||||||||||||||||||||||||||||||
Applied on: Parameter coming out of an action state carrying the <<FrontEndView>> stereotype | |||||||||||||||||||||||||||||||||||
The format of this field's value.
(*) The format is specified by the java.text.SimpleDateFormat class from the Java 2 SDK, please
refer to the JavaDoc documentation of that class for more information, this format is case-sensitive
SimpleDateFormat JavaDoc
| |||||||||||||||||||||||||||||||||||
Allowed values for this element:
|
andromda_manageable_table_maxlistsize(Back to Tagged Values) |
Applied on: A class with the <<Manageable>> stereotype |
The maximum number of rows to fetch from the database in a single operation. Tune this parameter to avoid downloading thousands of rows each time, most of the time the user will want to use the search facility to refine the result set |
Allowed values for this element:
|
andromda_manageable_table_pagesize(Back to Tagged Values) |
Applied on: A class with the <<Manageable>> stereotype |
The maximum number of records to show on the same page. |
Allowed values for this element:
|
andromda_manageable_table_displayname(Back to Tagged Values) |
Applied on: A class with the <<Manageable>> stereotype |
"Deprecated" - use ATTRIBUTE_DISPLAY The column representing this entity,by default the first <<Unique>> attribute found is taken but you might want to specify another column yourself. This value is used when one entity has a foreign key to another one and you want to select the value of this foreign key from a combobox and you would like to see a more meaningful label for each option, if no <<Unique>> attribute is found the identifier is used, which isn't very helpful. |
Allowed values for this element:
|
andromda_manageable_table_resolveable(Back to Tagged Values) |
Applied on: Association end to a class with the <<Manageable>> stereotype |
Whether or not the assocation to another entity should be represented using a combobox. You might want to disable this feature if you are sure the target entity can have many different values (meaning a table with lots of records). |
Allowed values for this element:
|
datatype::char(Back to Data Types) |
No documentation available |
datatype::byte(Back to Data Types) |
No documentation available |
datatype::short(Back to Data Types) |
No documentation available |
datatype::int(Back to Data Types) |
No documentation available |
datatype::long(Back to Data Types) |
No documentation available |
datatype::float(Back to Data Types) |
No documentation available |
datatype::double(Back to Data Types) |
No documentation available |
datatype::URL(Back to Data Types) |
No documentation available |
datatype::Time(Back to Data Types) |
No documentation available |