1 // -- FILE ------------------------------------------------------------------ 2 // name : AsnTagNature.java 3 // project : Panter: LI 4 // created : lep - 2007.01.23 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; 11 12 13 public enum AsnTagNature 14 { 15 Primitive, 16 Constructed 17 } // enum AsnTagNature 18 19 // -- EOF -------------------------------------------------------------------