~josejuan-sanchez/+junk/original-jhv-experimental-version

« back to all changes in this revision

Viewing changes to src/viewmodel/src/org/helioviewer/viewmodel/view/SubimageDataView.java

  • Committer: José Juan Sánchez Hernández
  • Date: 2013-02-05 13:32:08 UTC
  • Revision ID: josejuan.sanchez@gmail.com-20130205133208-dfz1sh1uge5pjkny
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.helioviewer.viewmodel.view;
 
2
 
 
3
import org.helioviewer.viewmodel.imagedata.ImageData;
 
4
 
 
5
/**
 
6
 * View for providing image data.
 
7
 * 
 
8
 * <p>
 
9
 * This view provides the actual image data. Any view, which shall change the
 
10
 * content of the image, has to implement this interface. Within the view chain,
 
11
 * the image data is passed from view to view by using a an ImageData object.
 
12
 * 
 
13
 * <p>
 
14
 * For further information about image data, see
 
15
 * {@link org.helioviewer.viewmodel.imagedata}
 
16
 * 
 
17
 * @author Ludwig Schmidt
 
18
 */
 
19
public interface SubimageDataView extends View {
 
20
 
 
21
    /**
 
22
     * Returns the image data produced by the view
 
23
     * 
 
24
     * @return produced image data
 
25
     */
 
26
    public ImageData getSubimageData();
 
27
 
 
28
}