Class EmptyGroupElementHandle
java.lang.Object
org.eclipse.birt.report.model.api.GroupElementHandle
org.eclipse.birt.report.model.api.EmptyGroupElementHandle
Implements an empty group element handle, which actually can do nothing.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
Checks if all elements have extends parents or virtual parents.void
Clears values of all common properties(except the extends property) for the given collection of elements.void
Clears values of all common properties(except the extends property) for the given collection of elements.Returns the common properties shared by the given group of elements(including user properties).Returns the list that contains the group of design elements.org.eclipse.birt.report.model.core.Module
Returns the module.Returns the handle of module.getPropertyHandle
(String propName) If property is shared by the group of elements, return the correspondingGroupPropertyHandle
, otherwise, returnnull
.boolean
Returnstrue
if each of the given collection of element extends has a parent.protected boolean
isInGroup
(DesignElementHandle element) Checks whether theelement
is a member ofGroupElementHandle
.protected boolean
isPropertyReadOnly
(String propName) Checks whether a property is read-only in the property sheet.protected boolean
isPropertyVisible
(String propName) Checks whether a property is visible in the property sheet.boolean
Indicates that if the given elements are of the same definition.Returns an iterator over the common properties that are visible.Methods inherited from class org.eclipse.birt.report.model.api.GroupElementHandle
clearProperty, getDisplayProperty, getLocalStringProperty, getStringProperty, hasLocalPropertiesForExtendedElements, hasLocalPropertiesIncludeSubElement, hasLocalPropertiesIncludeSubElement, propertyIterator, setProperty, setStringProperty, shareSameValue
-
Constructor Details
-
EmptyGroupElementHandle
public EmptyGroupElementHandle()
-
-
Method Details
-
allExtendedElements
protected boolean allExtendedElements()Description copied from class:GroupElementHandle
Checks if all elements have extends parents or virtual parents.- Specified by:
allExtendedElements
in classGroupElementHandle
- Returns:
true
If all elements have extend parents or virtual parents. Otherwisefalse
;
-
getElements
Description copied from class:GroupElementHandle
Returns the list that contains the group of design elements. Contents of it isDesignElementHandle
- Specified by:
getElements
in classGroupElementHandle
- Returns:
- the list that contains the group of design elements.
-
getModule
public org.eclipse.birt.report.model.core.Module getModule()Description copied from class:GroupElementHandle
Returns the module.- Specified by:
getModule
in classGroupElementHandle
- Returns:
- the module
-
getModuleHandle
Description copied from class:GroupElementHandle
Returns the handle of module.- Specified by:
getModuleHandle
in classGroupElementHandle
- Returns:
- the handle of module
-
isSameType
public boolean isSameType()Description copied from class:GroupElementHandle
Indicates that if the given elements are of the same definition. Elements are considered of same type if their element definitions are identical.If elements have different definitions. Even the same element type, the return value is
false
. For example, if the list contains anOdaDataSource
and aOdaDataSource
, this method returnsfalse
.- Specified by:
isSameType
in classGroupElementHandle
- Returns:
true
if the given elements are of the same type; returnfalse
if elements are of different element types, or the given list is empty, or the list contains any object that is not an instance ofDesignElementHandle
.
-
getCommonProperties
Description copied from class:GroupElementHandle
Returns the common properties shared by the given group of elements(including user properties). Contents of the list is element property definitions. If elements do not share any common property, return an empty list.- Specified by:
getCommonProperties
in classGroupElementHandle
- Returns:
- the common properties shared by the given group of elements. If
elements do not share any common property, or the given list is
empty, or the list contains any item that is not an instance of
DesignElementHandle
, return an empty list.
-
visiblePropertyIterator
Description copied from class:GroupElementHandle
Returns an iterator over the common properties that are visible. Contents of the iterator are handles to the common properties, type of them isGroupPropertyHandle
. Note: remove is not support for the iterator.- Specified by:
visiblePropertyIterator
in classGroupElementHandle
- Returns:
- an iterator over the common properties. Contents of the iterator are
handles to the common properties, type of them is
GroupPropertyHandle
-
isPropertyVisible
Description copied from class:GroupElementHandle
Checks whether a property is visible in the property sheet. The visible property is visible in allelements
.- Specified by:
isPropertyVisible
in classGroupElementHandle
- Parameters:
propName
- the property name- Returns:
true
if it is visible. Otherwisefalse
.
-
clearLocalProperties
Description copied from class:GroupElementHandle
Clears values of all common properties(except the extends property) for the given collection of elements. Clearing a property removes any value set for the property on this element. After this, the element will now inherit the property from its parent element, style, or from the default value for the property. Note: this method clear the values of local properties ( not include sub element)- Specified by:
clearLocalProperties
in classGroupElementHandle
- Throws:
SemanticException
- if the property is not defined on this element
-
isExtendedElements
public boolean isExtendedElements()Description copied from class:GroupElementHandle
Returnstrue
if each of the given collection of element extends has a parent. Returnsfalse
otherwise. If the collection has no elements, also returnfalse
- Specified by:
isExtendedElements
in classGroupElementHandle
- Returns:
true
if each of the given collection of element extends has a parent. Returnsfalse
otherwise. If the collection has no elements, also returnfalse
-
isPropertyReadOnly
Description copied from class:GroupElementHandle
Checks whether a property is read-only in the property sheet. The visible property is read-only in allelements
.- Specified by:
isPropertyReadOnly
in classGroupElementHandle
- Parameters:
propName
- the property name- Returns:
true
if it is read-only. Otherwisefalse
.
-
getPropertyHandle
Description copied from class:GroupElementHandle
If property is shared by the group of elements, return the correspondingGroupPropertyHandle
, otherwise, returnnull
.- Specified by:
getPropertyHandle
in classGroupElementHandle
- Parameters:
propName
- name of the property needs to be handled.- Returns:
- If the property is a common property among the elements, return the
corresponding
GroupPropertyHandle
; Otherwise returnnull
.
-
isInGroup
Description copied from class:GroupElementHandle
Checks whether theelement
is a member ofGroupElementHandle
.- Specified by:
isInGroup
in classGroupElementHandle
- Parameters:
element
- the element to check- Returns:
true
if the element is in the list, otherwisefalse
.
-
clearLocalPropertiesIncludeSubElement
Description copied from class:GroupElementHandle
Clears values of all common properties(except the extends property) for the given collection of elements. Clearing a property removes any value set for the property on this element. After this, the element will now inherit the property from its parent element, style, or from the default value for the property. Note: this method clear all the values of local properties (include sub element)- Specified by:
clearLocalPropertiesIncludeSubElement
in classGroupElementHandle
- Throws:
SemanticException
- if the property is not defined on this element
-