1 51 package org.apache.fop.pdf; 52 53 import org.apache.fop.datatypes.ColorSpace; 54 55 public abstract class PDFPathPaint extends PDFObject { 56 57 protected ColorSpace colorSpace; 59 60 public PDFPathPaint(int theNumber) { 61 super(theNumber); 62 63 } 64 65 public PDFPathPaint() { 66 } 68 69 public String getColorSpaceOut(boolean fillNotStroke) { 70 return (""); 71 } 72 73 public void setColorSpace(int theColorSpace) { 74 this.colorSpace.setColorSpace(theColorSpace); 75 } 76 77 public int getColorSpace() { 78 return (this.colorSpace.getColorSpace()); 79 } 80 81 } 82 83 | Popular Tags |