1 19 package org.netbeans.modules.xslt.model; 20 21 22 47 public interface DecimalFormat extends Declaration, QualifiedNameable { 48 49 String DECIMAL_SEPARATOR = "decimal-separator"; 51 String INFINITY = "infinity"; 53 String MINUS_SIGN = "minus-sign"; 55 String NAN = "NaN"; 57 String PERCENT = "percent"; 59 String ZERO_DIGIT = "zero-digit"; 61 String PER_MILLE = "per-mille"; 63 String DIGIT = "digit"; 65 String PATTERN_SEPARATOR = "pattern-separator"; 67 String GROUPING_SEPARATOR = "grouping-separator"; 69 72 String getInfinity(); 73 74 78 void setInfinity( String value ); 79 80 83 String getNaN(); 84 85 89 void setNaN( String nan ); 90 91 } 92 | Popular Tags |