Uses of Interface
mgui.interfaces.attributes.AttributeObject
Package | Description |
---|---|
mgui.datasources |
This package contains the core classes for data source functionality.
|
mgui.datasources.mysql |
Data source classes specific to MySQL functionality.
|
mgui.datasources.odbc |
Data source classes specific to ODBC functionality.
|
mgui.datasources.postgresql |
Data source classes specific to PostgreSQL functionality.
|
mgui.datasources.tinysql |
Data source classes specific to TinySQL functionality.
|
mgui.geometry.mesh |
Provides classes representing and operating on 3D mesh shapes.
|
mgui.geometry.neuro.mesh | |
mgui.geometry.volume |
Provides classes for representing and operating on 3D volume shapes.
|
mgui.graphs.networks |
Classes representing network graphs.
|
mgui.interfaces |
This package contains all main/abstract interface objects (object which provides user interations)
for ModelGUI.
|
mgui.interfaces.attributes |
Provides a standard updatable attribute object which can fire events for all interface objects.
|
mgui.interfaces.attributes.video |
Classes allowing video tasks to read/modify object attributes.
|
mgui.interfaces.cocomac |
Provides interfaces with the CoCoMac database.
|
mgui.interfaces.console |
Provides an interactive system console (currently view only).
|
mgui.interfaces.datasources |
This package provides interface objects which allow the user to interface with the
core data source classes.
|
mgui.interfaces.graphics |
Provides graphical windows for user interaction with model objects.
|
mgui.interfaces.graphics.util |
Utility classes operating on 2D and 3D graphics objects.
|
mgui.interfaces.graphics.video |
Provides classes to generate videos from graphics windows.
|
mgui.interfaces.graphs |
Provides an interface for user interaction with graph objects.
|
mgui.interfaces.io |
This package contains all classes which perform input/output functions.
|
mgui.interfaces.layouts | |
mgui.interfaces.maps |
Provides a set a maps for use by ModelGUI objects.
|
mgui.interfaces.models |
Base classes for specifying dynamic models.
|
mgui.interfaces.neuro | |
mgui.interfaces.neuro.imaging.camino | |
mgui.interfaces.pipelines |
This package provides interfaces for user interaction with pipelines.
|
mgui.interfaces.plots |
Provides 2D and 3D plotting functionality.
|
mgui.interfaces.plots.mgui | |
mgui.interfaces.plots.osp |
Plots using the Open Source Physics (OSP) library.
|
mgui.interfaces.plots.sgt |
Plots using the Scientific Graphics Toolkit (SGT) library.
|
mgui.interfaces.projects |
Provides an interface for projects, which specify file/URL organization and I/O operations
|
mgui.interfaces.queries |
Provides querying functionality for interface objects.
|
mgui.interfaces.shapes |
This package provides interfaces for user interaction with shapes and shape models.
|
mgui.interfaces.shapes.dynamic | |
mgui.interfaces.shapes.graphs | |
mgui.interfaces.shapes.mesh | |
mgui.interfaces.shapes.neuro | |
mgui.interfaces.shapes.paths | |
mgui.interfaces.shapes.selection | |
mgui.interfaces.shapes.util | |
mgui.interfaces.shapes.video | |
mgui.interfaces.shapes.volume | |
mgui.interfaces.tables |
Provides object interaction via a JTable.
|
mgui.interfaces.tools |
Provides a framework for "tool" objects, which allow the user to modify or
interrogate model objects.
|
mgui.interfaces.trees |
Provides object interaction via a JTree
|
mgui.interfaces.util |
Utility classes for general operations.
|
mgui.interfaces.variables | |
mgui.interfaces.variables.tables | |
mgui.models.dynamic.functions | |
mgui.models.networks | |
mgui.models.networks.components | |
mgui.models.updaters | |
mgui.morph.sections | |
mgui.neuro.components | |
mgui.neuro.components.compartments | |
mgui.neuro.components.cortical | |
mgui.neuro.components.cortical.functions | |
mgui.neuro.components.cortical.simple | |
mgui.neuro.components.simple | |
mgui.neuro.components.types | |
mgui.neuro.graphs | |
mgui.neuro.networks | |
mgui.neuro.updaters |
-
Uses of AttributeObject in mgui.datasources
Classes in mgui.datasources that implement AttributeObject Modifier and Type Class Description class
DataConnection
Specifies a basic JDBC database connection, including: JDBC driver URL Connection name File location Login Password //TODO implement security on thisclass
DataSourceDriver
Defines a JDBC driver for aDataConnection
. -
Uses of AttributeObject in mgui.datasources.mysql
Classes in mgui.datasources.mysql that implement AttributeObject Modifier and Type Class Description class
MySQLDriver
Specifies the driver for MySQL connectivity. -
Uses of AttributeObject in mgui.datasources.odbc
Classes in mgui.datasources.odbc that implement AttributeObject Modifier and Type Class Description class
JdbcOdbcDriver
Specifies the driver for the JDBC-ODBC bridge -
Uses of AttributeObject in mgui.datasources.postgresql
Classes in mgui.datasources.postgresql that implement AttributeObject Modifier and Type Class Description class
PostgreSQLDriver
Specifies the driver for PostgreSQL connectivity. -
Uses of AttributeObject in mgui.datasources.tinysql
Classes in mgui.datasources.tinysql that implement AttributeObject Modifier and Type Class Description class
TinySQLDriver
Specifies the driver for TinySQL connectivity. -
Uses of AttributeObject in mgui.geometry.mesh
Classes in mgui.geometry.mesh that implement AttributeObject Modifier and Type Class Description class
MeshEngine
Engine for performing mesh-based algorithms. -
Uses of AttributeObject in mgui.geometry.neuro.mesh
Classes in mgui.geometry.neuro.mesh that implement AttributeObject Modifier and Type Class Description class
NeuroMeshEngine
Engine for performing functions on cortical surfaces and other objects. -
Uses of AttributeObject in mgui.geometry.volume
Classes in mgui.geometry.volume that implement AttributeObject Modifier and Type Class Description class
VolumeEngine
Engine to perform built-in operations on volumes. -
Uses of AttributeObject in mgui.graphs.networks
Classes in mgui.graphs.networks that implement AttributeObject Modifier and Type Class Description class
AbstractNetworkGraph
A graph which explicitly represents a connected network. -
Uses of AttributeObject in mgui.interfaces
Classes in mgui.interfaces that implement AttributeObject Modifier and Type Class Description class
InterfaceButtonPanel
Interface panel displaying a list of tool-related buttons.class
InterfaceComboPanel
Interface panel allowing for the display of multiple interface panels, selected by a combo box.class
InterfaceDisplayPanel
Main interface panel for displaying data graphically.class
InterfaceHideablePanel
class
InterfaceListPanel
class
InterfacePanel
Base class for all Swing panels (i.e., extensions ofJPanel
) to be show in an instance ofInterfaceDisplayPanel
.class
InterfaceSelectionPanel
Provides an interface for creating and managing shape selection sets.class
InterfaceSplitPanel
Displays twoInterfaceGraphicWindow
s, split either horizontally or vertically.class
InterfaceStatusBarPanel
Interface panel which acts as a status bar for a given instance ofInterfaceFrame
.class
InterfaceTabbedDisplayPanel
This class extendsInterfaceDisplayPanel
in order to provide a tabbed window pane, similar to a typical web browser.Methods in mgui.interfaces that return types with arguments of type AttributeObject Modifier and Type Method Description java.util.ArrayList<AttributeObject>
InterfaceWorkspace. getAttributeObjects()
Returns a list of all the attribute objects contained in this workspace.Methods in mgui.interfaces with parameters of type AttributeObject Modifier and Type Method Description void
InterfaceWorkspace. showAttributeDialog(AttributeObject object)
-
Uses of AttributeObject in mgui.interfaces.attributes
Classes in mgui.interfaces.attributes that implement AttributeObject Modifier and Type Class Description class
InterfaceAttributePanel
Panel to display and modify a given AttributeList.Methods in mgui.interfaces.attributes with parameters of type AttributeObject Modifier and Type Method Description void
AttributeDialogBox. setAttributeObject(AttributeObject object)
void
AttributeDialogBox. showDialog(AttributeObject object)
Constructors in mgui.interfaces.attributes with parameters of type AttributeObject Constructor Description AttributeDialogBox(javax.swing.JFrame frame, AttributeObject object)
AttributeDialogBox(javax.swing.JFrame frame, AttributeObject object, java.lang.Class<?> list_class)
InterfaceAttributePanel(AttributeObject object)
-
Uses of AttributeObject in mgui.interfaces.attributes.video
Classes in mgui.interfaces.attributes.video that implement AttributeObject Modifier and Type Class Description class
AttributeObjectVideoTaskDialogPanel
Panel for defining an AttributeObjectTask.Fields in mgui.interfaces.attributes.video declared as AttributeObject Modifier and Type Field Description AttributeObject
AttributeObjectVideoTask. object
Constructors in mgui.interfaces.attributes.video with parameters of type AttributeObject Constructor Description AttributeObjectVideoTask(long start, long stop, AttributeObject object, java.lang.String attribute, java.lang.Object start_value)
Constructs a basic set attribute task (no iteration)AttributeObjectVideoTask(long start, long stop, AttributeObject object, java.lang.String attribute, java.lang.Object start_value, java.lang.Object end_value, boolean incremental, double step)
Constructs a set attribute task with possible iteration -
Uses of AttributeObject in mgui.interfaces.cocomac
Classes in mgui.interfaces.cocomac that implement AttributeObject Modifier and Type Class Description class
InterfaceCoCoMacPanel
-
Uses of AttributeObject in mgui.interfaces.console
Classes in mgui.interfaces.console that implement AttributeObject Modifier and Type Class Description class
InterfaceConsoleDisplay
Window which displays console output. -
Uses of AttributeObject in mgui.interfaces.datasources
Classes in mgui.interfaces.datasources that implement AttributeObject Modifier and Type Class Description class
DataTableModel
Class extending AbstractTableModel to act as a model for JTable, and in particular for use by InterfaceDataTable.class
InterfaceDatasourcePanel
Interface panel for displaying, querying, and managing tables and queries in a connected data source. -
Uses of AttributeObject in mgui.interfaces.graphics
Classes in mgui.interfaces.graphics that implement AttributeObject Modifier and Type Class Description class
Graphic2DGrid
Defines a 2D grid, for display in anInterfaceGraphic2D
window.class
InterfaceGraphic<T extends Tool>
The base class for all graphical interface windows.class
InterfaceGraphic2D
Graphical interface window for display 2D shapes (Shape2DInt).class
InterfaceGraphic3D
Interface class for Java3D display.class
InterfaceGraphicPanel
Panel to define the display windows in InterfaceDisplayPanel, including: 1.class
InterfaceGraphicWindow
Provides a title for anInterfaceGraphic
window, which is a button. -
Uses of AttributeObject in mgui.interfaces.graphics.util
Classes in mgui.interfaces.graphics.util that implement AttributeObject Modifier and Type Class Description class
DrawingEngine
Utility class to perform drawing ofShape2DInt
shapes on aGraphics2D
. -
Uses of AttributeObject in mgui.interfaces.graphics.video
Classes in mgui.interfaces.graphics.video that implement AttributeObject Modifier and Type Class Description class
RotateView3DTaskDialogPanel
Dialog panel for a RotateView3DTask.class
SetView3DTaskDialogPanel
Dialog panel for a SetView3DTask.class
VideoTaskDialogPanel
A dialog defining aVideoTask
object. -
Uses of AttributeObject in mgui.interfaces.graphs
Classes in mgui.interfaces.graphs that implement AttributeObject Modifier and Type Class Description class
DefaultGraph
Default implementation of a Graph in ModelGUI.class
InterfaceAbstractGraph
Abstract representation of a Graph in modelGUI; extends Jung's SparseGraphclass
InterfaceGraphDisplay
Displays graphs and allows user interaction with them.class
InterfaceGraphDisplayTitle
-
Uses of AttributeObject in mgui.interfaces.io
Classes in mgui.interfaces.io that implement AttributeObject Modifier and Type Class Description class
InterfaceFilePanel
InterfacePanel
providing a standard interface for input & output operations. -
Uses of AttributeObject in mgui.interfaces.layouts
Classes in mgui.interfaces.layouts that implement AttributeObject Modifier and Type Class Description class
InterfaceLayoutPanel
Interface panel allowing interaction with a 2D Layout object.class
InterfaceLayoutWindow
Provides a window panel which specifies (via InterfaceLayoutObject) and renders a layout containing graphical objects from existing windows or objects. -
Uses of AttributeObject in mgui.interfaces.maps
Classes in mgui.interfaces.maps that implement AttributeObject Modifier and Type Class Description class
Camera3D
Represents a particular camera position in R3, defined by a center of rotation, line of sight vector, and a distance.class
Camera3D.CameraLightSource
class
ContinuousColourBar
Component displays a continuous colour map as a horizontal bar portraying the colour gradient between anchors.class
DiscreteColourMapLayout
Layout which displays a discrete colour map as a list of colour boxes, names, and optionally descriptions and indexes.class
InterfaceMapPanel
Panel to create and modify various maps, including colour maps and value maps. -
Uses of AttributeObject in mgui.interfaces.models
Classes in mgui.interfaces.models that implement AttributeObject Modifier and Type Class Description class
InterfaceDynamicModelPanel
-
Uses of AttributeObject in mgui.interfaces.neuro
Classes in mgui.interfaces.neuro that implement AttributeObject Modifier and Type Class Description class
InterfaceCorticalThicknessPanel
Panel providing an interface to cortical thickness databases and subject databases. -
Uses of AttributeObject in mgui.interfaces.neuro.imaging.camino
Classes in mgui.interfaces.neuro.imaging.camino that implement AttributeObject Modifier and Type Class Description class
InterfaceCaminoPanel
-
Uses of AttributeObject in mgui.interfaces.pipelines
Classes in mgui.interfaces.pipelines that implement AttributeObject Modifier and Type Class Description class
InterfacePipelinesPanel
Provides a GUI for: creating, viewing, modifying, deleting, and executing pipelines. -
Uses of AttributeObject in mgui.interfaces.plots
Classes in mgui.interfaces.plots that implement AttributeObject Modifier and Type Class Description class
InterfacePlot<T extends MguiNumber>
Represents an abstract plot object.class
InterfacePlotDisplay
General graphic interface for all plots.class
InterfacePlotMulti
Allows the display of multiple plots in a single InterfacePlot panel.class
InterfacePlotObject
Abstract representation of a plottable object; allows objects to be represented generically as interface objects.class
InterfacePlotPanel
-
Uses of AttributeObject in mgui.interfaces.plots.mgui
Classes in mgui.interfaces.plots.mgui that implement AttributeObject Modifier and Type Class Description class
InterfacePlotMgui
General class for displaying ModelGUI plots.class
MatrixImagePlot
Plots a matrix as an image, with a specified colour map. -
Uses of AttributeObject in mgui.interfaces.plots.osp
Classes in mgui.interfaces.plots.osp that implement AttributeObject Modifier and Type Class Description class
InterfacePlotOsp
General class for displaying Open Source Physics (OSP) plots.class
InterfaceStripChart
Displays an OSP StripChart; i.e., time vs. -
Uses of AttributeObject in mgui.interfaces.plots.sgt
Classes in mgui.interfaces.plots.sgt that implement AttributeObject Modifier and Type Class Description class
InterfacePlotSgt<T extends SgtPlotObject<?>>
Abstract class for displaying Scientific Graphics Toolkit (SGT) plots.class
SgtLine
A plotted line in a Scientific Graphics Toolkit (SGT) plot.class
SgtMultilinePlot
Displays a line plot using the Scientific Graphics Toolkit (SGT) library.class
SgtPlotObject<T extends gov.noaa.pmel.sgt.dm.SGTData>
A plottable object for a Scientific Graphics Toolkit (SGT) plot.class
SgtPointSet
Represents a set of points for an Scientific Graphics Toolkit (SGT) plot.class
SgtScatterplot
Displays an XY scatter plot using the Scientific Graphics Toolkit (SGT) library. -
Uses of AttributeObject in mgui.interfaces.projects
Classes in mgui.interfaces.projects that implement AttributeObject Modifier and Type Class Description class
InterfaceProject
Represents a modelGUI project, which specifies an organizational structure for persistent data related to a common project.class
InterfaceProjectPanel
Panel which provides a user interface for InterfaceProjects. -
Uses of AttributeObject in mgui.interfaces.queries
Classes in mgui.interfaces.queries that implement AttributeObject Modifier and Type Class Description class
InterfaceQueryPanel
Provides an interface for queries; selecting and launching query tools, displaying query results, etc. -
Uses of AttributeObject in mgui.interfaces.shapes
Classes in mgui.interfaces.shapes that implement AttributeObject Modifier and Type Class Description class
BoolPolygon2DInt
class
Box3DInt
class
Circle2DInt
class
Ellipse2DInt
Interface for aEllipse2D
shape.class
Image2DInt
Displays an image inside a Rect2D shape.class
Image3DInt
Draws a rectangular planar image in R3.class
InterfacePolygonPanel
class
InterfaceSectionSetPanel
Updated version of InterfaceSectionSet that sets a current section set for a given Graphic2D window, and sets current sections for that window.class
InterfaceShape
Abstract base class for all shape interfaces (ShapeInts).class
InterfaceShapesPanel
Interface panel providing a GUI for general shape-related functions.class
IntPolygon2DInt
class
Line2DInt
class
LPolygon2DInt
Light 2D polygon with no attributes (attributes are assignable)class
LPolygon3DInt
class
Mesh2DInt
A 2D representation of aMesh3DInt
object.class
Mesh3DInt
Interface for a Mesh3D shape.class
Plane3DInt
class
Point2DInt
class
PointSet2DInt
Shape interface for a set of 2D vertices.class
PointSet3DInt
Shape interface for a set of 3D points.class
Polygon2DInt
Interface for a 2D polygon.class
Polygon3DInt
Interface for a 3D polygon object.class
PolygonSet3DInt
Interface for a set of 3D polygons.class
Rect2DInt
Represents a 2D rectangle.class
Rect3DInt
class
SectionSet2DInt
Provides a 2D representation of a 3D section set, where it intersects a particular plane.class
SectionSet3DInt
Represents a set of parallel sections, based upon a reference plane (thisShape), and a spacing value.class
Shape2DInt
Base class for all interfaces to 2D geometrical shapes.class
Shape2DSelectionSet
class
Shape3DInt
Base class for allShape3D
interface objects.class
ShapeSet2DInt
Represents a set ofShape2DInt
objects.class
ShapeSet3DInt
Represents a set ofShape3DInt
objects.class
ShapeStatsPanel
Interface panel for performing statistical procedures on shapes.class
TensorVolume3DInt
class
TestTextureInt
class
Text2DInt
class
Text2DIntMouseCoords
class
Vector2DInt
class
Vector3DInt
class
VectorSet3DInt
class
Volume2DInt
2D sectional representation of a Volume3DInt.class
Volume3DInt
Class acting as interface to a volume shape, as defined by the Grid3D geometry class.class
VolumeSet3DInt
A set ofVolume3DInt
objects which render as an overlay image.class
X3DScene3DInt
-
Uses of AttributeObject in mgui.interfaces.shapes.dynamic
Classes in mgui.interfaces.shapes.dynamic that implement AttributeObject Modifier and Type Class Description class
Volume4DInt
Volume with 3 space and 1 time dimension. -
Uses of AttributeObject in mgui.interfaces.shapes.graphs
Classes in mgui.interfaces.shapes.graphs that implement AttributeObject Modifier and Type Class Description class
Graph2DInt
Graph shape represented in R2.class
Graph3DInt
Represents a graph as a 3D shape. -
Uses of AttributeObject in mgui.interfaces.shapes.mesh
Classes in mgui.interfaces.shapes.mesh that implement AttributeObject Modifier and Type Class Description class
InterfaceMeshPanel
Provides an interface toMesh3DInt
objects. -
Uses of AttributeObject in mgui.interfaces.shapes.neuro
Classes in mgui.interfaces.shapes.neuro that implement AttributeObject Modifier and Type Class Description class
CorticalHemisphereSet3DInt
class
CorticalSurfaceSet3DInt
Representation of a set of cortical surfaces, including grey matter (GM) interfaces with white matter (WM) and cerebrospinal fluid (CSF).class
InterfaceNeuroMeshPanel
class
InterfaceNeuroMeshPanel2
-
Uses of AttributeObject in mgui.interfaces.shapes.paths
Classes in mgui.interfaces.shapes.paths that implement AttributeObject Modifier and Type Class Description class
PathDataRenderer
Specifies how data attached to a path is to be rendered. -
Uses of AttributeObject in mgui.interfaces.shapes.selection
Classes in mgui.interfaces.shapes.selection that implement AttributeObject Modifier and Type Class Description class
InterfaceSelectionSet
Interface panel providing user interaction with selection sets.class
ShapeSelectionSet
-
Uses of AttributeObject in mgui.interfaces.shapes.util
Classes in mgui.interfaces.shapes.util that implement AttributeObject Modifier and Type Class Description class
ShapeEngine
Engine class for general shape functions. -
Uses of AttributeObject in mgui.interfaces.shapes.video
Classes in mgui.interfaces.shapes.video that implement AttributeObject Modifier and Type Class Description class
ChangeSectionVideoTaskDialogPanel
Dialog panel for a ChangeSectionVideoTask. -
Uses of AttributeObject in mgui.interfaces.shapes.volume
Classes in mgui.interfaces.shapes.volume that implement AttributeObject Modifier and Type Class Description class
InterfaceVolumePanel
Interface panel which allows the user to interact with Volume3DInt objects.class
InterfaceVolumeSetPanel
Panel to provide an interface with a volume overlay set. -
Uses of AttributeObject in mgui.interfaces.tables
Classes in mgui.interfaces.tables that implement AttributeObject Modifier and Type Class Description class
InterfaceDataTable
Interface panel for displaying a data table or query.class
InterfaceDataTableTitle
class
InterfaceTableModel
Abstract Table Model interface class. -
Uses of AttributeObject in mgui.interfaces.tools
Classes in mgui.interfaces.tools that implement AttributeObject Modifier and Type Class Description class
InterfaceTool2DPanel
Deprecated.class
InterfaceToolPanel
Panel displaying buttons for various tools, categorized. -
Uses of AttributeObject in mgui.interfaces.trees
Classes in mgui.interfaces.trees that implement AttributeObject Modifier and Type Class Description class
InterfaceTreePanel
Provides a tree interface for model objects -
Uses of AttributeObject in mgui.interfaces.util
Subinterfaces of AttributeObject in mgui.interfaces.util Modifier and Type Interface Description interface
Engine
Interface for all "engine" classes; i.e., instantiable classes which hold attributes and do work. -
Uses of AttributeObject in mgui.interfaces.variables
Classes in mgui.interfaces.variables that implement AttributeObject Modifier and Type Class Description class
MatrixInt
Interface for a 2D matrix, represented internally as a Jama matrix of doubles.class
StringVectorInt
Stores an array ofString
objects as a variable.class
VariableInt<T>
An interface to a variable object.class
VectorInt<T extends MguiNumber>
Represents an array of numeric values. -
Uses of AttributeObject in mgui.interfaces.variables.tables
Classes in mgui.interfaces.variables.tables that implement AttributeObject Modifier and Type Class Description class
VariableTableModel
-
Uses of AttributeObject in mgui.models.dynamic.functions
Classes in mgui.models.dynamic.functions that implement AttributeObject Modifier and Type Class Description class
DecayFunction
class
Function
Abstract class for all model functions.class
HardLimitFunction
class
ODEFunction
class
SigmoidFunction
As the name suggests... -
Uses of AttributeObject in mgui.models.networks
Classes in mgui.models.networks that implement AttributeObject Modifier and Type Class Description class
AbstractNetwork
class
AbstractNetworkModel
Abstract class for all neuronal models to inherit. -
Uses of AttributeObject in mgui.models.networks.components
Classes in mgui.models.networks.components that implement AttributeObject Modifier and Type Class Description class
AbstractNetworkComponent
Abstract generic class for neuro model components to inherit. -
Uses of AttributeObject in mgui.models.updaters
Classes in mgui.models.updaters that implement AttributeObject Modifier and Type Class Description class
LinearUpdater
class
PulseTrainUpdater
class
PulseTrainUpdater.CurrentPulse
class
SimpleEnvironmentUpdater
Default super class for environment updaters. -
Uses of AttributeObject in mgui.morph.sections
Classes in mgui.morph.sections that implement AttributeObject Modifier and Type Class Description class
InterfaceMorphPanel
class
InterfaceMorphPanel2
class
InterfaceRadialRep
class
InterfaceRadialRep2
class
MorphDrawEngine
class
MorphSections3DInt
Class representing a set of intermediate sections (subsections), such that each subsection holds an iterative morphing representation from some source shape to some target shape.class
RadialRep2DInt
-
Uses of AttributeObject in mgui.neuro.components
Classes in mgui.neuro.components that implement AttributeObject Modifier and Type Class Description class
AbstractAxon
Default class for an axon.class
AbstractDendrite
class
AbstractDendrites
Default class for dendrites.class
AbstractMotorNeuron
Abstract class for a motor (output) neuron.class
AbstractNeuroComponent
Abstract generic class for neuro model components to inherit.class
AbstractNeuron
class
AbstractNeuronalComponent
Abstract class for all neuronal components (i.e., components of instances ofNeuron
) to inherit.class
AbstractSensoryNeuron
class
AbstractSoma
class
AbstractSynapse
class
CorticalRegion
Represents a component at the resolution of a cortical region.class
CorticalVolume
A Volume3D-based representation of a cortical region. -
Uses of AttributeObject in mgui.neuro.components.compartments
Classes in mgui.neuro.components.compartments that implement AttributeObject Modifier and Type Class Description class
AbstractCompartment
Basic compartment for compartmental model components.class
CompartmentalComponent
Base abstract class for all components using a compartmental model.class
CompartmentalDendrite
Represents a dendrite whose activity is determined by the cable model (see Rawl etc.) and a compartmental discrete (numerical) approximation of its differential functions.class
CompartmentalNeuron
class
CompartmentalSoma
class
NeuronalCompartmentalComponent
class
SimpleCompartment
-
Uses of AttributeObject in mgui.neuro.components.cortical
Classes in mgui.neuro.components.cortical that implement AttributeObject Modifier and Type Class Description class
AbstractCorticalConnection
Abstract class serving as a base for all cortical connections.class
AbstractCorticalInput
class
AbstractCorticalOutput
class
AbstractCorticalRegion
Represents a component at the resolution of a cortical region.class
CorticalVolume
A Volume3D-based representation of a cortical region. -
Uses of AttributeObject in mgui.neuro.components.cortical.functions
Classes in mgui.neuro.components.cortical.functions that implement AttributeObject Modifier and Type Class Description class
BiexponentialFunction
Simplistic bi-exponential representation of population activity in a cortical region, which responds to input events.class
CorticalFunction
class
MorrisLecarFunction
Regional cortical model based upon Morris and Lecar (1981), and Breakspear et al. -
Uses of AttributeObject in mgui.neuro.components.cortical.simple
Classes in mgui.neuro.components.cortical.simple that implement AttributeObject Modifier and Type Class Description class
SimpleCorticalConnection
class
SimpleCorticalInput
class
SimpleCorticalOutput
class
SimpleCorticalRegion
-
Uses of AttributeObject in mgui.neuro.components.simple
Classes in mgui.neuro.components.simple that implement AttributeObject Modifier and Type Class Description class
SimpleAxon
class
SimpleDendrite
Simple dendrite, e.g., forSimpleNeuron
.class
SimpleDendrites
Basic input unit for, e.g.,SimpleNeuron
.class
SimpleMotorNeuron
Simple implementation of a motor (output) neuron.class
SimpleNeuron
Simple McCulloch-Pitts model of an artificial neuron.class
SimpleSensoryNeuron
A simple input (i.e., sensory) neuron.class
SimpleSoma
Simple soma for, e.g.,SimpleNeuron
.class
SimpleSynapse
Simple synapse for, e.g.,SimpleNeuron
-
Uses of AttributeObject in mgui.neuro.components.types
Classes in mgui.neuro.components.types that implement AttributeObject Modifier and Type Class Description class
ConnectableNeuron
-
Uses of AttributeObject in mgui.neuro.graphs
Classes in mgui.neuro.graphs that implement AttributeObject Modifier and Type Class Description class
CorticalNetworkGraph
class
NeuralNetGraph
Extension of JUNG's DirectedSparseGraph designed to specifically represent instances of NeuralNet. -
Uses of AttributeObject in mgui.neuro.networks
Classes in mgui.neuro.networks that implement AttributeObject Modifier and Type Class Description class
AbstractNeuralNet
Abstract class for all neural net classes to inherit.class
CorticalNetwork
class
KohonenNet
class
PerceptronNet
-
Uses of AttributeObject in mgui.neuro.updaters
Classes in mgui.neuro.updaters that implement AttributeObject Modifier and Type Class Description class
PulseTrainUpdater
class
PulseTrainUpdater.CurrentPulse