Package ucar.unidata.view.sounding
Interface WindProfileDisplayRenderer
- All Known Implementing Classes:
HodographDisplayRendererJ3D
,WindStaffDisplayRenderer
public interface WindProfileDisplayRenderer
Provides an interface to a VisAD DisplayRenderer for displaying wind
profiles.
- Version:
- $Id: WindProfileDisplayRenderer.java,v 1.10 2005/05/13 18:33:41 jeffmc Exp $
- Author:
- Steven R. Emmerson, Unidata/UCAR
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a PropertyChangeListener for changes to the cursor position.double[]
Returns the cursor position.void
Removes a PropertyChangeListener for changes to the cursor position.void
setBoxOn
(boolean on) Sets the visibility of the VisAD box.void
setCursorStringOn
(boolean on) Sets the visibility of the cursor strings.void
Sets the cursor string vector.
-
Method Details
-
setCursorStringVector
void setCursorStringVector()Sets the cursor string vector. -
getCursorPosition
double[] getCursorPosition()Returns the cursor position.- Returns:
- The cursor position.
-
setBoxOn
Sets the visibility of the VisAD box.- Parameters:
on
- Whether or not the box should be visible.- Throws:
VisADException
- VisAD failure.RemoteException
- Java RMI failure.
-
setCursorStringOn
void setCursorStringOn(boolean on) Sets the visibility of the cursor strings.- Parameters:
on
- Whether or not the cursor strings should be visible.
-
addCursorPositionListener
Adds a PropertyChangeListener for changes to the cursor position.- Parameters:
listener
- The change listener.
-
removeCursorPositionListener
Removes a PropertyChangeListener for changes to the cursor position.- Parameters:
listener
- The change listener.
-