1 11 package org.eclipse.jdt.internal.compiler.ast; 12 13 public abstract class NumberLiteral extends Literal { 14 15 char[] source; 16 17 public NumberLiteral(char[] token, int s, int e) { 18 19 this(s,e) ; 20 source = token ; 21 } 22 23 public NumberLiteral(int s, int e) { 24 super (s,e) ; 25 } 26 27 public boolean isValidJavaStatement(){ 28 29 return false ; 30 } 31 32 public char[] source(){ 33 34 return source; 35 } 36 } 37 | Popular Tags |