1 package com.teamkonzept.field; 2 3 public class TKHiddenField 4 extends TKAtomField 5 { 6 8 public static final String CLASS_ID = "HIDDEN"; 9 10 public TKHiddenField() {}; 11 public TKHiddenField( String name ) 12 { 13 init( "HIDDEN", name ); 14 } 15 16 public void init( String type, String name ) 17 { 18 initAtomField( type, name, null ); 19 } 20 21 24 public TKFieldGroup getDefGroup(TKFieldSwitch allSwitch, TKFieldSwitchList allSwitchList) { 25 26 return null; 27 } 28 29 } 30 | Popular Tags |