SYMBOL INDEX (164 symbols across 9 files) FILE: Shutterbug/src/com/applidium/shutterbug/FetchableImageView.java class FetchableImageView (line 14) | public class FetchableImageView extends ImageView implements ShutterbugM... type FetchableImageViewListener (line 15) | public interface FetchableImageViewListener { method onImageFetched (line 16) | void onImageFetched(Bitmap bitmap, String url); method onImageFailure (line 18) | void onImageFailure(String url); method FetchableImageView (line 23) | public FetchableImageView(Context context, AttributeSet attrs) { method getListener (line 27) | public FetchableImageViewListener getListener() { method setListener (line 31) | public void setListener(FetchableImageViewListener listener) { method setImage (line 35) | public void setImage(String url) { method setImage (line 39) | public void setImage(String url, int desiredHeight, int desiredWidth) { method setImage (line 43) | public void setImage(String url, int placeholderDrawableId) { method setImage (line 47) | public void setImage(String url, Drawable placeholderDrawable) { method setImage (line 51) | public void setImage(String url, Drawable placeholderDrawable, int des... method cancelCurrentImageLoad (line 60) | public void cancelCurrentImageLoad() { method onImageSuccess (line 64) | @Override method onImageFailure (line 73) | @Override FILE: Shutterbug/src/com/applidium/shutterbug/cache/DiskLruCache.java class DiskLruCache (line 93) | public final class DiskLruCache implements Closeable { method copyOfRange (line 105) | @SuppressWarnings("unchecked") method deleteContents (line 125) | private static void deleteContents(File dir) throws IOException { method closeQuietly (line 141) | private static void closeQuietly(/*Auto*/Closeable closeable) { method readFully (line 153) | private static String readFully(Reader reader) throws IOException { method readAsciiLine (line 168) | private static String readAsciiLine(InputStream in) throws IOException { method call (line 252) | @Override public Void call() throws Exception { method DiskLruCache (line 267) | private DiskLruCache(File directory, int appVersion, int valueCount, l... method open (line 286) | public static DiskLruCache open(File directory, int appVersion, int va... method readJournal (line 317) | private void readJournal() throws IOException { method readJournalLine (line 346) | private void readJournalLine(String line) throws IOException { method processJournal (line 381) | private void processJournal() throws IOException { method rebuildJournal (line 404) | private synchronized void rebuildJournal() throws IOException { method deleteIfExists (line 433) | private static void deleteIfExists(File file) throws IOException { method get (line 451) | public synchronized Snapshot get(String key) throws IOException { method edit (line 491) | public Editor edit(String key) throws IOException { method edit (line 495) | private synchronized Editor edit(String key, long expectedSequenceNumb... method getDirectory (line 522) | public File getDirectory() { method maxSize (line 530) | public long maxSize() { method size (line 539) | public synchronized long size() { method completeEdit (line 543) | private synchronized void completeEdit(Editor editor, boolean success)... method journalRebuildRequired (line 597) | private boolean journalRebuildRequired() { method remove (line 609) | public synchronized boolean remove(String key) throws IOException { method isClosed (line 640) | public boolean isClosed() { method checkNotClosed (line 644) | private void checkNotClosed() { method flush (line 653) | public synchronized void flush() throws IOException { method close (line 662) | public synchronized void close() throws IOException { method trimToSize (line 676) | private void trimToSize() throws IOException { method delete (line 688) | public void delete() throws IOException { method validateKey (line 693) | private void validateKey(String key) { method inputStreamToString (line 700) | private static String inputStreamToString(InputStream in) throws IOExc... class Snapshot (line 707) | public final class Snapshot implements Closeable { method Snapshot (line 712) | private Snapshot(String key, long sequenceNumber, InputStream[] ins) { method edit (line 723) | public Editor edit() throws IOException { method getInputStream (line 730) | public InputStream getInputStream(int index) { method getString (line 737) | public String getString(int index) throws IOException { method close (line 741) | @Override public void close() { class Editor (line 751) | public final class Editor { method Editor (line 755) | private Editor(Entry entry) { method newInputStream (line 763) | public InputStream newInputStream(int index) throws IOException { method getString (line 779) | public String getString(int index) throws IOException { method newOutputStream (line 791) | public OutputStream newOutputStream(int index) throws IOException { method set (line 803) | public void set(int index, String value) throws IOException { method commit (line 817) | public void commit() throws IOException { method abort (line 830) | public void abort() throws IOException { class FaultHidingOutputStream (line 834) | private class FaultHidingOutputStream extends FilterOutputStream { method FaultHidingOutputStream (line 835) | private FaultHidingOutputStream(OutputStream out) { method write (line 839) | @Override public void write(int oneByte) { method write (line 847) | @Override public void write(byte[] buffer, int offset, int length) { method close (line 855) | @Override public void close() { method flush (line 863) | @Override public void flush() { class Entry (line 873) | private final class Entry { method Entry (line 888) | private Entry(String key) { method getLengths (line 893) | public String getLengths() throws IOException { method setLengths (line 904) | private void setLengths(String[] strings) throws IOException { method invalidLengths (line 918) | private IOException invalidLengths(String[] strings) throws IOExcept... method getCleanFile (line 922) | public File getCleanFile(int i) { method getDirtyFile (line 926) | public File getDirtyFile(int i) { FILE: Shutterbug/src/com/applidium/shutterbug/cache/ImageCache.java class ImageCache (line 20) | public class ImageCache { type ImageCacheListener (line 21) | public interface ImageCacheListener { method onImageFound (line 22) | void onImageFound(ImageCache imageCache, Bitmap bitmap, String key, ... method onImageNotFound (line 24) | void onImageNotFound(ImageCache imageCache, String key, DownloadRequ... method ImageCache (line 37) | ImageCache(Context context) { method getSharedImageCache (line 58) | public static ImageCache getSharedImageCache(Context context) { method queryCache (line 65) | public void queryCache(String cacheKey, ImageCacheListener listener, D... method storeToDisk (line 87) | public Snapshot storeToDisk(InputStream inputStream, String cacheKey) { method queryDiskCache (line 108) | public Snapshot queryDiskCache(String cacheKey) { method storeToMemory (line 117) | public void storeToMemory(Bitmap bitmap, String cacheKey) { method clear (line 121) | public void clear() { class BitmapDecoderTask (line 131) | private class BitmapDecoderTask extends AsyncTask { method BitmapDecoderTask (line 136) | public BitmapDecoderTask(String cacheKey, ImageCacheListener listene... method doInBackground (line 142) | @Override method onPostExecute (line 168) | @Override method openDiskCache (line 180) | private void openDiskCache() { FILE: Shutterbug/src/com/applidium/shutterbug/cache/LruCache.java class LruCache (line 24) | public class LruCache { method LruCache (line 44) | public LruCache(int maxSize) { method get (line 58) | public final V get(K key) { method put (line 112) | public final V put(K key, V value) { method trimToSize (line 140) | private void trimToSize(int maxSize) { method remove (line 170) | public final V remove(K key) { method entryRemoved (line 207) | protected void entryRemoved(boolean evicted, K key, V oldValue, V newV... method create (line 224) | protected V create(K key) { method safeSizeOf (line 228) | private int safeSizeOf(K key, V value) { method sizeOf (line 243) | protected int sizeOf(K key, V value) { method evictAll (line 250) | public final void evictAll() { method size (line 259) | public synchronized final int size() { method maxSize (line 268) | public synchronized final int maxSize() { method hitCount (line 275) | public synchronized final int hitCount() { method missCount (line 283) | public synchronized final int missCount() { method createCount (line 290) | public synchronized final int createCount() { method putCount (line 297) | public synchronized final int putCount() { method evictionCount (line 304) | public synchronized final int evictionCount() { method snapshot (line 312) | public synchronized final Map snapshot() { method toString (line 316) | @Override FILE: Shutterbug/src/com/applidium/shutterbug/downloader/ShutterbugDownloader.java class ShutterbugDownloader (line 15) | public class ShutterbugDownloader { type ShutterbugDownloaderListener (line 16) | public interface ShutterbugDownloaderListener { method onImageDownloadSuccess (line 17) | void onImageDownloadSuccess(ShutterbugDownloader downloader, InputSt... method onImageDownloadFailure (line 19) | void onImageDownloadFailure(ShutterbugDownloader downloader, Downloa... method ShutterbugDownloader (line 29) | public ShutterbugDownloader(String url, ShutterbugDownloaderListener l... method getUrl (line 35) | public String getUrl() { method getListener (line 39) | public ShutterbugDownloaderListener getListener() { method getImageData (line 43) | public byte[] getImageData() { method getDownloadRequest (line 47) | public DownloadRequest getDownloadRequest() { method start (line 51) | public void start() { method cancel (line 92) | public void cancel() { FILE: Shutterbug/src/com/applidium/shutterbug/utils/BitmapFactoryScale.java class BitmapFactoryScale (line 8) | public class BitmapFactoryScale { type InputStreamGenerator (line 9) | public interface InputStreamGenerator { method getStream (line 10) | public InputStream getStream(); method decodeSampledBitmapFromStream (line 13) | public static Bitmap decodeSampledBitmapFromStream(InputStreamGenerato... FILE: Shutterbug/src/com/applidium/shutterbug/utils/DownloadRequest.java class DownloadRequest (line 7) | public class DownloadRequest { method DownloadRequest (line 14) | public DownloadRequest(String url, ShutterbugManagerListener listener) { method DownloadRequest (line 19) | public DownloadRequest(String url, ShutterbugManagerListener listener,... method getSampleSize (line 27) | public int getSampleSize(BitmapFactory.Options options) { method getUrl (line 52) | public String getUrl() { method getListener (line 56) | public ShutterbugManagerListener getListener() { FILE: Shutterbug/src/com/applidium/shutterbug/utils/ShutterbugManager.java class ShutterbugManager (line 29) | public class ShutterbugManager implements ImageCacheListener, Shutterbug... type ShutterbugManagerListener (line 30) | public interface ShutterbugManagerListener { method onImageSuccess (line 31) | void onImageSuccess(ShutterbugManager imageManager, Bitmap bitmap, S... method onImageFailure (line 33) | void onImageFailure(ShutterbugManager imageManager, String url); method ShutterbugManager (line 49) | public ShutterbugManager(Context context) { method getSharedImageManager (line 53) | public static ShutterbugManager getSharedImageManager(Context context) { method download (line 60) | public void download(String url, ShutterbugManagerListener listener) { method download (line 64) | public void download(String url, ShutterbugManagerListener listener, i... method download (line 74) | public void download(String url, final ImageView imageView) { method download (line 78) | public void download(String url, final ImageView imageView, int desire... method getCacheKey (line 84) | public static String getCacheKey(String url) { method getListenerIndex (line 97) | private int getListenerIndex(ShutterbugManagerListener listener, Strin... method onImageFound (line 106) | @Override method onImageNotFound (line 122) | @Override method onImageDownloadSuccess (line 148) | @Override method onImageDownloadFailure (line 153) | @Override class InputStreamHandlingTask (line 169) | private class InputStreamHandlingTask extends AsyncTask