979899100101102103104105106107
COSArray ic = (COSArray) getDictionary().getItem( COSName.getPDFName( "IC" ) ); if (ic != null) { return new PDGamma( ic ); } else { return null; }
663664665666667668669670671672673
public PDGamma getColour() { COSArray c = (COSArray) getDictionary().getItem(COSName.getPDFName( "C" ) ); if (c != null) { return new PDGamma( c ); } else { return null; }
579580581582583584585586587588589