001 package com.thaiopensource.datatype.xsd;
002
003 class IntegerRestrictDatatype extends ScaleRestrictDatatype {
004 IntegerRestrictDatatype(DatatypeBase base) {
005 super(base, 0);
006 }
007
008 boolean lexicallyAllows(String str) {
009 return super.lexicallyAllows(str) && str.charAt(str.length() - 1) != '.';
010 }
011 }