| Index: src/com/dom_distiller/client/sax/Attributes.java
|
| diff --git a/src/com/dom_distiller/client/sax/Attributes.java b/src/com/dom_distiller/client/sax/Attributes.java
|
| index 73621d1833edbc7eadb0b51c525501e506ef0bca..a329edb2272063b638352da5843976e134217dc6 100644
|
| --- a/src/com/dom_distiller/client/sax/Attributes.java
|
| +++ b/src/com/dom_distiller/client/sax/Attributes.java
|
| @@ -5,12 +5,9 @@
|
| package com.dom_distiller.client.sax;
|
|
|
| public interface Attributes {
|
| -
|
| - public String getValue(String key);
|
| - public String getURI(int index);
|
| - public String getLocalName(int index);
|
| - public String getQName(int index);
|
| - public String getType(int index);
|
| - public String getValue(int index);
|
| - public int getLength();
|
| + String getValue(String key);
|
| + int getIndex(String key);
|
| + String getName(int index);
|
| + String getValue(int index);
|
| + int getLength();
|
| }
|
|
|