Uses of Interface
adams.data.container.DataContainer
-
-
Uses of DataContainer in adams.data
Classes in adams.data with type parameters of type DataContainer Modifier and Type Interface Description interfaceCompressionSupporter<T extends DataContainer>Interface forDataContainerWriterclasses that support compression.interfaceRegionRecorder<T extends DataContainer>A scheme that also records regions in the data. -
Uses of DataContainer in adams.data.baseline
Classes in adams.data.baseline with type parameters of type DataContainer Modifier and Type Class Description classAbstractBaselineCorrection<T extends DataContainer>Abstract base class for baseline correction schemes.static classAbstractBaselineCorrection.BaselineCorrectionJob<T extends DataContainer>A job class specific to baseline correction schemes.classAbstractDatabaseConnectionBaselineCorrection<T extends DataContainer>Ancestor for baseline correction schemes that require database access.classAbstractLinearRegressionBased<T extends DataContainer>Abstract ancestor for linear regression based baseline correction schemes.classAbstractLOWESSBased<T extends DataContainer>Ancestor for LOWESS-based baseline correction schemes.classAbstractSavitzkyGolayBased<T extends DataContainer>Ancestor for SavitzkyGolay-based baseline correction schemes.classSlidingWindow<T extends DataContainer>Applies a baseline correction scheme on partitions of the data with a sliding window approach.Fields in adams.data.baseline declared as DataContainer Modifier and Type Field Description protected TAbstractBaselineCorrection.BaselineCorrectionJob. m_CorrectedDatathe corrected data.protected TAbstractBaselineCorrection.BaselineCorrectionJob. m_Datathe data to push through the baseline correction scheme.Methods in adams.data.baseline that return DataContainer Modifier and Type Method Description protected DataContainerPassThrough. processData(DataContainer data)Does nothing.Methods in adams.data.baseline with parameters of type DataContainer Modifier and Type Method Description protected DataContainerPassThrough. processData(DataContainer data)Does nothing. -
Uses of DataContainer in adams.data.compare
Methods in adams.data.compare with parameters of type DataContainer Modifier and Type Method Description protected IntegerDataContainer. doCompareObjects(DataContainer o1, DataContainer o2)Performs the actual comparison of the two objects. -
Uses of DataContainer in adams.data.container
Subinterfaces of DataContainer in adams.data.container Modifier and Type Interface Description interfaceDataContainerWithSpreadSheetSupport<T extends DataPoint>Data containers that can turn themselves into spreadsheets.Classes in adams.data.container that implement DataContainer Modifier and Type Class Description classAbstractDataContainer<T extends DataPoint>Superclass for all data structures.Fields in adams.data.container declared as DataContainer Modifier and Type Field Description protected DataContainerAbstractDataPoint. m_Parentthe container this data point belongs to.Methods in adams.data.container that return DataContainer Modifier and Type Method Description DataContainerAbstractDataContainer. getHeader()Returns an empty container with the same payload data as this one.DataContainerDataContainer. getHeader()Returns an empty container with the same payload data as this one.DataContainerAbstractDataPoint. getParent()Returns the spectrum this point belongs to.DataContainerDataPoint. getParent()Returns the container this point belongs to.static DataContainerAbstractDataContainer. newInstance(DataContainer cont)Returns a new (empty) instance of the same class as the specified container.Methods in adams.data.container with parameters of type DataContainer Modifier and Type Method Description voidAbstractDataContainer. assign(DataContainer<T> other)Obtains the stored variables from the other data point, but not the actual data points.voidDataContainer. assign(DataContainer<T> other)Obtains the stored variables from the other data point, but not the actual data points.voidAbstractDataContainer. mergeWith(DataContainer other)Adds copies of all the points from the given container to its own.static DataContainerAbstractDataContainer. newInstance(DataContainer cont)Returns a new (empty) instance of the same class as the specified container.voidAbstractDataPoint. setParent(DataContainer value)Sets the spectrum this point belongs to.voidDataPoint. setParent(DataContainer value)Sets the container this point belongs to. -
Uses of DataContainer in adams.data.conversion
Classes in adams.data.conversion that implement DataContainer Modifier and Type Class Description static classByteArrayToDataContainer.DummyContainerDummy container.static classDataContainerToByteArray.DummyContainerDummy container.static classDataContainerToString.DummyContainerDummy container.static classStringToDataContainer.DummyContainerDummy container. -
Uses of DataContainer in adams.data.filter
Classes in adams.data.filter with type parameters of type DataContainer Modifier and Type Class Description classAbstractAutocorrelation<T extends DataContainer>Abstract ancestor for autocorrelation filters.classAbstractBatchFilter<T extends DataContainer>Ancestor for batch filters.classAbstractDatabaseConnectionFilter<T extends DataContainer>Ancestor for filters that require database access.classAbstractDerivative<T extends DataContainer>Abstract ancestor for Derivative filters.classAbstractEquiDistance<T extends DataContainer>Abstract ancestor for filters that equi-distance the data.classAbstractEquiDistanceWithOffset<T extends DataContainer>Abstract ancestor for filters that equi-distance the data.classAbstractFastWavelet<T extends DataContainer>Abstract ancestor for Wavelet filters based on the JSci library.classAbstractFFT<T extends DataContainer>Abstract ancestor for Fast Fourier Transform filters based on the JSci library.classAbstractFilter<T extends DataContainer>Abstract base class for filters.static classAbstractFilter.FilterJob<T extends DataContainer>A job class specific to Filters.classAbstractGlobalDataContainerFilter<T extends DataContainer>Ancestor for global filters that are used to filter data containers coming from the database or from files.classAbstractHistogram<T extends DataContainer>Ancestor for filters that generate a histogram from the incoming data.classAbstractLOWESS<T extends DataContainer>Abstract ancestor for LOWESS filters.classAbstractPreFilter<T extends DataContainer>Abstract ancestor for filters that use pre-filtered data as the basis for manipulating the original data.classAbstractSavitzkyGolay<T extends DataContainer>Abstract ancestor for Savitzky-Golay filters.classAbstractSAX<T extends DataContainer>Ancestor for SAX filters.classAbstractSimpleSavitzkyGolay<T extends DataContainer>Abstract ancestor for simple Savitzky-Golay filters.classBaselineCorrection<T extends DataContainer>A filter that runs a baseline correction scheme over the data.interfaceBatchFilter<T extends DataContainer>Interface for filters that can filter multiple data containers in one go.classDownSample<T extends DataContainer>A filter that returns only every n-th data point.classDownSize<T extends DataContainer>A filter that picks a specified number of evenly spaced data points from the data.interfaceFilter<T extends DataContainer>Interface for filters.classMultiFilter<T extends DataContainer>A meta-filter that runs multiple filters over the data.classOutlierDetector<T extends DataContainer>A filter that runs an outlier detector over the data and attaches the generated detections as notes to the chromatogram.classPassThrough<T extends DataContainer>A dummy filter that just passes the data through.classRemoveNoise<T extends DataContainer & Mergeable>A filter that removes noise from the data with a user-supplied noise level algorithm.classReportFilter<T extends DataContainer>A filter that modifies the reports of data containers being passed through.classSmoothing<T extends DataContainer>A filter that runs a smoothing scheme over the data.interfaceTrainableBatchFilter<T extends DataContainer>Interface for trainable batch filters.Fields in adams.data.filter declared as DataContainer Modifier and Type Field Description protected TAbstractFilter.FilterJob. m_Datathe data to push through the filter.protected TAbstractFilter.FilterJob. m_FilteredDatathe filtered data.Methods in adams.data.filter that return DataContainer Modifier and Type Method Description T[]AbstractBatchFilter. batchFilter(T[] data)Batch filters the data.T[]BatchFilter. batchFilter(T[] data)Batch filters the data.T[]OutlierDetector. batchFilter(T[] data)Batch filters the data.protected abstract T[]AbstractBatchFilter. processBatchData(T[] data)Performs the actual batch filtering.protected T[]PassThrough. processBatchData(T[] data)Performs no filtering at all, just uses a copy of the input as filtered data.protected DataContainerGroovy. processData(DataContainer data)Performs the actual conversion.protected DataContainerScripted. processData(DataContainer data)Performs the actual filtering.Methods in adams.data.filter with parameters of type DataContainer Modifier and Type Method Description T[]AbstractBatchFilter. batchFilter(T[] data)Batch filters the data.T[]BatchFilter. batchFilter(T[] data)Batch filters the data.T[]OutlierDetector. batchFilter(T[] data)Batch filters the data.protected voidAbstractBatchFilter. checkBatchData(T[] data)The default implementation only checks whether there is any data set.protected voidAbstractScriptedFilter. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected voidGroovy. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected voidScripted. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected abstract T[]AbstractBatchFilter. processBatchData(T[] data)Performs the actual batch filtering.protected T[]PassThrough. processBatchData(T[] data)Performs no filtering at all, just uses a copy of the input as filtered data.protected DataContainerGroovy. processData(DataContainer data)Performs the actual conversion.protected DataContainerScripted. processData(DataContainer data)Performs the actual filtering.voidOutlierDetector. trainFilter(T[] data)Trains the filter with the specified data.voidTrainableBatchFilter. trainFilter(T[] data)Trains the filter with the specified data. -
Uses of DataContainer in adams.data.instance
Classes in adams.data.instance that implement DataContainer Modifier and Type Class Description classInstanceStores values from weka.core.Instance objects, with X being the attribute index (integer) and Y being the internal value (double).Methods in adams.data.instance with parameters of type DataContainer Modifier and Type Method Description voidInstance. assign(DataContainer<InstancePoint> other)Obtains the stored variables from the other data point, but not the actual data points. -
Uses of DataContainer in adams.data.instances
Classes in adams.data.instances with type parameters of type DataContainer Modifier and Type Class Description classAbstractInstanceGenerator<T extends DataContainer & ReportHandler>Abstract base class for schemes that turn temperature profiles into weka.core.Instance objects. -
Uses of DataContainer in adams.data.io.input
Classes in adams.data.io.input with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerReader<T extends DataContainer>Abstract ancestor for readers that read files in various formats and turn them into data containers.interfaceDataContainerReader<T extends DataContainer>Interface for readers that read files in various formats and turn them into data containers.interfaceStreamableBinaryDataContainerReader<T extends DataContainer>Indicator interface forStreamableDataContainerReaderclasses that use binary data.interfaceStreamableDataContainerReader<T extends DataContainer>Interface forDataContainerReaderreaders that can read fromInputStreams.interfaceStreamableTextBasedDataContainerReader<T extends DataContainer>Indicator interface forStreamableDataContainerReaderclasses that use text-based data. -
Uses of DataContainer in adams.data.io.output
Classes in adams.data.io.output with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerWriter<T extends DataContainer>Abstract ancestor for writers that write data containers to files in various formats.interfaceDataContainerWriter<T extends DataContainer>Interface for writers that write data containers to files in various formats.interfaceStreamableBinaryDataContainerWriter<T extends DataContainer>Indicator interface forStreamableDataContainerWriterclasses that use binary data.interfaceStreamableDataContainerWriter<T extends DataContainer>Interface forDataContainerWriterclasses that can write toOutputStreams.interfaceStreamableTextBasedDataContainerWriter<T extends DataContainer>Indicator interface forStreamableDataContainerWriterclasses that use text-based data. -
Uses of DataContainer in adams.data.noise
Classes in adams.data.noise with type parameters of type DataContainer Modifier and Type Class Description classAbstractDatabaseConnectionDenoiser<T extends DataContainer>Ancestor for denoisers that require database access.classAbstractDenoiser<T extends DataContainer>An abstract super class for algorithms that remove noise from data.static classAbstractDenoiser.DenoiserJob<T extends DataContainer>A job class specific to denoisers.Fields in adams.data.noise declared as DataContainer Modifier and Type Field Description protected TAbstractDenoiser.DenoiserJob. m_Datathe data to push through the denoiser.protected TAbstractDenoiser.DenoiserJob. m_DenoisedDatathe denoised data.Methods in adams.data.noise that return DataContainer Modifier and Type Method Description protected DataContainerPassThrough. processData(DataContainer data)Performs the actual denoising - just copies the input data to the output.Methods in adams.data.noise with parameters of type DataContainer Modifier and Type Method Description protected DataContainerPassThrough. processData(DataContainer data)Performs the actual denoising - just copies the input data to the output. -
Uses of DataContainer in adams.data.outlier
Classes in adams.data.outlier with type parameters of type DataContainer Modifier and Type Class Description classAbstractDatabaseConnectionOutlierDetector<T extends DataContainer>Ancestor for outlier detectors that require a database connection.classAbstractOutlierDetector<T extends DataContainer>Abstract base class for outlier detectors.static classAbstractOutlierDetector.DetectorJob<T extends DataContainer>A job class specific to outlier detectors.classFilteredOutlierDetector<T extends DataContainer>A meta detector that first filters the data through a filter before pushing it through the base detector.classMultiOutlierDetector<T extends DataContainer>A meta-detector that runs multiple outlier detectors over the data.interfaceOutlierDetector<T extends DataContainer>Interface for outlier detectors.interfaceTrainableOutlierDetector<T extends DataContainer>Interface for trainable outlier detectors.Fields in adams.data.outlier declared as DataContainer Modifier and Type Field Description protected TAbstractOutlierDetector.DetectorJob. m_Datathe data to push through the detector.Methods in adams.data.outlier with parameters of type DataContainer Modifier and Type Method Description protected voidAbstractScriptedOutlierDetector. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected voidGroovy. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected voidScripted. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected List<String>Excluded. processData(DataContainer data)Performs the actual detection.protected List<String>FieldRequired. processData(DataContainer data)Performs the actual detection.protected List<String>FilteredOutlierDetector. processData(DataContainer data)Performs the actual detection: filters the data and then runs it through the detector.protected List<String>Groovy. processData(DataContainer data)Performs the actual detection.protected List<String>MinMax. processData(DataContainer data)Performs the actual detection.protected List<String>PassThrough. processData(DataContainer data)Performs no detecting at all.protected List<String>Scripted. processData(DataContainer data)Performs the actual filtering.protected List<String>StringMatcher. processData(DataContainer data)Performs the actual detection.protected List<String>TargetRequired. processData(DataContainer data)Performs the actual detection.voidTrainableOutlierDetector. trainDetector(T[] data)Trains the detector with the specified data. -
Uses of DataContainer in adams.data.report
Classes in adams.data.report with type parameters of type DataContainer Modifier and Type Class Description classAbstractDatabaseConnectionReportFilter<T extends DataContainer>Ancestor for report filters that require database access.classAbstractReportFilter<T extends DataContainer>Abstract base class for filters that process Reports.classFilteredReportFilter<T extends DataContainer>This filter first pushes the data through the provided data filter before applying the actual report filter.Methods in adams.data.report that return DataContainer Modifier and Type Method Description protected DataContainerAbstractFilteredReportFilter. processData(DataContainer data)Performs the actual filtering.protected DataContainerGroovy. processData(DataContainer data)Performs the actual conversion.protected DataContainerPassThrough. processData(DataContainer data)Does nothing with the report.protected DataContainerRemoveByDataType. processData(DataContainer data)Performs the actual filtering.protected DataContainerRemoveByName. processData(DataContainer data)Performs the actual filtering.protected DataContainerScripted. processData(DataContainer data)Performs the actual filtering.Methods in adams.data.report with parameters of type DataContainer Modifier and Type Method Description protected voidAbstractScriptedReportFilter. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected voidGroovy. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected voidScripted. checkData(DataContainer data)The default implementation only checks whether there is any data set.protected DataContainerAbstractFilteredReportFilter. processData(DataContainer data)Performs the actual filtering.protected DataContainerGroovy. processData(DataContainer data)Performs the actual conversion.protected DataContainerPassThrough. processData(DataContainer data)Does nothing with the report.protected DataContainerRemoveByDataType. processData(DataContainer data)Performs the actual filtering.protected DataContainerRemoveByName. processData(DataContainer data)Performs the actual filtering.protected DataContainerScripted. processData(DataContainer data)Performs the actual filtering. -
Uses of DataContainer in adams.data.sequence
Classes in adams.data.sequence that implement DataContainer Modifier and Type Class Description classXYSequenceA sequence storing 2-dimensional points. -
Uses of DataContainer in adams.data.smoothing
Classes in adams.data.smoothing with type parameters of type DataContainer Modifier and Type Class Description classAbstractDatabaseConnectionSmoother<T extends DataContainer>Ancestor for filters that require database access.classAbstractLOWESSBased<T extends DataContainer>Abstract ancestor for LOWESS-based smoothers.classAbstractSavitzkyGolayBased<T extends DataContainer>Abstract ancestor for Savitzky-Golay-based smoothers.classAbstractSlidingWindow<T extends DataContainer>Abstract sliding window smoother.classAbstractSmoother<T extends DataContainer>Abstract base class for smoothing schemes.static classAbstractSmoother.SmootherJob<T extends DataContainer>A job class specific to smoothing schemes.Fields in adams.data.smoothing declared as DataContainer Modifier and Type Field Description protected TAbstractSmoother.SmootherJob. m_Datathe data to push through the smoothing scheme.protected TAbstractSmoother.SmootherJob. m_SmoothedDatathe smoothed data.Methods in adams.data.smoothing that return DataContainer Modifier and Type Method Description protected DataContainerPassThrough. processData(DataContainer data)Performs the actual smoothing.Methods in adams.data.smoothing with parameters of type DataContainer Modifier and Type Method Description protected DataContainerPassThrough. processData(DataContainer data)Performs the actual smoothing. -
Uses of DataContainer in adams.data.statistics
Classes in adams.data.statistics with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerStatistics<T extends DataContainer>Ancestor for all schemes that calculate statistics on data containers.classAbstractDataStatistic<T extends DataContainer>A class for statistics about data.Fields in adams.data.statistics declared as DataContainer Modifier and Type Field Description protected TAbstractDataStatistic. m_Datathe underlying chromatogram. -
Uses of DataContainer in adams.data.timeseries
Classes in adams.data.timeseries that implement DataContainer Modifier and Type Class Description classTimeseries<P extends TimeseriesPoint,R extends Report,S extends TimeseriesStatistic>Container for a full timeseries.Methods in adams.data.timeseries with parameters of type DataContainer Modifier and Type Method Description voidTimeseries. assign(DataContainer<P> other)Obtains the stored variables from the other data point, but not the actual data points. -
Uses of DataContainer in adams.db
Classes in adams.db with type parameters of type DataContainer Modifier and Type Interface Description interfaceDataProvider<T extends DataContainer>Interface for table classes that return the base data type used in a project.interfaceFilteredDataProvider<T extends DataContainer>Interface for data providers that normally returned the data filtered. -
Uses of DataContainer in adams.flow.container
Classes in adams.flow.container with type parameters of type DataContainer Modifier and Type Class Description classAbstractFilterContainer<F extends Filter,D extends DataContainer>A container for filters and the filtered data.Constructors in adams.flow.container with parameters of type DataContainer Constructor Description OutlierDetectorContainer(OutlierDetector detector, String[] detection, DataContainer input)Initializes the container with the specified plot name and no X value. -
Uses of DataContainer in adams.flow.control
Classes in adams.flow.control with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerFileChecker<T extends DataContainer>Abstract ancestor for transformers that check data container files whether they are consistents before passing on the file/file arrays. -
Uses of DataContainer in adams.flow.sink.sequenceplotter
Classes in adams.flow.sink.sequenceplotter that implement DataContainer Modifier and Type Class Description classSequencePlotSequenceExtendedXYSequence. -
Uses of DataContainer in adams.flow.transformer
Classes in adams.flow.transformer with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerAdd<T extends DataContainer>Ancestor for transformers that superimpose the incoming data container on one available from storage (or if not available, put the current one in storage) and forward the combined data container.classAbstractDataContainerAppend<T extends DataContainer>Ancestor for transformers that append the incoming data container to one available from storage (or if not available, put the current one in storage) and forward the combined data container.classAbstractDataContainerDbReader<T extends DataContainer>Ancestor for transformers that read containers from the database.classAbstractDataContainerDbWriter<T extends DataContainer & DatabaseIDHandler>Abstract ancestor for actors that import data containers into the database.classAbstractDataContainerFileImport<T extends DataContainer>Abstract ancestor for actors that import data containers.classAbstractDataContainerFileReader<T extends DataContainer>Abstract ancestor for actors that read data containers from disk.classAbstractDataContainerFileWriter<T extends DataContainer>Abstract ancestor for transformer actors that write data containers to disk.classAbstractDeleteDataContainer<T extends DataContainer>Ancestor for transformers that delete containers from the database.classAbstractInstanceGenerator<T extends DataContainer>Ancestor for transformers that turn data containers into WEKA Instance objects.interfaceDataContainerDbReader<T extends DataContainer>Interface for actors that read containers from the database.interfaceDataContainerDbWriter<T extends DataContainer & DatabaseIDHandler>Interface for actors that import data containers into the database.Methods in adams.flow.transformer with parameters of type DataContainer Modifier and Type Method Description protected StringAbstractDataContainerFileWriter. doWrite(T[] conts, T cont)Performs the actual writing. -
Uses of DataContainer in adams.flow.transformer.datacontainer
Classes in adams.flow.transformer.datacontainer with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerPostProcessor<T extends DataContainer>Ancestor forDataContainerpost-processors.classAbstractDataContainerPreProcessor<T extends DataContainer>Ancestor forDataContainerpre-processors.classNoPostProcessing<T extends DataContainer>Dummy, performs no post-processing at all.classNoPreProcessing<T extends DataContainer>Dummy, performs no pre-processing at all. -
Uses of DataContainer in adams.gui.chooser
Classes in adams.gui.chooser with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerFileChooser<T extends DataContainer,R extends DataContainerReader,W extends DataContainerWriter>A specialized JFileChooser that lists all available file Readers and Writers for data containers. -
Uses of DataContainer in adams.gui.event
Classes in adams.gui.event with type parameters of type DataContainer Modifier and Type Class Description classFilterEvent<T extends DataContainer>Event that gets sent from a FilterDialog.interfaceFilterListener<T extends DataContainer>Interface for classes that want to listen to events that trigger filtering. -
Uses of DataContainer in adams.gui.scripting
Method parameters in adams.gui.scripting with type arguments of type DataContainer Modifier and Type Method Description abstract voidAbstractDataContainerUpdatingPostProcessor. postProcess(List<? extends DataContainer> conts)Post-processes the containers.protected voidAbstractFileReaderScriptlet. storeReaderData(List<DataContainer> data, OptionHandler reader)Adds the reader setup and the file to the report.protected voidAbstractDataContainerUpdatingScriptlet. updateDataContainers(List<? extends DataContainer> conts, boolean overlay, HashSet<Integer> exclude)Updates the DataContainers in the GUI.protected voidAbstractDataContainerUpdatingScriptlet. updateDataContainers(List<? extends DataContainer> conts, boolean overlay, HashSet<Integer> exclude, List<Color> colors)Updates the DataContainers in the GUI.protected voidAbstractDataContainerUpdatingScriptlet. updateDataContainers(List<DataContainer> conts, boolean overlay)Updates the DataContainers in the GUI.protected voidAbstractDataContainerUpdatingScriptlet. updateDataContainers(List<DataContainer> conts, boolean overlay, List<Color> colors)Updates the DataContainers in the GUI. -
Uses of DataContainer in adams.gui.visualization.container
Classes in adams.gui.visualization.container with type parameters of type DataContainer Modifier and Type Class Description classAbstractDataContainerZoomOverviewPanel<P extends DataContainerPanel,C extends Paintlet,Z extends AbstractDataContainerZoomOverviewPaintlet,T extends DataContainer,M extends AbstractContainerManager>Panel that shows the zoom in the data container panel as overlay.classDataContainerPanel<T extends DataContainer,M extends AbstractContainerManager>Special panel for displaying the DataContainer data.classDataContainerPanelWithContainerList<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>Data container panel with a container list in the side panel.classDataContainerPanelWithSidePanel<T extends DataContainer,M extends AbstractContainerManager>Special panel for displaying the DataContainer data and a side panel with additional information.classFilterDialog<T extends DataContainer>A dialog that lets the user select a filter and also choose whether to overlay the original data or not. -
Uses of DataContainer in adams.gui.visualization.container.datacontainerpanel
Classes in adams.gui.visualization.container.datacontainerpanel with type parameters of type DataContainer Modifier and Type Class Description classAbstractPopupCustomizer<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>Ancestor for customizers for the data container panel. -
Uses of DataContainer in adams.gui.visualization.container.datacontainerpanel.containerlistpopup
Classes in adams.gui.visualization.container.datacontainerpanel.containerlistpopup with type parameters of type DataContainer Modifier and Type Class Description classAbstractContainerListPopupCustomizer<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>Ancestor for actions for the container list popup menu.static classAbstractContainerListPopupCustomizer.Context<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>Container for the context.classChooseColor<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For choosing color for containers.classCopyID<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For copying the IDs of the selected containers.classHideAll<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For hiding all containers.classNotes<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For displaying the notes of the selected containers.classRemove<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For removing the selected containers.classRemoveAll<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For removing all containers.classShowAll<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For showing all containers.classStoreColorInReport<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For storing the current color in the report.classStoreValueInReport<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For storing a value in the report.classToggleVisibility<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For toggling the visibility.classUpdateID<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For updating the IDs of the selected containers. -
Uses of DataContainer in adams.gui.visualization.container.datacontainerpanel.plotpopup
Classes in adams.gui.visualization.container.datacontainerpanel.plotpopup with type parameters of type DataContainer Modifier and Type Class Description classAbstractPlotPopupCustomizer<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>Ancestor for the plot popup menu.classAntiAliasing<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For enabling/disabling the anti-aliasing.classMarkers<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For enabling/disabling the markers.classNotes<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For displaying the notes.classSendTo<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For adding the "Send to" submenu.classSidePanel<T extends DataContainer,M extends AbstractContainerManager,C extends AbstractContainer>For showing/hiding the side panel. -
Uses of DataContainer in adams.gui.visualization.sequence.metadatacolor
Fields in adams.gui.visualization.sequence.metadatacolor with type parameters of type DataContainer Modifier and Type Field Description protected Map<DataContainer,KernelDensityEstimation.RenderState>Density. m_Cachethe cached states. -
Uses of DataContainer in adams.gui.visualization.spreadsheet
Classes in adams.gui.visualization.spreadsheet that implement DataContainer Modifier and Type Class Description classSpreadSheetRowStores values from Row objects, with X being the attribute index (integer) and Y being the internal value (double).Methods in adams.gui.visualization.spreadsheet with parameters of type DataContainer Modifier and Type Method Description voidSpreadSheetRow. assign(DataContainer<SpreadSheetRowPoint> other)Obtains the stored variables from the other data point, but not the actual data points.
-