Package com.microstrategy.web.objects.rw
Interface RWFormatProperty
-
- All Superinterfaces:
WebProperty
public interface RWFormatProperty extends WebProperty
RW Format Property objects are extensions of the WebProperty objects. In addition to the WebProperties functionality they support isCopyable and isDefalutCopyable flags. The first one indicates that the property shall be copied when we copy one unit format to another. The second flag indicates that this property shall be copied when we copy unit format to control default format. By definition, all copyable properties are also default-copyable.- Since:
- MicroStrategy Web 8.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_COPYABLE_ON_SINGLE_CLICK
Possible value of default copying restriction
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDefaultCopyingRestriction()
This method specifies restrictions, if any, that should be honored if the property happens to be default copyable.boolean
isCopyable()
Returns true if this property is copyable.boolean
isDefaultCopyable()
Returns true if this property is default-copyable.-
Methods inherited from interface com.microstrategy.web.objects.WebProperty
getDefaultValue, getID, getName, getType, getUseDefault, getValue, isDirty, save, save, setUseDefault, setValue
-
-
-
-
Field Detail
-
DEFAULT_COPYABLE_ON_SINGLE_CLICK
static final int DEFAULT_COPYABLE_ON_SINGLE_CLICK
Possible value of default copying restriction- See Also:
- Constant Field Values
-
-
Method Detail
-
isCopyable
boolean isCopyable()
Returns true if this property is copyable.- Returns:
- true if this property is copyable.
-
isDefaultCopyable
boolean isDefaultCopyable()
Returns true if this property is default-copyable.- Returns:
- true if this property is default-copyable.
-
getDefaultCopyingRestriction
int getDefaultCopyingRestriction()
This method specifies restrictions, if any, that should be honored if the property happens to be default copyable. The default value returned is 0 which indicates that there are no restrictions. The possible values returned are- #DEFAULT_COPYABLE_ON_SINGLE_CLICK
- Returns:
- restrictions, if any, that should be honored if the property happens to be default copyable.
-
-