Uses of Interface
org.eclipse.ohf.stem.core.common.SanityChecker

Packages that use SanityChecker
org.eclipse.ohf.stem.core.common   
org.eclipse.ohf.stem.core.common.impl   
org.eclipse.ohf.stem.core.graph   
org.eclipse.ohf.stem.core.graph.impl   
org.eclipse.ohf.stem.core.graph.util   
org.eclipse.ohf.stem.core.model   
org.eclipse.ohf.stem.core.model.impl   
org.eclipse.ohf.stem.core.scenario   
org.eclipse.ohf.stem.core.scenario.impl   
org.eclipse.ohf.stem.core.sequencer   
org.eclipse.ohf.stem.core.sequencer.impl   
org.eclipse.ohf.stem.definitions.labels   
org.eclipse.ohf.stem.definitions.labels.impl   
org.eclipse.ohf.stem.definitions.labels.util   
org.eclipse.ohf.stem.definitions.nodes   
org.eclipse.ohf.stem.definitions.nodes.impl   
org.eclipse.ohf.stem.diseasemodels.standard   
org.eclipse.ohf.stem.diseasemodels.standard.impl   
org.eclipse.ohf.stem.diseasemodels.standard.util   
org.eclipse.ohf.stem.tests.util.decorators   
org.eclipse.ohf.stem.tests.util.decorators.impl   
org.eclipse.ohf.stem.tests.util.labels   
org.eclipse.ohf.stem.tests.util.labels.impl   
org.eclipse.ohf.stem.tests.util.labels.util   
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.common
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.core.common
 interface Identifiable
          An Identifiable instance represents an "identifiable" component in STEM.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.common.impl
 

Classes in org.eclipse.ohf.stem.core.common.impl that implement SanityChecker
 class IdentifiableImpl
          An implementation of the model object 'Identifiable'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.graph
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.core.graph
 interface DynamicEdgeLabel
          A DynamicEdgeLabel is a DynamicLabel that specifically labels an Edge.
 interface DynamicLabel
          A DynamicLabel is a Label that has two LabelValues instead of one.
 interface DynamicNodeLabel
          A DynamicNodeLabel is a DynamicLabel that specifically labels a Node.
 interface Edge
          An Edge represents a relationship between two Nodes.
 interface EdgeLabel
          An EdgeLabel is a Label that provides attributes to an Edge.
 interface Graph
          A Graph serves two roles in the STEM system.
 interface Label
          A Label represents attributes of either a Node, Edge, or Graph.
 interface LabelValue
          A LabelValue stores the attributes of a Label.
 interface Node
          A Node represents a real or abstract entity.
 interface NodeLabel
          A NodeLabel is a Label that provides attributes to a Node.
 interface StaticEdgeLabel
          A StaticEdgeLabel is an EdgeLabel that only has a single "current" LabelValue.
 interface StaticNodeLabel
          A StaticNodeLabel is a NodeLabel that only has a single "current" LabelValue.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.graph.impl
 

Classes in org.eclipse.ohf.stem.core.graph.impl that implement SanityChecker
 class DynamicEdgeLabelImpl
          An implementation of the model object 'Dynamic Edge Label'.
 class DynamicLabelImpl
          An implementation of the model object 'Dynamic Label'.
 class DynamicNodeLabelImpl
          An implementation of the model object 'Dynamic Node Label'.
 class EdgeImpl
          An implementation of the model object 'Edge'.
 class EdgeLabelImpl
          An implementation of the model object 'Edge Label'.
 class GraphImpl
          An implementation of the model object 'Graph'.
 class LabelImpl
          An implementation of the model object 'Label'.
 class LabelValueImpl
          An implementation of the model object 'Label Value'.
 class NodeImpl
          An implementation of the model object 'Node'.
 class NodeLabelImpl
          An implementation of the model object 'Node Label'.
 class StaticEdgeLabelImpl
          An implementation of the model object 'Static Edge Label'.
 class StaticNodeLabelImpl
          An implementation of the model object 'Static Node Label'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.graph.util
 

