Back to project page ScalAR.
The source code is released under:
GNU General Public License
If you think the Android project ScalAR 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 edu.dhbw.andobjviewer.util; //from ww w .ja va 2s.c o m import java.io.BufferedReader; import java.io.File; import android.graphics.Bitmap; public abstract class BaseFileUtil { protected String baseFolder = null; /* (non-Javadoc) * @see edu.dhbw.andobjviewer.util.FileUtilInterface#getBaseFolder() */ public String getBaseFolder() { return baseFolder; } /* (non-Javadoc) * @see edu.dhbw.andobjviewer.util.FileUtilInterface#setBaseFolder(java.io.File) */ public void setBaseFolder(String baseFolder) { this.baseFolder = baseFolder; } /** * get an reader through it's filename * @param name * @return may be null, in case of an exception */ public abstract BufferedReader getReaderFromName(String name); /** * get a bitmap object through an filename. * @param name * @return may be null, in case of an exception */ public abstract Bitmap getBitmapFromName(String name); }