<!ELEMENT extension (reportItem)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT reportItem (property* , propertyGroup* , styleProperty* , method* , propertyVisibility* , style?)>
<!ATTLIST reportItem
extensionName CDATA #REQUIRED
defaultStyle CDATA #IMPLIED
isNameRequired (true | false)
class CDATA #REQUIRED
displayNameID CDATA #IMPLIED>
Element definition
<!ELEMENT styleProperty EMPTY>
<!ATTLIST styleProperty
name CDATA #REQUIRED>
<!ATTLIST property
name CDATA #REQUIRED
displayNameID CDATA #IMPLIED
type (string|number|integer|dimension|color|choice|boolean|expression|html|messageId|style|dataSet|points|uri|dateTime|xml|name|extends|dataSource|float|element|column)
canInherit (true | false) "true"
detailType CDATA #IMPLIED
defaultValue CDATA #IMPLIED
isEncryptable CDATA #IMPLIED
defaultDisplayName CDATA #IMPLIED>
<!ELEMENT propertyGroup (property+)>
<!ATTLIST propertyGroup
displayNameID CDATA #IMPLIED
name CDATA #REQUIRED
defaultDisplayName CDATA #IMPLIED>
<!ATTLIST method
name CDATA #REQUIRED
displayNameID CDATA #IMPLIED
toolTipID CDATA #IMPLIED
returnType CDATA #IMPLIED
isStatic (true | false) "false"
context CDATA #IMPLIED>
<!ELEMENT argument EMPTY>
<!ATTLIST argument
name CDATA #REQUIRED
type CDATA #IMPLIED
tagID CDATA #IMPLIED>
<!ELEMENT choice EMPTY>
<!ATTLIST choice
name CDATA #REQUIRED
value CDATA #IMPLIED
displayNameID CDATA #IMPLIED
defaultDisplayName CDATA #IMPLIED>
<!ELEMENT propertyVisibility EMPTY>
<!ATTLIST propertyVisibility
name CDATA #REQUIRED
visibility CDATA #IMPLIED>
To set the visible level of this property when it is shown in the property sheet.
<!ELEMENT style EMPTY>
<!ATTLIST style
name CDATA #REQUIRED
displayNameID CDATA #IMPLIED>
Extension element default style -- selector.
<extension point=
"org.eclipse.birt.report.engine.reportitemPresentation"
>
<reportItem class=
"org.eclipse.test.ReportItemFactoryImpl"
isNameRequired=
"true"
extensionName=
"TestingMatrix"
displayNameID=
"Element.TestingMatrix"
>
<property defaultValue=
"default test&"<"
type=
"string"
displayNameID=
"Element.TestingMatrix.test1"
name=
"test1"
/>
<property type=
"integer"
displayNameID=
"Element.TestingMatrix.test2"
canInherit=
"false"
name=
"test2"
/>
<property displayNameID=
"Element.TestingMatrix.test3"
name=
"test3"
type=
"xml"
/>
<property type=
"choice"
displayNameID=
"Element.TestingMatrix.test5"
canInherit=
"false"
name=
"test5"
>
<choice value=
"one"
displayNameID=
"Choices.test5.choice1"
name=
"choice1"
/>
<choice value=
"two"
displayNameID=
"Choices.test5.choice2"
name=
"choice2"
/>
<choice value=
"three"
displayNameID=
"Choices.test5.choice3"
name=
"choice3"
/>
</property>
<propertyGroup name=
"group1"
displayNameID=
"Element.TestingMatrix.group1"
>
<property type=
"string"
displayNameID=
"Element.TestingMatrix.test6"
name=
"test6"
/>
<property type=
"integer"
displayNameID=
"Element.TestingMatrix.test7"
name=
"test7"
/>
</propertyGroup>
<propertyVisibility name=
"bookmark"
propertyVisibility=
"hide"
/>
<propertyVisibility name=
"InvalidProperty"
propertyVisibility=
"hide"
/>
<propertyVisibility name=
"dataSet"
propertyVisibility=
"readonly"
/>
<propertyVisibility name=
"test3"
propertyVisibility=
"hide"
/>
</reportItem>
</extension>
Copyright (c) 2005 Actuate Corporation. All rights reserved. This program and
the accompanying materials are made available under the terms of the Eclipse
Public License v1.0 which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors: Actuate Corporation - initial API and implementation