com.microstrategy.web.objects.RWIterateSettings |
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
public static final int[] | VISIBLE_ONLY_ALL | ||||||||||
public static final int[] | VISIBLE_ONLY_HEADER_FOOTER_DETAIL | ||||||||||
public static final int[] | VISIBLE_ONLY_NONE |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract String | getLayoutKey() | ||||||||||
abstract boolean | isDesignMode() | ||||||||||
abstract void | setDesignMode(boolean isDesignMode) | ||||||||||
abstract void | setLayoutKey(String key) | ||||||||||
abstract void | setSuppressEmptySections(boolean suppress) | ||||||||||
abstract void |
setVisitVisibleOnly(int[] visibleOnly)
Array of
EnumRWUnitTypes determines the unit types that
will be iterated only if they are visible. | ||||||||||
abstract boolean |
suppressEmptySections()
Whether to omit sections that have no subsections.
| ||||||||||
abstract boolean |
visitVisibleOnly(RWUnit unit)
Check whether a unit type is in a given array of acceptable matches.
| ||||||||||
abstract int[] | visitVisibleOnly() |
suppress | whether to omit sections that have no subsections. |
---|
Array of EnumRWUnitTypes
determines the unit types that
will be iterated only if they are visible.
visibleOnly | EnumRWUnitTypes of units that will be iterated only if they are visible.
|
---|
Whether to omit sections that have no subsections. This works
in conjunction with setVisitVisibleOnly(int[])
when
non-visible subsections are suppressed.
By default, this is true.
Check whether a unit type is in a given array of acceptable matches.
If unit is null or visible only array is VISIBLE_ONLY_NONE
, false is returned.
If the visible only array is length 0, true is returned.
unit | unit to test |
---|
WebObjectsException |
---|
EnumRWUnitTypes
of units that will be iterated only if they are visible.