net.aerith.misao.xml
Interface ReportDocumentUpdatedListener

All Known Implementing Classes:
IdentificationReportPane, IdentifiedStarChartPane, IdentifiedStarTable, PhotometryCalibrationInternalFrame, PixyDesktop, VsnetReportTable

public interface ReportDocumentUpdatedListener

The ReportDocumentUpdatedListener is a listener interface of the XML report document update.


Method Summary
 void astrometryUpdated(XmlReport report)
          Invoked when the measured position of the detected stars are updated.
 void dateUpdated(XmlReport report)
          Invoked when the image date is updated.
 void photometryUpdated(XmlReport report)
          Invoked when the measured magnitude of the detected stars are updated.
 void recordUpdated(XmlReport report)
          Invoked when a secondary record, like instruments, is updated.
 void starsUpdated(XmlReport report)
          Invoked when some stars are added, removed or replaced.
 

Method Detail

photometryUpdated

public void photometryUpdated(XmlReport report)
Invoked when the measured magnitude of the detected stars are updated.
Parameters:
report - the XML report document.

astrometryUpdated

public void astrometryUpdated(XmlReport report)
Invoked when the measured position of the detected stars are updated.
Parameters:
report - the XML report document.

starsUpdated

public void starsUpdated(XmlReport report)
Invoked when some stars are added, removed or replaced.
Parameters:
report - the XML report document.

dateUpdated

public void dateUpdated(XmlReport report)
Invoked when the image date is updated.
Parameters:
report - the XML report document.

recordUpdated

public void recordUpdated(XmlReport report)
Invoked when a secondary record, like instruments, is updated.
Parameters:
report - the XML report document.