1 17 18 22 23 package org.apache.geronimo.system.configuration; 24 25 import java.util.Hashtable ; 26 27 35 public class ElementState 36 { 37 38 39 42 String rawName; 43 44 45 48 String localName; 49 50 51 54 String namespaceURI; 55 56 57 60 boolean preserveSpace; 61 62 63 67 boolean empty; 68 69 70 73 boolean afterElement; 74 75 76 79 boolean afterComment; 80 81 82 86 boolean doCData; 87 88 89 93 boolean unescaped; 94 95 96 99 boolean inCData; 100 101 102 105 Hashtable prefixes; 106 107 108 } 109 | Popular Tags |