aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/PropertyList.java
diff options
context:
space:
mode:
authorGlen Mazza <gmazza@apache.org>2004-01-04 21:14:34 +0000
committerGlen Mazza <gmazza@apache.org>2004-01-04 21:14:34 +0000
commit7e5da4ee9ea802605745a4e384cc787b6eb6b9c4 (patch)
tree9673f4c35449d6830f2c010070be1dc9c7e74a2a /src/java/org/apache/fop/fo/PropertyList.java
parentdf8d4c2df81a59b21fe685a3162ed43f71d731c6 (diff)
downloadxmlgraphics-fop-7e5da4ee9ea802605745a4e384cc787b6eb6b9c4.tar.gz
xmlgraphics-fop-7e5da4ee9ea802605745a4e384cc787b6eb6b9c4.zip
String->Int conversion: removed String version of PropertyList.get()
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197110 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/PropertyList.java')
-rw-r--r--src/java/org/apache/fop/fo/PropertyList.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyList.java b/src/java/org/apache/fop/fo/PropertyList.java
index 02023b9f2..cb2b29645 100644
--- a/src/java/org/apache/fop/fo/PropertyList.java
+++ b/src/java/org/apache/fop/fo/PropertyList.java
@@ -274,17 +274,6 @@ public class PropertyList extends HashMap {
return p;
}
-
- /**
- * Return the property on the current FlowObject if it is specified, or if a
- * corresponding property is specified. If neither is specified, it returns null.
- * @param propertyName name of property
- * @return the Property corresponding to that name
- */
- public Property getSpecified(String propertyName) {
- return get(propertyName, false, false);
- }
-
/**
* Return the property on the current FlowObject. If it isn't set explicitly,
* this will try to compute it based on other properties, or if it is
@@ -299,19 +288,6 @@ public class PropertyList extends HashMap {
}
/**
- * TEMPORARY until conversion to int's complete
- * Return the property on the current FlowObject. If it isn't set explicitly,
- * this will try to compute it based on other properties, or if it is
- * inheritable, to return the inherited value. If all else fails, it returns
- * the default value.
- * @param propertyName The name of the property whose value is desired.
- * @return the Property corresponding to that name
- */
- public Property get(String propertyName) {
- return get(propertyName, true, true);
- }
-
- /**
* Return the property on the current FlowObject. Depending on the passed flags,
* this will try to compute it based on other properties, or if it is
* inheritable, to return the inherited value. If all else fails, it returns