Package org.apache.padaf.preflight.graphics

Examples of org.apache.padaf.preflight.graphics.XObjectValidator.validate()


      break;
    default:
      throw new ValidationException("Unkown pattern type : " + ptype);
    }

    return validator.validate();
  }

  public List<ValidationError> validateXObject(DocumentHandler handler,
      COSObject cObj) throws ValidationException {
    XObjectValidator xObjVal = null;
View Full Code Here


      xObjVal = new XObjPostscriptValidator(handler, dic);
    } else {
      throw new ValidationException("Invalid XObject subtype");
    }

    return xObjVal.validate();
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.