All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.content.res.AssetManager Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package android.content.res;

import java.io.IOException;
import java.io.InputStream;

public final class AssetManager {
	public final int addAssetPath(String path) {
		throw new UnsupportedOperationException("STUB");
	}

	public void close() {
		throw new UnsupportedOperationException("STUB");
	}

	public final InputStream open(String fileName) throws IOException {
		throw new UnsupportedOperationException("STUB");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy