1 51 package org.apache.fop.fo; 52 53 import org.apache.fop.apps.FOPException; 55 56 public class ColorProfile extends FObj { 57 58 public static class Maker extends FObj.Maker { 59 public FObj make(FObj parent, PropertyList propertyList, 60 String systemId, int line, int column) 61 throws FOPException { 62 return new ColorProfile(parent, propertyList, 63 systemId, line, column); 64 } 65 } 66 67 public static FObj.Maker maker() { 68 return new ColorProfile.Maker(); 69 } 70 71 protected ColorProfile(FObj parent, PropertyList propertyList, 72 String systemId, int line, int column) 73 throws FOPException { 74 super(parent, propertyList, systemId, line, column); 75 log.warn("color profile not implemented"); 76 } 80 81 public String getName() { 82 return "fo:color-profile"; 83 } 84 } 85 | Popular Tags |