View Javadoc

1   /*
2    * $Id: IGeneratedImageInformation.java,v 1.3 2010/08/10 14:02:30 oeuillot Exp $
3    */
4   package org.rcfaces.core.image;
5   
6   import org.rcfaces.core.internal.contentAccessor.IGeneratedResourceInformation;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.3 $ $Date: 2010/08/10 14:02:30 $
12   */
13  public interface IGeneratedImageInformation extends
14          IGeneratedResourceInformation {
15  
16      String WIDTH_PROPERTY = "org.rfcaces.core.model.WIDTH";
17  
18      String HEIGHT_PROPERTY = "org.rfcaces.core.model.HEIGHT";
19  
20      String ENCODER_MIME_TYPE_PROPERTY = "org.rcfaces.encoder.MIME_TYPE";
21  
22      // String ENCODER_SUFFIX_PROPERTY = "org.rcfaces.encoder.SUFFIX";
23  
24      void setImageHeight(int imageHeight);
25  
26      void setImageWidth(int imageWidth);
27  
28      String getEncoderMimeType();
29  
30      void setEncoderMimeType(String mimeType);
31  }