1 // -- FILE ------------------------------------------------------------------ 2 // name : AsnModule.java 3 // project : Panter: LI 4 // created : lep - 2007.01.03 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.model; 11 12 import ch.panter.li.bi.util.ReadOnlyNamedItemMap; 13 import ch.panter.li.bi.util.NamedItem; 14 15 16 public interface AsnModule extends NamedItem { 17 18 public ReadOnlyNamedItemMap<AsnType> getTypes(); 19 20 } // interface AsnModule 21 22 // -- EOF -------------------------------------------------------------------