Browse Source

Fix javadocs warnings caused by the recent moves of property classes and

makers.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197329 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Finn Bock 20 years ago
parent
commit
c409a7a8c3

+ 1
- 1
src/java/org/apache/fop/fo/BoxPropShorthandParser.java View File

@@ -70,7 +70,7 @@ public class BoxPropShorthandParser extends GenericShorthandParser {
* Set the given property based on the number of values set.
* Example: padding, border-width, border-color, border-style, margin
* @see org.apache.fop.fo.GenericShorthandParser#convertValueForProperty(
* int, ListProperty, Property.Maker, PropertyList)
* int, ListProperty, PropertyMaker, PropertyList)
*/
protected Property convertValueForProperty(int propId,
ListProperty listProperty,

+ 1
- 1
src/java/org/apache/fop/fo/properties/AutoLength.java View File

@@ -69,7 +69,7 @@ public class AutoLength extends LengthProperty {
// }

/**
* @see org.apache.fop.fo.Property#getString()
* @see org.apache.fop.fo.properties.Property#getString()
*/
public String getString() {
return "auto";

+ 1
- 1
src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java View File

@@ -81,7 +81,7 @@ public class BorderWidthPropertyMaker extends LengthProperty.Maker {
/**
* Check the value of the style property and return a length of 0 when
* the style is NONE.
* @see org.apache.fop.fo.Property.Maker#get(int, PropertyList, boolean, boolean)
* @see org.apache.fop.fo.properties.PropertyMaker#get(int, PropertyList, boolean, boolean)
*/
public Property get(int subpropId, PropertyList propertyList,

+ 1
- 1
src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java View File

@@ -86,7 +86,7 @@ public class CompoundPropertyMaker extends PropertyMaker {
}

/**
* @see org.apache.fop.fo.Property.Maker#useGeneric(Property.Maker)
* @see org.apache.fop.fo.properties.PropertyMaker#useGeneric(PropertyMaker)
*/
public void useGeneric(PropertyMaker generic) {
super.useGeneric(generic);

+ 1
- 1
src/java/org/apache/fop/fo/properties/LengthProperty.java View File

@@ -103,7 +103,7 @@ public class LengthProperty extends Property implements Length {
}

/**
* @see Property.Maker#convertProperty
* @see PropertyMaker#convertProperty
*/
public Property convertProperty(Property p,
PropertyList propertyList,

+ 2
- 2
src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java View File

@@ -74,7 +74,7 @@ public class LineHeightPropertyMaker extends LengthProperty.Maker {

/**
* Make a property as normal, and save the specified value.
* @see Property.Maker#make(PropertyList, String, FObj)
* @see PropertyMaker#make(PropertyList, String, FObj)
*/
public Property make(PropertyList propertyList, String value,
FObj fo) throws FOPException {
@@ -86,7 +86,7 @@ public class LineHeightPropertyMaker extends LengthProperty.Maker {
/**
* Recalculate the line-height value based on the nearest specified
* value.
* @see Property.Maker#compute(PropertyList)
* @see PropertyMaker#compute(PropertyList)
*/
protected Property compute(PropertyList propertyList) throws FOPException {
// recalculate based on last specified value

+ 1
- 1
src/java/org/apache/fop/fo/properties/ListProperty.java View File

@@ -73,7 +73,7 @@ public class ListProperty extends Property {
}

/**
* @see Property.Maker#convertProperty
* @see PropertyMaker#convertProperty
*/
public Property convertProperty(Property p,
PropertyList propertyList, FObj fo) {

+ 1
- 1
src/java/org/apache/fop/fo/properties/NumberProperty.java View File

@@ -73,7 +73,7 @@ public class NumberProperty extends Property {
}

/**
* @see Property.Maker#convertProperty
* @see PropertyMaker#convertProperty
*/
public Property convertProperty(Property p,
PropertyList propertyList, FObj fo) {

Loading…
Cancel
Save