1 58 package org.apache.ecs; 59 60 68 public interface Attributes 69 { 70 73 public static final String NO_ATTRIBUTE_VALUE = "ECS_NO_ATTRIBUTE_VALUE"; 74 75 79 public Element setAttributeFilterState(boolean filter_attribute_state); 80 81 85 public Element setAttributeFilter(Filter attribute_filter); 86 87 90 public Filter getAttributeFilter(); 91 92 97 public Element addAttribute(String name,Object element); 98 99 104 public Element addAttribute(String name, int element); 105 106 111 public Element addAttribute(String name, String element); 112 113 118 public Element addAttribute(String name, Integer element); 119 120 124 public Element removeAttribute(String name); 125 126 130 public boolean hasAttribute(String name); 131 132 136 public Element setAttributeQuoteChar(char quote_char); 137 138 141 public char getAttributeQuoteChar(); 142 143 147 public Element setAttributeEqualitySign(char equality_sign); 148 149 152 public char getAttributeEqualitySign(); 153 154 157 public boolean getAttributeQuote(); 158 159 162 public Element setAttributeQuote(boolean attribute_quote); 163 } 164 | Popular Tags |