Methods in org.eclipse.ohf.stem.core.graph.util with parameters of type SanityChecker
 T GraphSwitch.caseSanityChecker(SanityChecker object)
          Returns the result of interpretting the object as an instance of 'Sanity Checker'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.model
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.core.model
 interface Decorator
          A Decorator represents a computational component that can modify or "decorate" a Graph.
 interface EdgeDecorator
          An EdgeDecorator is a Decorator that specifically modifies Edges and their Labels.
 interface GraphDecorator
          An GraphDecorator is a Decorator that specifically modifies Edges and their Labels.
 interface Model
          A Model contains all of the components necessary to create a canonical Graph suitable for simulation.
 interface NodeDecorator
          An GraphDecorator is a Decorator that specifically modifies Edges and their Labels.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.model.impl
 

Classes in org.eclipse.ohf.stem.core.model.impl that implement SanityChecker
 class DecoratorImpl
          An implementation of the model object 'Decorator'.
 class EdgeDecoratorImpl
          An implementation of the model object 'Edge Decorator'.
 class GraphDecoratorImpl
          An implementation of the model object 'Graph Decorator'.
 class ModelImpl
          An implementation of the model object 'Model'.
 class NodeDecoratorImpl
          An implementation of the model object 'Node Decorator'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.scenario
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.core.scenario
 interface Scenario
          A Scenario combines all of the components required to create and execute a simulation.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.scenario.impl
 

Classes in org.eclipse.ohf.stem.core.scenario.impl that implement SanityChecker
 class ScenarioImpl
          An implementation of the model object 'Scenario'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.sequencer
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.core.sequencer
 interface RealTimeSequencer
          A RealTimeSequencer is a SequentialSequencer that always as a starting time equal to the current time.
 interface Sequencer
          A Sequencer is the computational unit that determines the sequence of time points at which the state of the canonical Graph is determined.
 interface SequentialSequencer
          A SequentialSequencer is a Sequencer that generates sequential time points that are uniformly spaced at a constant interval of time.
 

Uses of SanityChecker in org.eclipse.ohf.stem.core.sequencer.impl
 

Classes in org.eclipse.ohf.stem.core.sequencer.impl that implement SanityChecker
 class RealTimeSequencerImpl
          An implementation of the model object 'Real Time Sequencer'.
 class SequencerImpl
          An implementation of the model object 'Sequencer'.
 class SequentialSequencerImpl
          An implementation of the model object 'Sequential Sequencer'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.definitions.labels
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.definitions.labels
 interface AreaLabel
          This interface defines a class in an EMF model for AreaLabel.
 interface AreaLabelValue
          This interface defines a class in an EMF model for a Area Label Value.
 interface CommonBorderRelationshipLabel
          This interface is an EMF definition of a class that represents a label for an Edge that represents a the relationship of two nodes sharing a common border
 interface CommonBorderRelationshipLabelValue
          This interface defines a class in an EMF model for a Common border Relationship Label Value.
 interface PhysicalRelationshipLabel
          This interface is an EMF definition of a class that represents a label for an Edge that represents a physical relationship between two nodes.
 interface PhysicalRelationshipLabelValue
          This class represents a physical relationship
 interface PopulationLabel
          This interface defines a class in an EMF model for PopulationLabel.
 interface PopulationLabelValue
          This interface defines a class in an EMF model for a Population Label Value.
 interface RelativePhysicalRelationshipLabel
          This interface is an EMF definition of a class that represents a label for an Edge that represents a relatvie physical relationship between two nodes.
 interface RelativePhysicalRelationshipLabelValue
          This interface defines a class in an EMF model for a Physical Relationship Label Value.
 interface TransportRelationshipLabel
          This interface is an EMF definition of a class that represents a label for an Edge that represents the physical transportation of population members between two nodes.
 interface TransportRelationshipLabelValue
          The value of a transportation relationship label is the current available capacity expressed as a proportion of the maximum capacity of the transportation mode/identifier.
 

Uses of SanityChecker in org.eclipse.ohf.stem.definitions.labels.impl
 

