Back to project page LimeLight.
The source code is released under:
GNU General Public License
If you think the Android project LimeLight listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0, as well as to the Additional Term regarding proper attribution. The latter is located in Term 11 of the License. If a copy of the MPL with the Additional Term was not distributed with this file, You can obtain one at http://static.fuzzhq.com/licenses/MPL *///from w w w . j a v a2s. co m package com.fuzz.android.limelight.util; import android.net.Uri; import com.fuzz.android.limelight.model.Book; import java.io.File; /** * @author Leonard Collins (Fuzz) */ public class IOUtils { static public Book openBook(File file) { return null; } static public Book openBook(Uri uri) { return null; } static public Book openBook(String url) { return null; } }