aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache
diff options
context:
space:
mode:
authorFinn Bock <bckfnn@apache.org>2004-02-04 13:24:53 +0000
committerFinn Bock <bckfnn@apache.org>2004-02-04 13:24:53 +0000
commita50659dd2da987ffda829a6416042c35306959ec (patch)
tree72fdfb18c7a498ce32fe4a9a0e1e16615bc0b31d /src/java/org/apache
parent90ab183b428db3fb49d3b79ed89a2ddd9e241c35 (diff)
downloadxmlgraphics-fop-a50659dd2da987ffda829a6416042c35306959ec.tar.gz
xmlgraphics-fop-a50659dd2da987ffda829a6416042c35306959ec.zip
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
Diffstat (limited to 'src/java/org/apache')
-rw-r--r--src/java/org/apache/fop/fo/BoxPropShorthandParser.java2
-rw-r--r--src/java/org/apache/fop/fo/properties/AutoLength.java2
-rw-r--r--src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java2
-rw-r--r--src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java2
-rw-r--r--src/java/org/apache/fop/fo/properties/LengthProperty.java2
-rw-r--r--src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java4
-rw-r--r--src/java/org/apache/fop/fo/properties/ListProperty.java2
-rw-r--r--src/java/org/apache/fop/fo/properties/NumberProperty.java2
8 files changed, 9 insertions, 9 deletions
diff --git a/src/java/org/apache/fop/fo/BoxPropShorthandParser.java b/src/java/org/apache/fop/fo/BoxPropShorthandParser.java
index 51c8f0610..e84f4fd84 100644
--- a/src/java/org/apache/fop/fo/BoxPropShorthandParser.java
+++ b/src/java/org/apache/fop/fo/BoxPropShorthandParser.java
@@ -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,
diff --git a/src/java/org/apache/fop/fo/properties/AutoLength.java b/src/java/org/apache/fop/fo/properties/AutoLength.java
index 0730a289c..19ba5ed34 100644
--- a/src/java/org/apache/fop/fo/properties/AutoLength.java
+++ b/src/java/org/apache/fop/fo/properties/AutoLength.java
@@ -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";
diff --git a/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java b/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java
index ff6849696..98b8a5539 100644
--- a/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java
+++ b/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java
@@ -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,
diff --git a/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java b/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java
index 96cc148e7..e75777cb3 100644
--- a/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java
+++ b/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java
@@ -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);
diff --git a/src/java/org/apache/fop/fo/properties/LengthProperty.java b/src/java/org/apache/fop/fo/properties/LengthProperty.java
index 2588f6f64..14c2cfecd 100644
--- a/src/java/org/apache/fop/fo/properties/LengthProperty.java
+++ b/src/java/org/apache/fop/fo/properties/LengthProperty.java
@@ -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,
diff --git a/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java b/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java
index 743786194..4192e6fee 100644
--- a/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java
+++ b/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java
@@ -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
diff --git a/src/java/org/apache/fop/fo/properties/ListProperty.java b/src/java/org/apache/fop/fo/properties/ListProperty.java
index 7ed6ac0f4..89ed8e38d 100644
--- a/src/java/org/apache/fop/fo/properties/ListProperty.java
+++ b/src/java/org/apache/fop/fo/properties/ListProperty.java
@@ -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) {
diff --git a/src/java/org/apache/fop/fo/properties/NumberProperty.java b/src/java/org/apache/fop/fo/properties/NumberProperty.java
index cccb86ddf..bd8b6d29a 100644
--- a/src/java/org/apache/fop/fo/properties/NumberProperty.java
+++ b/src/java/org/apache/fop/fo/properties/NumberProperty.java
@@ -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) {