Back to project page AndroidImageCache.
The source code is released under:
Przemys?aw Jakubczyk Polidea Sp. z o.o. Copyright (c) 2012 All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the follo...
If you think the Android project AndroidImageCache 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 pl.polidea.webimageview.processor; /* w ww. j a v a 2s . c o m*/ /** * @author Mateusz Grzechoci?ski <mateusz.grzechocinski@pl.polidea.pl> */ class Unknown extends AbstractBitmapProcessorCreationChain { @Override public AbstractBitmapProcessorCreationChain next() { throw new UnsupportedOperationException("Reached last element of chain"); } @Override protected Processor create() { return new Processor(Processor.ProcessorType.ORIGNAL); } }