Package com.sun.jdo.api.persistence.model.util

Examples of com.sun.jdo.api.persistence.model.util.ModelValidator


   * @return <code>true</code> if no errors or warnings occur,
   * <code>false</code> otherwise.
   */
  public boolean parse (String className)
  {
    return new ModelValidator(this, className, getMessages()).parseCheck();
  }
View Full Code Here


   * encountered, the collection will be empty, not <code>null</code>.
   */
  public Collection validate (String className, ClassLoader classLoader,
    ResourceBundle bundle)
  {
    return new ModelValidator(this, className, classLoader,
      ((bundle == null) ? getMessages() : bundle)).fullValidationCheck();
  }
View Full Code Here

   * @return <code>true</code> if no errors or warnings occur,
   * <code>false</code> otherwise.
   */
  public boolean parse (String className)
  {
    return new ModelValidator(this, className, getMessages()).parseCheck();
  }
View Full Code Here

   * encountered, the collection will be empty, not <code>null</code>.
   */
  public Collection validate (String className, ClassLoader classLoader,
    ResourceBundle bundle)
  {
    return new ModelValidator(this, className, classLoader,
      ((bundle == null) ? getMessages() : bundle)).fullValidationCheck();
  }
View Full Code Here

TOP

Related Classes of com.sun.jdo.api.persistence.model.util.ModelValidator

Copyright © 2018 www.massapicom. 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.