Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: nectar/view/ImageFormatView.java


1   /*
2    * ImageFormatView.java
3    *
4    * Created on April 29, 2003, 2:27 PM
5    */
6   
7   package nectar.view;
8   
9   import nectar.record.ImageFormatRecord;
10  
11  /**
12   *
13   * @author  Administrator
14   */
15  public class ImageFormatView extends nectar.view.RecordView {
16      
17      /** Creates a new instance of ImageFormatView */
18      public ImageFormatView(ImageFormatRecord record) {
19          super(record);
20      }
21      
22      public String getUrl() { return ((ImageFormatRecord)record).getUrl(); }
23      public String getFormat() { return ((ImageFormatRecord)record).getFormat(); }
24      public String getWidth() { return ((ImageFormatRecord)record).getWidth().toString(); }
25      public String getHeight() { return ((ImageFormatRecord)record).getHeight().toString(); } 
26  }