Blame view

src/osp/ui/OspeInformationsUpdate.java 664 Bytes
fe0fb87e   Elodie Bourrec   First push to cre...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package osp.ui;

import osp.Image;
import osp.Mask;
import osp.SkyObject;
import osp.Slit;

public class OspeInformationsUpdate
{
	// Attributes
    // -----------
	
	/** Image characteristics	 */
private Image currentImage;
/** Mask characteristics	 */
private Mask currentMask;
/* Object characteristics	 */
private SkyObject currentObject;
/* Slit characteristics	 */
private Slit currentSlit;

/**
 * Constructs a new set of informations
 * 
*/
public OspeInformationsUpdate(OSPE_MainFrame p) 
{

	
}


public void writeImage(Image curIm)
{
	
}

public void writeMask(Image curIm, Mask m)
{
	
}


public void writeSkyObject(Image curIm,SkyObject sk)
{
	
}


}