1 51 package org.apache.fop.fo.expr; 52 53 import org.apache.fop.fo.Property; 54 import org.apache.fop.datatypes.ColorType; 55 56 public class NCnameProperty extends Property { 57 58 private final String ncName; 59 60 public NCnameProperty(String ncName) { 61 this.ncName = ncName; 62 } 63 64 public ColorType getColor() throws PropertyException { 65 throw new PropertyException("Not a Color"); 67 } 68 69 72 public String getString() { 73 return this.ncName; 74 } 75 76 public String getNCname() { 77 return this.ncName; 78 } 79 80 } 81 | Popular Tags |