Packagenet.user1.reactor
Classpublic class ModuleDefinition
InheritanceModuleDefinition Inheritance Object

Since : Reactor 1.0.2

A simple data class representing the definition of a server-side module. ModuleDefinition instances are used to report information about modules provided by the ModuleListSnapshot class.

See also

ModuleListSnapshot


Public Variables
 VariableDefined By
  id : String
The module's id.
ModuleDefinition
  source : String
The Java class name or script name of the module.
ModuleDefinition
  type : String
The module's type.
ModuleDefinition
Public Methods
 MethodDefined By
  
ModuleDefinition(id:String, type:String, source:String)
Constructor.
ModuleDefinition
Variable Descriptions
idvariable
public var id:String

Since : Reactor 1.0.2

The module's id. Applies to server modules only.

sourcevariable 
public var source:String

Since : Reactor 1.0.2

The Java class name or script name of the module.

typevariable 
public var type:String

Since : Reactor 1.0.2

The module's type. Must be either ModuleType.CLASS or ModuleType.SCRIPT.

Constructor Description
ModuleDefinition()Constructor
public function ModuleDefinition(id:String, type:String, source:String)

Constructor.

Parameters
id:String
 
type:String
 
source:String