1 19 package org.netbeans.tax.decl; 20 21 import org.netbeans.tax.*; 22 23 public class EMPTYType extends LeafType { 24 25 29 public EMPTYType () { 30 super (); 31 } 32 33 public EMPTYType (EMPTYType emptyType) { 34 super (emptyType); 35 } 36 37 38 42 44 public Object clone () { 45 return new EMPTYType (this); 46 } 47 48 52 54 public String getName () { 55 return Util.THIS.getString ("NAME_EMPTY"); 56 } 57 58 60 public String toString () { 61 return "EMPTY"; } 63 64 } 65 | Popular Tags |