* reference areas and use the value of its writing-mode property.
* If no such ancestor is found, use the value on the root FO.
*/
- private void setWritingMode() {
+ protected void setWritingMode() {
FObj p;
FObj parent;
for (p = this;
protected UnknownXMLObj(FObj parent, PropertyList propertyList, String space, String tag) {
super(parent, propertyList, tag);
this.namespace = space;
- this.name = this.namespace + ":" + tag;
+ if(!"".equals(space)) {
+ this.name = this.namespace + ":" + tag;
+ } else {
+ this.name = "(none):" + tag;
+ }
}
public String getNameSpace() {