Package ptolemy.gui
Interface SettableQueryChooser
-
- All Known Implementing Classes:
PtolemyQuery.ActionableEntry
,QueryChooser
public interface SettableQueryChooser
Interface for custom query chooser boxes.- Since:
- Ptolemy II 8.0
- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- Pt.AcceptedRating:
- Red (cxh)
- Pt.ProposedRating:
- Red (cxh)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getQueryValue()
Return a string representation of the query.void
setQueryValue(java.lang.String value)
Set the string representation of the query.
-
-
-
Method Detail
-
setQueryValue
void setQueryValue(java.lang.String value)
Set the string representation of the query.- Parameters:
value
- the string value- See Also:
getQueryValue()
-
getQueryValue
java.lang.String getQueryValue()
Return a string representation of the query.- Returns:
- the string value
- See Also:
setQueryValue(String)
-
-