Classes in org.eclipse.ohf.stem.definitions.labels.impl that implement SanityChecker
 class AreaLabelImpl
          An implementation of the model object 'Area Label'.
 class AreaLabelValueImpl
          An implementation of the model object 'Area Label Value'.
 class CommonBorderRelationshipLabelImpl
          An implementation of the model object 'Common Border Relationship Label'.
 class CommonBorderRelationshipLabelValueImpl
          An implementation of the model object 'Common Border Relationship Label Value'.
 class PhysicalRelationshipLabelImpl
          An implementation of the model object 'Physical Relationship Label'.
 class PhysicalRelationshipLabelValueImpl
          An implementation of the model object 'Physical Relationship Label Value'.
 class PopulationLabelImpl
          An implementation of the model object 'Population Label'.
 class PopulationLabelValueImpl
          An implementation of the model object 'Population Label Value'.
 class RelativePhysicalRelationshipLabelImpl
          An implementation of the model object 'Relative Physical Relationship Label'.
 class RelativePhysicalRelationshipLabelValueImpl
          An implementation of the model object 'Relative Physical Relationship Label Value'.
 class TransportRelationshipLabelImpl
          An implementation of the model object 'Transport Relationship Label'.
 class TransportRelationshipLabelValueImpl
          An implementation of the model object 'Transport Relationship Label Value'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.definitions.labels.util
 

Methods in org.eclipse.ohf.stem.definitions.labels.util with parameters of type SanityChecker
 T LabelsSwitch.caseSanityChecker(SanityChecker object)
          Returns the result of interpretting the object as an instance of 'Sanity Checker'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.definitions.nodes
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.definitions.nodes
 interface GeographicFeature
          This interface defines a class in an EMF model for a Geographic Feature node.
 interface Region
          This interface defines a class in an EMF model for a Region node.
 

Uses of SanityChecker in org.eclipse.ohf.stem.definitions.nodes.impl
 

Classes in org.eclipse.ohf.stem.definitions.nodes.impl that implement SanityChecker
 class GeographicFeatureImpl
          An implementation of the model object 'Geographic Feature'.
 class RegionImpl
          An implementation of the model object 'Region'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.diseasemodels.standard
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.diseasemodels.standard
 interface AggregatingDiseaseModelState
          This class represents the state of an aggregate disease model at a label.
 interface AggregatingSEIRDiseaseModel
          This interface defines a class in an EMF model for an aggregating SEIR disease model.
 interface AggregatingSIDiseaseModel
          This interface defines a class in an EMF model for an aggregating SI disease model.
 interface AggregatingSIRDiseaseModel
          This interface defines a class in an EMF model for an aggregating SIR disease model.
 interface DeterministicSEIRDiseaseModel
          This interface defines a class in an EMF model for an Deterministic SEIR disease model.
 interface DeterministicSIDiseaseModel
          This interface defines a class in an EMF model for an Deterministic SI disease model.
 interface DeterministicSIRDiseaseModel
          This interface defines a class in an EMF model for an Deterministic SIR disease model.
 interface DiseaseModel
          This interface defines a class in an EMF model for an STEM Disease model.
 interface DiseaseModelLabel
          This interface defines a class in an EMF model for an STEM Disease model label.
 interface DiseaseModelLabelValue
          This interface defines a class in an EMF model for an disease model label value.
 interface DiseaseModelState
          This interface defines a class in an EMF model that contains state information for a STEM disease model's computations from one simulation cycle to another.
 interface Infector
          This interface defines a class in an EMF model for the initialization of an infectious population in a disease model.
 interface SEIR
          A DiseaseModel with four states Susceptible, Exposed, Infectious and Recovered(SEIR).
 interface SEIRLabel
          This interface defines a class in an EMF model for a standard SEIR disease model dynamic label.
 interface SEIRLabelValue
          This interface defines a class in an EMF model for an SEIR disease model label value.
 interface SI
          A DiseaseModel with two states Susceptible and Infectious (SI).
 interface SIDiseaseModelState
          This interface defines a class in an EMF model that contains state information for a SI STEM disease model's computations from one simulation cycle to another.
 interface SIInfector
          This interface defines a class in an EMF model for the initialization of an infectious population in a Standard disease model.
 interface SILabel
          This interface defines a class in an EMF model for an SI disease model dynamic label.
 interface SILabelValue
          This interface defines a class in an EMF model for an SI disease model label value.
 interface SIR
          A DiseaseModel with three states Susceptible, Infectious and Recovered(SIR).
 interface SIRLabel
          This interface defines a class in an EMF model for an SIR disease model dynamic label.
 interface SIRLabelValue
          This interface defines a class in an EMF model for an SIR disease model label value.
 interface StandardDiseaseModel
          This interface defines a class in an EMF model for a Standard disease model.
 interface StandardDiseaseModelLabel
          This interface defines a class in an EMF model for a Standard Disease model label.
 interface StandardDiseaseModelLabelValue
          This interface defines a class in an EMF model for an Standard disease model label value.
 interface StandardDiseaseModelState
          This interface defines a class in an EMF model that contains state information for a standard STEM disease model's computations from one simulation cycle to another.
 interface StandardInfector
          This interface defines a class in an EMF model for the initialization of an infectious population in a Standard disease model.
 interface StandardStochasticDiseaseModel
          This interface is an EMF model.
 interface StochasticDiseaseModel
          This interface defines an EMF model
 interface StochasticSEIRDiseaseModel
          This interface defines a class in an EMF model for an Stochastic SEIR disease model.
 interface StochasticSIDiseaseModel
          This interface defines a class in an EMF model for an Stochastic SI disease model.
 interface StochasticSIRDiseaseModel
          This interface defines a class in an EMF model for an Stochastic SIR disease model.
 

