Android Open Source - M3UPlayer M3 U Handler






From Project

Back to project page M3UPlayer.

License

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.

Java Source Code

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);
}




Java Source Code List

com.iptv.parser.M3UFile.java
com.iptv.parser.M3UHandler.java
com.iptv.parser.M3UHead.java
com.iptv.parser.M3UItem.java
com.iptv.parser.M3UParser.java
com.iptv.parser.M3UToolSet.java
com.iptv.parser.package-info.java
com.iptv.player.Player.java
com.iptv.utils.BaseActivity.java
com.iptv.utils.FileBrowser.java
com.iptv.utils.Interlude.java
com.iptv.utils.MessageBox.java
com.iptv.utils.SystemProperties.java