textbender.a.u.chromography
Interface Chromography

All Superinterfaces:
PropertyChangeListenerR.Registry, Remote
All Known Implementing Classes:
Chromography1

public interface Chromography
extends PropertyChangeListenerR.Registry, Remote

The chromography service. A single instance runs on the local host. Clients may obtain a reference to it from the service registry:

     Chromography chromography = serviceRegistry.getService( Chromography.class );
     


Method Summary
 ReferenceSeries getReferenceSeries()
          Returns the loaded reference series.
 void setReferenceSeries(ReferenceSeries newReferenceSeries)
          Loads a new reference series.
 
Methods inherited from interface PropertyChangeListenerR.Registry
addPropertyChangeListener, disabledPropertyChangeListener
 

Method Detail

getReferenceSeries

@ThreadSafe
ReferenceSeries getReferenceSeries()
                                   throws RemoteException
Returns the loaded reference series. The return value is bound to property name 'referenceSeries'.

Returns:
the loaded reference series, or null if none is loaded
Throws:
RemoteException
See Also:
setReferenceSeries(ReferenceSeries)

setReferenceSeries

@ThreadSafe
void setReferenceSeries(ReferenceSeries newReferenceSeries)
                        throws RemoteException
Loads a new reference series.

Parameters:
newReferenceSeries - to load
Throws:
RemoteException
See Also:
getReferenceSeries()