Package | Description |
---|---|
org.jlab.coda.emu | |
org.jlab.coda.emu.modules | |
org.jlab.coda.emu.support.configurer | |
org.jlab.coda.emu.support.transport |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
EmuModule.getAttr(java.lang.String name)
Get the named attribute from the config file of this module.
|
int |
EmuModule.getIntAttr(java.lang.String name)
Get the named attribute, as an integer, from the config file of this module.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
ModuleAdapter.getAttr(java.lang.String name)
Get the named attribute from the config file of this module.
|
int |
ModuleAdapter.getIntAttr(java.lang.String name)
Get the named attribute, as an integer, from the config file of this module.
|
Modifier and Type | Method and Description |
---|---|
static org.w3c.dom.Node |
Configurer.getNode(org.w3c.dom.Document doc,
java.lang.String path)
Method to get the Node object associated with a specific path
into an XML document.
|
static java.lang.String |
Configurer.getValue(org.w3c.dom.Document doc,
java.lang.String path)
Method to get the value of the Node object given by the path argument or
null if there is no such object.
|
static void |
Configurer.newContainer(org.w3c.dom.Document doc,
java.lang.String path,
java.lang.String name)
Method to add a new container DataNode object to the
Node object given by the path argument.
|
static void |
Configurer.newValue(org.w3c.dom.Document doc,
java.lang.String path,
java.lang.String name,
java.lang.String value)
Method to add an attribute (name/value pair) DataNode object
to or replace one with the same name associated with the
Node object given by the path argument.
|
static org.w3c.dom.Document |
Configurer.parseFile(java.lang.String configFile)
Method to parse a file containing an XML configuration.
|
static org.w3c.dom.Document |
Configurer.parseString(java.lang.String xmlConfig)
Method to parse a string containing an XML configuration.
|
static void |
Configurer.setValue(org.w3c.dom.Document doc,
java.lang.String path,
java.lang.String value)
Method to set the value of the DataNode object associated with the
Node object given by the path argument.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
DataTransport.getAttr(java.lang.String name)
This method gets an attribute as a String object.
|
java.lang.String |
DataTransportAdapter.getAttr(java.lang.String name)
This method gets an attribute as a String object.
|
int |
DataTransport.getIntAttr(java.lang.String pname)
This method gets an attribute as an int.
|
int |
DataTransportAdapter.getIntAttr(java.lang.String name)
This method gets an attribute as an int.
|
Constructor and Description |
---|
DataTransportAdapter(java.lang.String name,
java.util.Map<java.lang.String,java.lang.String> attrib,
Emu emu)
Constructor.
|
DataTransportImplCmsg(java.lang.String pname,
java.util.Map<java.lang.String,java.lang.String> attrib,
Emu emu)
Constructor.
|
DataTransportImplEmu(java.lang.String pname,
java.util.Map<java.lang.String,java.lang.String> attrib,
Emu emu)
Constructor called during "download".
|
DataTransportImplEt(java.lang.String pname,
java.util.Map<java.lang.String,java.lang.String> attrib,
Emu emu)
Constructor.
|
DataTransportImplFifo(java.lang.String pname,
java.util.Map<java.lang.String,java.lang.String> attrib,
Emu emu)
Constructor.
|
DataTransportImplFile(java.lang.String name,
java.util.Map<java.lang.String,java.lang.String> attrib,
Emu emu)
Constructor.
|