1 57 58 package org.enhydra.apache.xerces.msg; 59 60 import java.util.ListResourceBundle ; 61 62 69 public class DatatypeMessages extends ListResourceBundle { 70 71 public static final Object CONTENTS[][] = { 72 74 { "BadMajorCode", "The majorCode parameter to createMessage was out of bounds" }, 75 { "FormatFailed", "An internal error occurred while formatting the following message:\n " }, 76 { "NotBoolean", "{0} is not a boolean" }, 77 { "NotDecimal", "{0} is not a decimal" }, 78 { "NotFloat", "{0} is not a float" }, 79 { "NotDouble", "{0} is not a double" }, 80 { "InvalidEnumValue", "Invalid value for Enum constant: {0}" }, 81 { "OutOfBounds", "{0} is out of bounds:[ {1} {3} X {4} {2} ]" }, 82 { "NotAnEnumValue", "{0} is not one of the specified enum values" }, 83 { "FractionDigitsLargerThanTotalDigits", "FractionDigits Facet must be less than or equal to TotalDigits Facet" }, 84 { "TotalDigitsExceeded", "{0} has exceeded the totalDigits Facet {1}"}, 85 { "FractionDigitsExceeded", "{0} has execeed the fractionDigits Facet {1}"}, 86 { "IllegalFacetValue", "Illegal value {0} for facet {1}" }, 87 { "IllegalAnyURIFacet", "Illegal facet {0} for anyURI type" }, 88 { "IllegalBooleanFacet", "Illegal facet {0} for boolean type" }, 89 { "IllegalBase64Facet", "Illegal facet {0} for base64Binary type" }, 90 { "IllegalDateTimeFacet", "Illegal facet {0} for date/time types" }, 91 { "IllegalDecimalFacet", "Illegal facet {0} for decimal type" }, 92 { "IllegalDoubleFacet", "Illegal facet {0} for double type" }, 93 { "IllegalFloatFacet", "Illegal facet {0} for float type" }, 94 { "IllegalHexBinaryFacet", "Illegal facet {0} for hexBinary type" }, 95 { "IllegalNotationFacet", "Illegal facet {0} for NOTATION type" }, 96 { "IllegalQNameFacet", "Illegal facet {0} for QName type" }, 97 { "IllegalStringFacet", "Illegal facet {0} for string type" }, 98 { "IllegalListFacet", "Illegal facet {0} for list type" }, 99 { "IllegalUnionFacet", "Illegal facet {0} for union type" }, 100 { "IllegalAnySimpleTypeFacet", "Cannot specify any facet for anySimpleType" }, 101 }; 102 103 104 public Object [][] getContents() { 105 return CONTENTS; 106 } 107 } 108 | Popular Tags |