This commit is contained in:
Hannes Janetzek 2013-09-20 17:05:47 +02:00
parent 5ce9024eae
commit 19b32adc34

View File

@ -2,9 +2,19 @@ package org.oscim.backend;
import java.io.InputStream;
/**
* The Class AssetAdapter.
*/
public abstract class AssetAdapter {
public static AssetAdapter g;
/**
* Open file as stream.
*
* @param name the name
* @return the input stream
*/
public abstract InputStream openFileAsStream(String name);
}