You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ImageCache.java 582B

123456789101112131415161718192021
  1. /*
  2. * $Id$
  3. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  4. * For details on use and redistribution please refer to the
  5. * LICENSE file included with these sources.
  6. */
  7. package org.apache.fop.image;
  8. // FOP
  9. import org.apache.fop.fo.FOUserAgent;
  10. import org.apache.log.Logger;
  11. public interface ImageCache {
  12. public FopImage getImage(String url, FOUserAgent context);
  13. public void releaseImage(String url, FOUserAgent context);
  14. public void invalidateImage(String url, FOUserAgent context);
  15. public void removeContext(FOUserAgent context);
  16. }