1 5 14 package com.teamkonzept.lib.templates; 15 16 import com.teamkonzept.lib.*; 17 18 19 24 public class TKAtomTagTag extends TKTagTagBase { 25 26 static final int TAG_TYPE = TKTagDefinitionTag.TAG_TYPE+1; 27 28 public int tagType () { return TAG_TYPE; }; 29 30 public TKAtomTagTag( TKTemplateSyntax parent, String def, boolean hasSubTags ) throws TKTemplateSyntaxException 31 { 32 super (parent,def,hasSubTags); 33 } 34 35 } 37 | Popular Tags |