View Javadoc

1   // -- FILE ------------------------------------------------------------------
2   // name       : ValidationInfo.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  import ch.panter.li.bi.util.ReadOnlyCollection;
13  
14  
15  public interface ValidationInfo
16  {
17  
18    public ReadOnlyCollection<ValidationItem> getItems();
19  
20  } // interface ValidationInfo
21  
22  // -- EOF -------------------------------------------------------------------