OspeInformationsUpdate.java 664 Bytes
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)
{
	
}


}