1 29 30 package com.caucho.quercus.lib.dom; 31 32 public class DOMStringList 33 extends DOMWrapper<org.w3c.dom.DOMStringList > 34 { 35 DOMStringList(DOMImplementation impl, org.w3c.dom.DOMStringList delegate) 36 { 37 super(impl, delegate); 38 } 39 40 public boolean contains(String str) 41 { 42 return _delegate.contains(str); 43 } 44 45 public int getLength() 46 { 47 return _delegate.getLength(); 48 } 49 50 public String item(int index) 51 { 52 return _delegate.item(index); 53 } 54 } 55 | Popular Tags |