Back to project page Tvdb-Api-Android.
The source code is released under:
Apache License
If you think the Android project Tvdb-Api-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sburba.tvdbapi.xml; // w w w . j a v a 2s. c om import java.util.Collection; import java.util.Map; public interface XmlObjectListParser<T> { public Collection<T> parseListFromXmlString(String xml) throws XmlException; public Collection<T> parseListFromXmlStrings(Map<String, String> xmlStrings) throws XmlException; }