Uses of Interface
org.eclipse.ohf.stem.core.model.Decorator

Packages that use Decorator
org.eclipse.ohf.stem.core.graph   
org.eclipse.ohf.stem.core.graph.impl   
org.eclipse.ohf.stem.core.model   
org.eclipse.ohf.stem.core.model.impl   
org.eclipse.ohf.stem.core.model.util   
org.eclipse.ohf.stem.core.scenario   
org.eclipse.ohf.stem.core.scenario.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.internal.data   
org.eclipse.ohf.stem.tests.util.decorators   
org.eclipse.ohf.stem.tests.util.decorators.impl   
org.eclipse.ohf.stem.tests.util.decorators.util   
 

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

Methods in org.eclipse.ohf.stem.core.graph that return Decorator
 Decorator DynamicLabel.getDecorator()
           
 

Methods in org.eclipse.ohf.stem.core.graph that return types with arguments of type Decorator
 org.eclipse.emf.common.util.EList<Decorator> Graph.getDecorators()
           
 

Methods in org.eclipse.ohf.stem.core.graph with parameters of type Decorator
 void DynamicLabel.setDecorator(Decorator value)
          Sets the value of the 'Decorator' reference.
 

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

Methods in org.eclipse.ohf.stem.core.graph.impl that return Decorator
 Decorator DynamicLabelImpl.basicGetDecorator()
           
 Decorator DynamicLabelImpl.getDecorator()
           
 

Methods in org.eclipse.ohf.stem.core.graph.impl that return types with arguments of type Decorator
 org.eclipse.emf.common.util.EList<Decorator> GraphImpl.getDecorators()
           
 

Methods in org.eclipse.ohf.stem.core.graph.impl with parameters of type Decorator
 org.eclipse.emf.common.notify.NotificationChain DynamicLabelImpl.basicSetDecorator(Decorator newDecorator, org.eclipse.emf.common.notify.NotificationChain msgs)
           
 void DynamicLabelImpl.setDecorator(Decorator newDecorator)
           
 

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

Subinterfaces of Decorator in org.eclipse.ohf.stem.core.model
 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 NodeDecorator
          An GraphDecorator is a Decorator that specifically modifies Edges and their Labels.
 

Methods in org.eclipse.ohf.stem.core.model that return Decorator
 Decorator ModelFactory.createDecorator()
          Returns a new object of class 'Decorator'.
 

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

Classes in org.eclipse.ohf.stem.core.model.impl that implement Decorator
 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 NodeDecoratorImpl
          An implementation of the model object 'Node Decorator'.
 

Methods in org.eclipse.ohf.stem.core.model.impl that return Decorator
 Decorator ModelFactoryImpl.createDecorator()
           
 

Uses of Decorator in org.eclipse.ohf.stem.core.model.util
 

Methods in org.eclipse.ohf.stem.core.model.util with parameters of type Decorator
 T ModelSwitch.caseDecorator(Decorator object)
          Returns the result of interpretting the object as an instance of 'Decorator'.
 

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

Methods in org.eclipse.ohf.stem.core.scenario that return types with arguments of type Decorator
 org.eclipse.emf.common.util.EList<Decorator> Scenario.getScenarioDecorators()
          The "scenario decorators" are the Decorator's that can "decorate" (i.e., modify) the canonical Graph after it has been generated by the Model.
 

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

Methods in org.eclipse.ohf.stem.core.scenario.impl that return types with arguments of type Decorator
 org.eclipse.emf.common.util.EList<Decorator> ScenarioImpl.getScenarioDecorators()
           
 

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

Subinterfaces of Decorator in org.eclipse.ohf.stem.diseasemodels.standard
 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 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 SI
          A DiseaseModel with two states Susceptible and Infectious (SI).
 interface SIInfector
          This interface defines a class in an EMF model for the initialization of an infectious population in a Standard disease model.
 interface SIR
          A DiseaseModel with three states Susceptible, Infectious and Recovered(SIR).
 interface StandardDiseaseModel
          This interface defines a class in an EMF model for a Standard disease model.
 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 Decorator in org.eclipse.ohf.stem.diseasemodels.standard.impl
 

Classes in org.eclipse.ohf.stem.diseasemodels.standard.impl that implement Decorator
 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 InfectorImpl
          An implementation of the model object 'Infector'.
 class SEIRImpl
          An implementation of the model object 'SEIR'.
 class SIImpl
          An implementation of the model object 'SI'.
 class SIInfectorImpl
          An implementation of the model object 'SI Infector'.
 class SIRImpl
          An implementation of the model object 'SIR'.
 class StandardDiseaseModelImpl
          An implementation of the model object 'Disease Model'.
 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 Decorator in org.eclipse.ohf.stem.diseasemodels.standard.util
 

Methods in org.eclipse.ohf.stem.diseasemodels.standard.util with parameters of type Decorator
 T StandardSwitch.caseDecorator(Decorator object)
          Returns the result of interpretting the object as an instance of 'Decorator'.
 

Uses of Decorator in org.eclipse.ohf.stem.internal.data
 

Methods in org.eclipse.ohf.stem.internal.data that return Decorator
 Decorator DecoratorRecord.getDecorator()
           
 

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

Subinterfaces of Decorator 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 Decorator in org.eclipse.ohf.stem.tests.util.decorators.impl
 

Classes in org.eclipse.ohf.stem.tests.util.decorators.impl that implement Decorator
 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 Decorator in org.eclipse.ohf.stem.tests.util.decorators.util
 

Methods in org.eclipse.ohf.stem.tests.util.decorators.util with parameters of type Decorator
 T DecoratorsSwitch.caseDecorator(Decorator object)
          Returns the result of interpretting the object as an instance of 'Decorator'.