Uses of SanityChecker in org.eclipse.ohf.stem.diseasemodels.standard.impl
 

Classes in org.eclipse.ohf.stem.diseasemodels.standard.impl that implement SanityChecker
 class AggregatingDiseaseModelStateImpl
          An implementation of the model object 'Aggregating Disease Model State'.
 class AggregatingSEIRDiseaseModelImpl
          An implementation of the model object 'Aggregating SEIR Disease Model'.
 class AggregatingSIDiseaseModelImpl
          An implementation of the model object 'Aggregating SI Disease Model'.
 class AggregatingSIRDiseaseModelImpl
          An implementation of the model object 'Aggregating SIR Disease Model'.
 class DeterministicSEIRDiseaseModelImpl
          An implementation of the model object 'Deterministic SEIR Disease Model'.
 class DeterministicSIDiseaseModelImpl
          An implementation of the model object 'Deterministic SI Disease Model'.
 class DeterministicSIRDiseaseModelImpl
          An implementation of the model object 'Deterministic SIR Disease Model'.
 class DiseaseModelImpl
          An implementation of the model object 'Disease Model'.
 class DiseaseModelLabelImpl
          An implementation of the model object 'Disease Model Label'.
 class DiseaseModelLabelValueImpl
          An implementation of the model object 'Disease Model Label Value'.
 class DiseaseModelStateImpl
          An implementation of the model object 'Disease Model State'.
 class InfectorImpl
          An implementation of the model object 'Infector'.
 class SEIRImpl
          An implementation of the model object 'SEIR'.
 class SEIRLabelImpl
          An implementation of the model object 'SEIR Label'.
 class SEIRLabelValueImpl
          An implementation of the model object 'SEIR Label Value'.
 class SIDiseaseModelStateImpl
          An implementation of the model object 'SI Disease Model State'.
 class SIImpl
          An implementation of the model object 'SI'.
 class SIInfectorImpl
          An implementation of the model object 'SI Infector'.
 class SILabelImpl
          An implementation of the model object 'SI Label'.
 class SILabelValueImpl
          An implementation of the model object 'SI Label Value'.
 class SIRImpl
          An implementation of the model object 'SIR'.
 class SIRLabelImpl
          An implementation of the model object 'SIR Label'.
 class SIRLabelValueImpl
          An implementation of the model object 'SIR Label Value'.
 class StandardDiseaseModelImpl
          An implementation of the model object 'Disease Model'.
 class StandardDiseaseModelLabelImpl
          An implementation of the model object 'Disease Model Label'.
 class StandardDiseaseModelLabelValueImpl
          An implementation of the model object 'Disease Model Label Value'.
 class StandardDiseaseModelStateImpl
          An implementation of the model object 'Disease Model State'.
 class StandardInfectorImpl
          An implementation of the model object 'Infector'.
 class StandardStochasticDiseaseModelImpl
          An implementation of the model object 'Stochastic Disease Model'.
 class StochasticDiseaseModelImpl
          An implementation of the model object 'Stochastic Disease Model'.
 class StochasticSEIRDiseaseModelImpl
          An implementation of the model object 'Stochastic SEIR Disease Model'.
 class StochasticSIDiseaseModelImpl
          An implementation of the model object 'Stochastic SI Disease Model'.
 class StochasticSIRDiseaseModelImpl
          An implementation of the model object 'Stochastic SIR Disease Model'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.diseasemodels.standard.util
 

Methods in org.eclipse.ohf.stem.diseasemodels.standard.util with parameters of type SanityChecker
 T StandardSwitch.caseSanityChecker_1(SanityChecker object)
          Returns the result of interpretting the object as an instance of 'Sanity Checker'.
 T StandardSwitch.caseSanityChecker(SanityChecker object)
          Returns the result of interpretting the object as an instance of 'Sanity Checker'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.tests.util.decorators
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.tests.util.decorators
 interface TestEdgeDecorator1
          This interface represents the model of an abstract class in an EMF model that is an example of a EdgeDecorator implementation used for test purposes.
 interface TestGraphDecorator1
          This interface represents the model of an abstract class in an EMF model that is an example of a GraphDecorator implementation used for test purposes.
 interface TestNodeDecorator1
          This interface represents the model of an abstract class in an EMF model that is an example of a NodeDecorator implementation used for test purposes.
 interface TestScenarioGraphDecorator1
          This class represents a Graph decorator that decorates the canonical graph at Scenario initialization.
 

Uses of SanityChecker in org.eclipse.ohf.stem.tests.util.decorators.impl
 

Classes in org.eclipse.ohf.stem.tests.util.decorators.impl that implement SanityChecker
 class TestEdgeDecorator1Impl
          An implementation of the model object 'Test Edge Decorator1'.
 class TestGraphDecorator1Impl
          An implementation of the model object 'Test Graph Decorator1'.
 class TestNodeDecorator1Impl
          An implementation of the model object 'Test Node Decorator1'.
 class TestScenarioGraphDecorator1Impl
          An implementation of the model object 'Test Scenario Graph Decorator1'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.tests.util.labels
 

Subinterfaces of SanityChecker in org.eclipse.ohf.stem.tests.util.labels
 interface TestDynamicEdgeLabel
          This interface is for testing.
 interface TestDynamicLabel1
          This interface represents the model of an abstract class in an EMF model that is an example of a DynamicLabel implementation used for test purposes.
 interface TestDynamicNodeLabel
          This interface is for testing.
 interface TestIntegerLabelValue
          /** This interface represents the model of an abstract class in an EMF model that is an example of a LabelValue implementation used for test purposes.
 interface TestLabel
          This interface represents the model of an abstract class in an EMF model that is an example of a Label implementation used for test purposes.
 interface TestStaticEdgeLabel
          This is a test class.
 interface TestStaticNodeLabel
          This is a test class.
 

Uses of SanityChecker in org.eclipse.ohf.stem.tests.util.labels.impl
 

Classes in org.eclipse.ohf.stem.tests.util.labels.impl that implement SanityChecker
 class TestDynamicEdgeLabelImpl
          An implementation of the model object 'Test Dynamic Edge Label'.
 class TestDynamicLabel1Impl
          An implementation of the model object 'Test Dynamic Label1'.
 class TestDynamicNodeLabelImpl
          An implementation of the model object 'Test Dynamic Node Label'.
 class TestIntegerLabelValueImpl
          An implementation of the model object 'Test Integer Label Value'.
 class TestLabelImpl
          An implementation of the model object 'Test Label'.
 class TestStaticEdgeLabelImpl
          An implementation of the model object 'Test Static Edge Label'.
 class TestStaticNodeLabelImpl
          An implementation of the model object 'Test Static Node Label'.
 

Uses of SanityChecker in org.eclipse.ohf.stem.tests.util.labels.util
 

Methods in org.eclipse.ohf.stem.tests.util.labels.util with parameters of type SanityChecker
 T LabelsSwitch.caseSanityChecker(SanityChecker object)
          Returns the result of interpretting the object as an instance of 'Sanity Checker'.