Browse Source

Support getObject(), used by Property.toString().


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197315 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Finn Bock 20 years ago
parent
commit
896bf03de4
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      src/java/org/apache/fop/fo/expr/NCnameProperty.java

+ 7
- 0
src/java/org/apache/fop/fo/expr/NCnameProperty.java View File

@@ -85,6 +85,13 @@ public class NCnameProperty extends Property {
return this.ncName;
}

/**
* @return the name as an Object.
*/
public Object getObject() {
return this.ncName;
}
/**
* @return ncName for this
*/

Loading…
Cancel
Save