Back to project page M3UPlayer.
The source code is released under:
Apache License
If you think the Android project M3UPlayer 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.iptv.parser; //from w ww . j a v a2 s.com /** * The handler. It's important to work with M3UParser. * * @author Ke */ public interface M3UHandler { /** * When M3UParser get a M3UHead, this method will be called. * * @param header * the instance of M3UHead. */ public void onReadEXTM3U(M3UHead header); /** * When M3UParser get a M3UItem, this method will be called. * * @param item * the instance of M3UItem. */ public void onReadEXTINF(M3UItem item); }