Uses of Class
adams.gui.tools.spreadsheetprocessor.AbstractWidget
-
-
Uses of AbstractWidget in adams.gui.tools
Fields in adams.gui.tools declared as AbstractWidget Modifier and Type Field Description protected AbstractWidget
SpreadSheetProcessorPanel.WidgetPanel. m_CurrentWidget
the current widget.protected AbstractWidget
SpreadSheetProcessorPanel.WidgetPanel. m_DefaultWidget
the default widget.Fields in adams.gui.tools with type parameters of type AbstractWidget Modifier and Type Field Description protected BaseComboBox<AbstractWidget>
SpreadSheetProcessorPanel.WidgetPanel. m_ComboBoxWidgets
the combobox with the widgets.protected List<AbstractWidget>
SpreadSheetProcessorPanel.WidgetPanel. m_Widgets
the available widgets.Methods in adams.gui.tools that return AbstractWidget Modifier and Type Method Description AbstractWidget
SpreadSheetProcessorPanel.WidgetPanel. getCurrentWidget()
Returns the current widget.Methods in adams.gui.tools with parameters of type AbstractWidget Modifier and Type Method Description void
SpreadSheetProcessorPanel.WidgetPanel. setCurrentWidget(AbstractWidget value)
Sets the current widget.Constructors in adams.gui.tools with parameters of type AbstractWidget Constructor Description WidgetPanel(SpreadSheetProcessorPanel owner, String label, Class widgetClass, AbstractWidget defaultWidget)
Initializes the panel. -
Uses of AbstractWidget in adams.gui.tools.spreadsheetprocessor
Methods in adams.gui.tools.spreadsheetprocessor with parameters of type AbstractWidget Modifier and Type Method Description abstract void
AbstractWidget. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.int
AbstractWidget. compareTo(AbstractWidget o)
Compares the two widgets using their name. -
Uses of AbstractWidget in adams.gui.tools.spreadsheetprocessor.processors
Subclasses of AbstractWidget in adams.gui.tools.spreadsheetprocessor.processors Modifier and Type Class Description class
AbstractProcessor
Ancestor for processors.class
FlowProcessor
Uses a subflow for processing the spreadsheet.class
PassThroughProcessor
Just passes through the data.class
QueryProcessor
Uses an SQL-like query for processing the data.Methods in adams.gui.tools.spreadsheetprocessor.processors with parameters of type AbstractWidget Modifier and Type Method Description void
FlowProcessor. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
PassThroughProcessor. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
QueryProcessor. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible. -
Uses of AbstractWidget in adams.gui.tools.spreadsheetprocessor.sources
Subclasses of AbstractWidget in adams.gui.tools.spreadsheetprocessor.sources Modifier and Type Class Description class
AbstractSource
Ancestor for sources.class
ClipboardSource
For retrieving data from clipboard.class
DatabaseSource
For retrieving data from a database.class
FileBrowserSource
For browsing files and reading them.class
FileSource
For selecting a single file.Methods in adams.gui.tools.spreadsheetprocessor.sources with parameters of type AbstractWidget Modifier and Type Method Description void
ClipboardSource. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
DatabaseSource. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
FileBrowserSource. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
FileSource. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible. -
Uses of AbstractWidget in adams.gui.tools.spreadsheetprocessor.targets
Subclasses of AbstractWidget in adams.gui.tools.spreadsheetprocessor.targets Modifier and Type Class Description class
AbstractTarget
Ancestor for targets.class
ChartTarget
For displaying the data in a chart.class
ClipboardTarget
For copying the processed data to the clipboard.class
DatabaseTarget
For storing the data in a database.class
FileTarget
For storing the processed data in a file.Methods in adams.gui.tools.spreadsheetprocessor.targets with parameters of type AbstractWidget Modifier and Type Method Description void
ChartTarget. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
ClipboardTarget. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
DatabaseTarget. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.void
FileTarget. assign(AbstractWidget other)
Retrieves the values from the other widget, if possible.
-