OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:setConfigurationObject
(Results
1 - 6
of
6
) sorted by null
/tools/tradefederation/core/src/com/android/tradefed/config/
SandboxConfigurationFactory.java
83
config.
setConfigurationObject
(Configuration.SANDBOX_TYPE_NAME, sandbox);
IGlobalConfiguration.java
243
public void
setConfigurationObject
(String name, Object configObject)
IConfiguration.java
389
public void
setConfigurationObject
(String name, Object configObject)
GlobalConfiguration.java
492
public void
setConfigurationObject
(String typeName, Object configObject)
561
* A wrapper around {@link #
setConfigurationObject
(String, Object)} that will not throw
572
setConfigurationObject
(typeName, configObject);
Configuration.java
804
public synchronized void
setConfigurationObject
(String typeName, Object configObject)
870
* A wrapper around {@link #
setConfigurationObject
(String, Object)} that
881
setConfigurationObject
(typeName, configObject);
[
all
...]
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
ConfigurationTest.java
108
mConfig.
setConfigurationObject
(CONFIG_OBJECT_TYPE_NAME, testConfigObject);
119
mConfig.
setConfigurationObject
(CONFIG_OBJECT_TYPE_NAME, testConfigObject);
164
* Test that
setConfigurationObject
throws a ConfigurationException when config object provided
170
mConfig.
setConfigurationObject
(Configuration.TEST_TYPE_NAME, new TestConfigObject());
171
fail("
setConfigurationObject
did not throw ConfigurationException");
195
fail("
setConfigurationObject
did not throw ConfigurationException");
298
* Test {@link Configuration#
setConfigurationObject
(String, Object)} with a
306
mConfig.
setConfigurationObject
("example", mockConfigReceiver);
315
mConfig.
setConfigurationObject
(CONFIG_OBJECT_TYPE_NAME, testConfigObject);
327
mConfig.
setConfigurationObject
(CONFIG_OBJECT_TYPE_NAME, testConfigObject)
[
all
...]
Completed in 298 milliseconds