1 // -- FILE ------------------------------------------------------------------ 2 // name : Validatable.java 3 // project : Panter: LI 4 // created : lep - 2007.02.07 5 // language : java 6 // environment: JDK 1.5.0 7 // copyright : (c) 2006 by Panter llc, Switzerland 8 // license : this is free software licensed under the GPL. see COPYING 9 // -------------------------------------------------------------------------- 10 package ch.panter.li.bi.asn.api; 11 12 13 public interface Validatable 14 { 15 16 public boolean isValid(); 17 18 public void collectValidationInfo( final ValidationInfoImpl info ); 19 20 public void validate() throws ValidationException; 21 22 } // interface Validatable 23 24 // -- EOF -------------------------------------------------------------------