Parser.java :  » Client » hinii » com » angelo » hiniid » rest » parsers » Android Open Source

Android Open Source » Client » hinii 
hinii » com » angelo » hiniid » rest » parsers » Parser.java
package com.angelo.hiniid.rest.parsers;

import com.angelo.hiniid.rest.error.HiniiError;
import com.angelo.hiniid.rest.error.HiniiParseException;
import com.angelo.hiniid.rest.types.HiniiType;

import org.xmlpull.v1.XmlPullParser;

/**
 * @author Angelo Schiavone
 */
public interface Parser<T extends HiniiType> {

  public abstract T parse(XmlPullParser parser) throws HiniiError,
      HiniiParseException;

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.