~andreas.hoelzl/jhelioviewer/jhv-formatting

« back to all changes in this revision

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

  • Committer: Andreas Hoelzl
  • Date: 2010-03-23 19:37:12 UTC
  • Revision ID: andreas_hoelzl_23@hotmail.com-20100323193712-wgx872c3tpo3y729
formattingĀ changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
import org.helioviewer.viewmodel.metadata.MetaData;
4
4
 
5
 
/** View to manage meta data.
6
 
 *
7
 
 * <p>This View manages meta data, so it is responsible for
8
 
 * generating and updating the meta data of the image.
9
 
 * 
10
 
 * <p>Usually, the implementation of this interface generates
11
 
 * new images, so usually it is also either a {@link ImageInfoView}
12
 
 * or a {@link LayeredView}.
13
 
 * 
14
 
 * <p>Note, that it is expected to have at least one MetaDataView
15
 
 * in every path of the view chain. To take care of this requirement,
16
 
 * implement the {@link ImageInfoView} as recommended.
17
 
 * 
18
 
 * <p>For further information about meta data, see
 
5
/**
 
6
 * View to manage meta data.
 
7
 * 
 
8
 * <p>
 
9
 * This View manages meta data, so it is responsible for generating and updating
 
10
 * the meta data of the image.
 
11
 * 
 
12
 * <p>
 
13
 * Usually, the implementation of this interface generates new images, so
 
14
 * usually it is also either a {@link ImageInfoView} or a {@link LayeredView}.
 
15
 * 
 
16
 * <p>
 
17
 * Note, that it is expected to have at least one MetaDataView in every path of
 
18
 * the view chain. To take care of this requirement, implement the
 
19
 * {@link ImageInfoView} as recommended.
 
20
 * 
 
21
 * <p>
 
22
 * For further information about meta data, see
19
23
 * {@link org.helioviewer.viewmodel.metadata}
20
24
 * 
21
25
 * @author Ludwig Schmidt
22
 
 *
 
26
 * 
23
27
 */
24
28
public interface MetaDataView extends View {
25
29
 
26
 
        /** Returns the meta data the image.
27
 
         * 
28
 
         * @return Meta data of the image
29
 
         */
 
30
    /**
 
31
     * Returns the meta data the image.
 
32
     * 
 
33
     * @return Meta data of the image
 
34
     */
30
35
    public MetaData getMetaData();
31
36
}