|
fop 1.0 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use PropertyException | |
org.apache.fop.datatypes | XSL Datatypes. |
org.apache.fop.fo | Classes, constants and basic infrastructure for the FO tree. |
org.apache.fop.fo.expr | Classes for XSL expressions and functions. |
org.apache.fop.fo.flow.table | |
org.apache.fop.fo.properties | Classes representing the various property types as well as supporting data structures for the FO tree. |
org.apache.fop.util | Various utility classes (I/O, codecs, color support, service discovers etc.). |
Uses of PropertyException in org.apache.fop.datatypes |
Methods in org.apache.fop.datatypes that throw PropertyException | |
double |
Numeric.getNumericValue()
Return the value of this Numeric |
double |
Numeric.getNumericValue(PercentBaseContext context)
Return the value of this Numeric |
int |
LengthBase.getBaseLength(PercentBaseContext context)
|
int |
PercentBase.getBaseLength(PercentBaseContext context)
|
Constructors in org.apache.fop.datatypes that throw PropertyException | |
LengthBase(PropertyList plist,
int baseType)
Constructor |
Uses of PropertyException in org.apache.fop.fo |
Methods in org.apache.fop.fo with parameters of type PropertyException | |
void |
FOValidationEventProducer.invalidPropertyValue(java.lang.Object source,
java.lang.String elementName,
java.lang.String propName,
java.lang.String propValue,
PropertyException e,
org.xml.sax.Locator loc)
An invalid property value was encountered. |
Methods in org.apache.fop.fo that throw PropertyException | |
Property |
StaticPropertyList.get(int propId,
boolean bTryInherit,
boolean bTryDefault)
Override PropertyList.get() and provides fast caching of previously retrieved property values. |
Property |
PropertyList.getExplicitOrShorthand(int propId)
Return the value explicitly specified on this FO. |
Property |
PropertyList.getInherited(int propId)
Return the value of this property inherited by this FO. |
Property |
PropertyList.get(int propId)
Return the property on the current FlowObject. |
Property |
PropertyList.get(int propId,
boolean bTryInherit,
boolean bTryDefault)
Return the property on the current FlowObject. |
Property |
PropertyList.getNearestSpecified(int propId)
Return the "nearest" specified value for the given property. |
Property |
PropertyList.getFromParent(int propId)
Return the value of this property on the parent of this FO. |
void |
PropertyList.setWritingMode()
Set writing mode for this FO. |
CommonBorderPaddingBackground |
PropertyList.getBorderPaddingBackgroundProps()
Constructs a BorderAndPadding object. |
CommonHyphenation |
PropertyList.getHyphenationProps()
Constructs a CommonHyphenation object. |
CommonMarginBlock |
PropertyList.getMarginBlockProps()
Constructs a CommonMarginBlock object. |
CommonMarginInline |
PropertyList.getMarginInlineProps()
Constructs a CommonMarginInline object. |
CommonAccessibility |
PropertyList.getAccessibilityProps()
Constructs a CommonAccessibility object. |
CommonAural |
PropertyList.getAuralProps()
Constructs a CommonAural object. |
CommonRelativePosition |
PropertyList.getRelativePositionProps()
Constructs a RelativePositionProps objects. |
CommonAbsolutePosition |
PropertyList.getAbsolutePositionProps()
Constructs a CommonAbsolutePosition object. |
CommonFont |
PropertyList.getFontProps()
Constructs a CommonFont object. |
CommonTextDecoration |
PropertyList.getTextDecorationProps()
Constructs a CommonTextDecoration object. |
Uses of PropertyException in org.apache.fop.fo.expr |
Methods in org.apache.fop.fo.expr that throw PropertyException | |
Property |
AbsFunction.eval(Property[] args,
PropertyInfo propInfo)
|
Property |
FromParentFunction.eval(Property[] args,
PropertyInfo pInfo)
|
Property |
PPColWidthFunction.eval(Property[] args,
PropertyInfo pInfo)
|
Property |
FromTableColumnFunction.eval(Property[] args,
PropertyInfo pInfo)
|
Property |
MinFunction.eval(Property[] args,
PropertyInfo pInfo)
Handle "numerics" if no proportional/percent parts |
double |
RelativeNumericProperty.getNumericValue()
Return the resolved (calculated) value of the expression. |
double |
RelativeNumericProperty.getNumericValue(PercentBaseContext context)
Return the value of this Numeric |
Property |
MaxFunction.eval(Property[] args,
PropertyInfo pInfo)
Handle "numerics" if no proportional/percent parts |
Property |
LabelEndFunction.eval(Property[] args,
PropertyInfo pInfo)
|
Property |
BodyStartFunction.eval(Property[] args,
PropertyInfo pInfo)
|
PercentBase |
PropertyInfo.getPercentBase()
Return the PercentBase object used to calculate the absolute value from a percent specification. |
Length |
PropertyInfo.currentFontSize()
|
Property |
NearestSpecPropFunction.eval(Property[] args,
PropertyInfo pInfo)
|
Property |
Function.eval(Property[] args,
PropertyInfo propInfo)
Evaluate the function |
static Property |
PropertyParser.parse(java.lang.String expr,
PropertyInfo propInfo)
Public entrypoint to the Property expression parser. |
Property |
InheritedPropFunction.eval(Property[] args,
PropertyInfo pInfo)
|
static Numeric |
NumericOp.addition(Numeric op1,
Numeric op2)
Add the two operands and return a new Numeric representing the result. |
static Numeric |
NumericOp.addition2(Numeric op1,
Numeric op2,
PercentBaseContext context)
|
static Numeric |
NumericOp.subtraction(Numeric op1,
Numeric op2)
Add the second operand from the first and return a new Numeric representing the result. |
static Numeric |
NumericOp.subtraction2(Numeric op1,
Numeric op2,
PercentBaseContext context)
|
static Numeric |
NumericOp.multiply(Numeric op1,
Numeric op2)
Multiply the two operands and return a new Numeric representing the result. |
static Numeric |
NumericOp.multiply2(Numeric op1,
Numeric op2,
PercentBaseContext context)
|
static Numeric |
NumericOp.divide(Numeric op1,
Numeric op2)
Divide the second operand into the first and return a new Numeric representing the result. |
static Numeric |
NumericOp.divide2(Numeric op1,
Numeric op2,
PercentBaseContext context)
|
static Numeric |
NumericOp.modulo(Numeric op1,
Numeric op2)
Return the remainder of a division of the two operand Numeric. |
static Numeric |
NumericOp.modulo2(Numeric op1,
Numeric op2,
PercentBaseContext context)
|
static Numeric |
NumericOp.abs(Numeric op)
Return the absolute value of a Numeric. |
static Numeric |
NumericOp.abs2(Numeric op,
PercentBaseContext context)
|
static Numeric |
NumericOp.negate(Numeric op)
Return the negation of a Numeric. |
static Numeric |
NumericOp.negate2(Numeric op,
PercentBaseContext context)
|
static Numeric |
NumericOp.max(Numeric op1,
Numeric op2)
Return the larger of the two Numerics. |
static Numeric |
NumericOp.max2(Numeric op1,
Numeric op2,
PercentBaseContext context)
|
static Numeric |
NumericOp.min(Numeric op1,
Numeric op2)
Return the smaller of two Numerics. |
static Numeric |
NumericOp.min2(Numeric op1,
Numeric op2,
PercentBaseContext context)
|
Uses of PropertyException in org.apache.fop.fo.flow.table |
Methods in org.apache.fop.fo.flow.table that throw PropertyException | |
Property |
TableFObj.ColumnNumberPropertyMaker.make(PropertyList propertyList)
Return the default value. |
Property |
TableFObj.ColumnNumberPropertyMaker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. Check the value of the column-number property. |
Property |
TableFObj.ColumnNumberPropertyMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this property. It is overridden by subclasses. If the value is not positive, return a property whose value is the next column number. |
void |
TableEventProducer.valueMustBeBiggerGtEqOne(java.lang.Object source,
java.lang.String propName,
int actualValue,
org.xml.sax.Locator loc)
Property value must be 1 or bigger. |
void |
TableEventProducer.cellOverlap(java.lang.Object source,
java.lang.String elementName,
int column,
org.xml.sax.Locator loc)
Cell overlap. |
Property |
TableColumn.getProperty(int propId)
Retrieve a property value through its Id; used by from-table-column() function |
Uses of PropertyException in org.apache.fop.fo.properties |
Methods in org.apache.fop.fo.properties that throw PropertyException | |
Property |
CondLengthProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this compound property. |
static CommonFont |
CommonFont.getInstance(PropertyList pList)
Returns a CommonFont instance for the given PropertyList If the font-size and font-size-adjust properties are absolute the entire instance will be cached. |
static CommonTextDecoration |
CommonTextDecoration.createFromPropertyList(PropertyList pList)
Creates a CommonTextDecoration object from a property list. |
Property |
CorrespondingPropertyMaker.compute(PropertyList propertyList)
Return a Property object representing the value of this property, based on other property values for this FO. |
static CommonHyphenation |
CommonHyphenation.getInstance(PropertyList propertyList)
Gets the canonical CommonHyphenation instance corresponding
to the values of the related properties present on the given
PropertyList |
Property |
GenericShorthandParser.getValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
protected Property |
GenericShorthandParser.convertValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
Converts a property name into a Property |
static ColorProperty |
ColorProperty.getInstance(FOUserAgent foUserAgent,
java.lang.String value)
Set the color given a particular String. |
Property |
ColorProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a ColorProperty object based on the passed Property object. |
Property |
WhiteSpaceShorthandParser.getValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
Property |
SpacePropertyMaker.compute(PropertyList propertyList)
Return a Property object representing the value of this property, based on other property values for this FO. A special case is properties which inherit the specified value, rather than the computed value. |
Property |
LengthRangeProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this compound property. |
protected Property |
BorderSpacingShorthandParser.convertValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
Property |
FontSizePropertyMaker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. Contrary to basic lengths, percentages for font-size can be resolved here already: if the property evaluates to a PercentLength ,
it is immediately replaced by the resolved FixedLength . |
Property |
FontSizePropertyMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this property. It is overridden by subclasses. Implements the parts of 7.8.4 relevant to relative font sizes |
Property |
PageDimensionMaker.get(int subpropId,
PropertyList propertyList,
boolean tryInherit,
boolean tryDefault)
Check the value of the page-width / page-height property. |
Property |
ReferenceOrientationMaker.get(int subpropId,
PropertyList propertyList,
boolean tryInherit,
boolean tryDefault)
Check the value of the reference-orientation property. |
Property |
BorderWidthPropertyMaker.get(int subpropId,
PropertyList propertyList,
boolean bTryInherit,
boolean bTryDefault)
Check the value of the style property and return a length of 0 when the style is NONE. |
Property |
LengthPairProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this compound property. |
Property |
TableBorderPrecedence.make(PropertyList propertyList)
Set default precedence according to the parent FObj Return the default value. |
Property |
DimensionPropertyMaker.compute(PropertyList propertyList)
|
Property |
LengthProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this property. It is overridden by subclasses. |
Property |
LineHeightPropertyMaker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. |
protected Property |
LineHeightPropertyMaker.compute(PropertyList propertyList)
Recalculate the line-height value based on the nearest specified value. |
Property |
LineHeightPropertyMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this compound property. |
Property |
FontStretchPropertyMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Implements the parts of 7.8.5 relevant to relative font stretches |
Property |
NumberProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this property. It is overridden by subclasses. |
Property |
NumberProperty.PositiveIntegerMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
If the value is not positive, return a property with value 1 Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this property. It is overridden by subclasses. |
double |
EnumNumber.getNumericValue(PercentBaseContext context)
Return the value of this Numeric logs an error, because it's not supposed to be called |
Property |
SpaceProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this compound property. |
protected Property |
BoxPropShorthandParser.convertValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
Stores 1 to 4 values of same type. |
Property |
ShorthandParser.getValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
Property |
BackgroundPositionShorthand.Maker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. If only background-position-horizontal is
specified, background-position-vertical is set
to "50%". |
Property |
BackgroundPositionShorthand.Parser.getValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
Property |
TextDecorationProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this property. It is overridden by subclasses. |
Property |
PageBreakShorthandParser.getValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
Property |
IndentPropertyMaker.compute(PropertyList propertyList)
Calculate the corresponding value for start-indent and end-indent. |
Property |
IndentPropertyMaker.computeConforming(PropertyList propertyList)
Calculate the corresponding value for start-indent and end-indent. |
Property |
IndentPropertyMaker.computeAlternativeRuleset(PropertyList propertyList)
Calculate the corresponding value for start-indent and end-indent. |
Property |
EnumProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
|
static CommonBorderPaddingBackground |
CommonBorderPaddingBackground.getInstance(PropertyList pList)
Obtain a CommonBorderPaddingBackground instance based on the related property valus in the given PropertyList |
Property |
FontWeightPropertyMaker.make(PropertyList pList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. |
Property |
FontShorthandParser.getValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
Property |
FontShorthandProperty.Maker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. |
Property |
SpacingPropertyMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Support for the 'normal' value. |
Property |
PropertyMaker.findProperty(PropertyList propertyList,
boolean tryInherit)
If the property is a relative property with a corresponding absolute value specified, the absolute value is used. |
Property |
PropertyMaker.get(int subpropertyId,
PropertyList propertyList,
boolean tryInherit,
boolean tryDefault)
Return the property on the current FlowObject. |
PercentBase |
PropertyMaker.getPercentBase(PropertyList pl)
This is used to handle properties specified as a percentage of some "base length", such as the content width of their containing box. |
Property |
PropertyMaker.make(PropertyList propertyList)
Return the default value. |
Property |
PropertyMaker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. |
Property |
PropertyMaker.make(Property baseProperty,
int subpropertyId,
PropertyList propertyList,
java.lang.String value,
FObj fo)
Make a property value for a compound property. |
Property |
PropertyMaker.convertShorthandProperty(PropertyList propertyList,
Property prop,
FObj fo)
Converts a shorthand property |
protected Property |
PropertyMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. |
protected Property |
PropertyMaker.convertPropertyDatatype(Property p,
PropertyList propertyList,
FObj fo)
For properties that have more than one legal way to be specified, this routine should be overridden to attempt to set them based upon the other methods. |
protected Property |
PropertyMaker.compute(PropertyList propertyList)
Return a Property object representing the value of this property, based on other property values for this FO. |
Property |
PropertyMaker.getShorthand(PropertyList propertyList)
For properties that can be set by shorthand properties, this method should return the Property, if any, that is parsed from any shorthand properties that affect this property. |
Property |
XMLLangShorthandParser.getValueForProperty(int propId,
Property property,
PropertyMaker maker,
PropertyList propertyList)
|
Property |
FontFamilyProperty.Maker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. |
Property |
KeepProperty.Maker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. This method is called if the Property object built by the parser isn't the right type for this compound property. |
Property |
CompoundPropertyMaker.get(int subpropertyId,
PropertyList propertyList,
boolean tryInherit,
boolean tryDefault)
Return the property on the current FlowObject. |
protected Property |
CompoundPropertyMaker.convertProperty(Property p,
PropertyList propertyList,
FObj fo)
Return a Property object based on the passed Property object. |
Property |
CompoundPropertyMaker.make(PropertyList propertyList)
Make a compound property with default values. |
Property |
CompoundPropertyMaker.make(PropertyList propertyList,
java.lang.String value,
FObj fo)
Create a Property object from an attribute specification. |
Property |
CompoundPropertyMaker.make(Property baseProperty,
int subpropertyId,
PropertyList propertyList,
java.lang.String value,
FObj fo)
Return a property value for a compound property. |
protected Property |
CompoundPropertyMaker.makeCompound(PropertyList propertyList,
FObj parentFO)
Create a empty compound property and fill it with default values for the subproperties. |
Constructors in org.apache.fop.fo.properties that throw PropertyException | |
CommonMarginInline(PropertyList pList)
Create a CommonMarginInline object. |
|
CommonAbsolutePosition(PropertyList pList)
Create a CommonAbsolutePosition object. |
|
TextDecorationProperty(ListProperty listProp)
Constructs a new instance by converting a ListProperty. |
|
CommonAccessibility(PropertyList pList)
Create a CommonAccessibility object. |
|
CommonRelativePosition(PropertyList pList)
Create a CommonRelativePosition object. |
|
CommonMarginBlock(PropertyList pList)
Create a CommonMarginBlock object. |
Uses of PropertyException in org.apache.fop.util |
Methods in org.apache.fop.util that throw PropertyException | |
static java.awt.Color |
ColorUtil.parseColorString(FOUserAgent foUserAgent,
java.lang.String value)
Creates a color from a given string. |
|
fop 1.0 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |