Class ExtendsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.birt.core.exception.BirtException
-
- org.eclipse.birt.report.model.api.ModelException
-
- org.eclipse.birt.report.model.api.activity.SemanticException
-
- org.eclipse.birt.report.model.api.command.ExtendsException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
CircularExtendsException
,ExtendsForbiddenException
,InvalidParentException
,WrongTypeException
public class ExtendsException extends SemanticException
Indicates an error while setting the extends property of an element.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DESIGN_EXCEPTION_CANT_EXTEND
Deprecated.pushed down to sub classExtendsForbiddenException
static java.lang.String
DESIGN_EXCEPTION_CIRCULAR
Deprecated.pushed down to sub classCircularExtendsException
static java.lang.String
DESIGN_EXCEPTION_EXTENDS_FORBIDDEN
Deprecated.pushed down to sub classExtendsForbiddenException
static java.lang.String
DESIGN_EXCEPTION_NO_PARENT
Deprecated.pushed down to sub classInvalidParentException
static java.lang.String
DESIGN_EXCEPTION_PARENT_NOT_FOUND
Deprecated.pushed down to sub classInvalidParentException
static java.lang.String
DESIGN_EXCEPTION_PARENT_NOT_IN_COMPONENT
Deprecated.pushed down to sub classExtendsForbiddenException
static java.lang.String
DESIGN_EXCEPTION_PARENT_NOT_INCLUDE
Deprecated.pushed down to sub classInvalidParentException
static java.lang.String
DESIGN_EXCEPTION_SELF_EXTEND
Deprecated.pushed down to sub classCircularExtendsException
static java.lang.String
DESIGN_EXCEPTION_UNNAMED_PARENT
Deprecated.pushed down to sub classInvalidParentException
static java.lang.String
DESIGN_EXCEPTION_WRONG_EXTENSION_TYPE
Deprecated.pushed down to sub classWrongTypeException
static java.lang.String
DESIGN_EXCEPTION_WRONG_TYPE
Deprecated.pushed down to sub classWrongTypeException
protected java.lang.String
extendsName
The new extends value.protected org.eclipse.birt.report.model.core.DesignElement
parent
The parent element to set.-
Fields inherited from class org.eclipse.birt.report.model.api.activity.SemanticException
DESIGN_EXCEPTION__EXPORT_ELEMENT_FAIL, element
-
Fields inherited from class org.eclipse.birt.report.model.api.ModelException
PLUGIN_ID
-
-
Constructor Summary
Constructors Constructor Description ExtendsException(org.eclipse.birt.report.model.core.DesignElement obj, java.lang.String name, java.lang.String errCode)
Constructor.ExtendsException(org.eclipse.birt.report.model.core.DesignElement obj, org.eclipse.birt.report.model.core.DesignElement parent, java.lang.String errCode)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getExtends()
Returns the attempted new value for the extends property.java.lang.String
getLocalizedMessage()
-
Methods inherited from class org.eclipse.birt.report.model.api.activity.SemanticException
getElement, getElementName, getMessage
-
Methods inherited from class org.eclipse.birt.core.exception.BirtException
getErrorCode, getLocalizedMessage, getPluginId, getSeverity, setSeverity
-
-
-
-
Field Detail
-
extendsName
protected java.lang.String extendsName
The new extends value.
-
parent
protected org.eclipse.birt.report.model.core.DesignElement parent
The parent element to set.
-
DESIGN_EXCEPTION_PARENT_NOT_FOUND
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_PARENT_NOT_FOUND
Deprecated.pushed down to sub classInvalidParentException
No element exists with the parent name.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_WRONG_TYPE
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_WRONG_TYPE
Deprecated.pushed down to sub classWrongTypeException
The parent element does not have the same type as the target element.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_WRONG_EXTENSION_TYPE
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_WRONG_EXTENSION_TYPE
Deprecated.pushed down to sub classWrongTypeException
The parent element does not have the same type of extension as the target element. Both the parent and the target element are ExtendedItem.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_EXTENDS_FORBIDDEN
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_EXTENDS_FORBIDDEN
Deprecated.pushed down to sub classExtendsForbiddenException
The element does not allow to set extends explicitly.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_CANT_EXTEND
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_CANT_EXTEND
Deprecated.pushed down to sub classExtendsForbiddenException
The element does not allow extensions.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_SELF_EXTEND
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_SELF_EXTEND
Deprecated.pushed down to sub classCircularExtendsException
The element cannot extend from itself.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_CIRCULAR
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_CIRCULAR
Deprecated.pushed down to sub classCircularExtendsException
The extension would create a cycle: a extends b extends a.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_UNNAMED_PARENT
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_UNNAMED_PARENT
Deprecated.pushed down to sub classInvalidParentException
The parent element has no name.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_PARENT_NOT_IN_COMPONENT
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_PARENT_NOT_IN_COMPONENT
Deprecated.pushed down to sub classExtendsForbiddenException
The parent element not in component slot of report design.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_PARENT_NOT_INCLUDE
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_PARENT_NOT_INCLUDE
Deprecated.pushed down to sub classInvalidParentException
The library of the parent element is not included.- See Also:
- Constant Field Values
-
DESIGN_EXCEPTION_NO_PARENT
@Deprecated public static final java.lang.String DESIGN_EXCEPTION_NO_PARENT
Deprecated.pushed down to sub classInvalidParentException
The element has no parent, it can not be localized.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ExtendsException
public ExtendsException(org.eclipse.birt.report.model.core.DesignElement obj, java.lang.String name, java.lang.String errCode)
Constructor.- Parameters:
obj
- the element being changed.name
- the value being set for the extends property.errCode
- what went wrong.
-
ExtendsException
public ExtendsException(org.eclipse.birt.report.model.core.DesignElement obj, org.eclipse.birt.report.model.core.DesignElement parent, java.lang.String errCode)
Constructor.- Parameters:
obj
- the element being changed.parent
- the parent element.errCode
- what went wrong.
-
-
Method Detail
-
getExtends
public java.lang.Object getExtends()
Returns the attempted new value for the extends property.- Returns:
- the parent element name.
-
getLocalizedMessage
public java.lang.String getLocalizedMessage()
- Overrides:
getLocalizedMessage
in classSemanticException
-
-