org.mule.api.annotations.display
Annotation Type Placement


@Target(value={PARAMETER,FIELD})
@Documented
@Retention(value=SOURCE)
public @interface Placement

Adds placement information to a field or parameter.


Optional Element Summary
 String group
          A group is a logical way to display one or more variables together.
 int order
          Gives the annotated element a relative order within its this#group().
 String tab
          A tab is a logical way to groups together.
 

order

public abstract int order
Gives the annotated element a relative order within its this#group(). The value provided may be repeated and in that case the order is not guaranteed. The value is relative meaning that an element with order 10 has higher precence than one with value 25.

Default:
1

group

public abstract String group
A group is a logical way to display one or more variables together. If no group is specified then a dafult group is assumed. To place more than one element in the same group, use the exact same values for the this attribute

Default:
""

tab

public abstract String tab
A tab is a logical way to groups together. This attributes specifies the name of the tab in which the annotated element should be displayed. If no tab is specified then a default tab is assumed. To display more than one parameter or field in the same the tab then this value should be exactly the same for all of them.

Default:
""


Copyright © 2010–2013 MuleSoft, Inc.. All rights reserved.