| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package com.dom_distiller.client.sax; | 5 package com.dom_distiller.client.sax; |
| 6 | 6 |
| 7 public interface Attributes { | 7 public interface Attributes { |
| 8 | 8 String getValue(String key); |
| 9 public String getValue(String key); | 9 int getIndex(String key); |
| 10 public String getURI(int index); | 10 String getName(int index); |
| 11 public String getLocalName(int index); | 11 String getValue(int index); |
| 12 public String getQName(int index); | 12 int getLength(); |
| 13 public String getType(int index); | |
| 14 public String getValue(int index); | |
| 15 public int getLength(); | |
| 16 } | 13 } |
| OLD | NEW |