DeviceConfigurationHolder
public
class
DeviceConfigurationHolder
extends Object
implements
IDeviceConfiguration
java.lang.Object 中 | |
↳ | com.android.tradefed.config.DeviceConfigurationHolder |
用于存储加载的设备的具体 IDeviceConfiguration
实现
配置对象。
摘要
公共构造函数 | |
---|---|
DeviceConfigurationHolder()
|
|
DeviceConfigurationHolder(String deviceName)
|
|
DeviceConfigurationHolder(String deviceName, boolean isFake)
|
公共方法 | |
---|---|
void
|
addFrequency(Object config, Integer frequency)
跟踪对象的频率,以便我们针对该对象正确注入选项。 |
void
|
addSpecificConfig(Object config, String type)
传递某个允许配置持有者可以跟踪的对象。 |
void
|
addSpecificConfig(Object config)
传递某个允许配置持有者可以跟踪的对象。 |
IDeviceConfiguration
|
clone(String newName)
使用新名称返回此 |
IDeviceConfiguration
|
clone()
|
|
getAllObjectOfType(String configType)
返回包含 |
|
getAllObjects()
返回存放以下实例的所有配置对象的列表:
|
IBuildProvider
|
getBuildProvider()
返回设备配置持有者已引用的 |
String
|
getDeviceName()
返回字段“name”中指定的设备的名称。 |
TestDeviceOptions
|
getDeviceOptions()
返回设备配置持有者具有的 |
IDeviceRecovery
|
getDeviceRecovery()
返回设备配置持有者具有的 |
IDeviceSelection
|
getDeviceRequirements()
返回设备配置持有者具有的 |
Integer
|
getFrequency(Object config)
返回对象的频率。 |
|
getLabPreparers()
返回设备配置持有者拥有的 |
|
getTargetPreparers()
返回设备配置持有者拥有的 |
boolean
|
isFake()
返回容器是否用于被测设备。 |
void
|
removeObjectType(String type)
从设备配置容器中移除指定的对象类型。 |
公共构造函数
DeviceConfigurationHolder
public DeviceConfigurationHolder ()
DeviceConfigurationHolder
public DeviceConfigurationHolder (String deviceName)
参数 | |
---|---|
deviceName |
String |
DeviceConfigurationHolder
public DeviceConfigurationHolder (String deviceName, boolean isFake)
参数 | |
---|---|
deviceName |
String |
isFake |
boolean |
公共方法
添加频率
public void addFrequency (Object config, Integer frequency)
跟踪对象的频率,以便我们针对该对象正确注入选项。
参数 | |
---|---|
config |
Object :我们要跟踪频率的对象。 |
frequency |
Integer :与对象关联的频率。 |
addSpecificConfig
public void addSpecificConfig (Object config, String type)
传递某个允许配置持有者可以跟踪的对象。
允许的对象的完整列表为:IBuildProvider
、ITargetPreparer
、
IDeviceRecovery
、IDeviceSelection
、TestDeviceOptions
参数 | |
---|---|
config |
Object :属于上述类型的对象。 |
type |
String :要传递的配置对象的类型。 |
抛出 | |
---|---|
ConfigurationException |
addSpecificConfig
public void addSpecificConfig (Object config)
传递某个允许配置持有者可以跟踪的对象。
允许的对象的完整列表为:IBuildProvider
、ITargetPreparer
、
IDeviceRecovery
、IDeviceSelection
、TestDeviceOptions
参数 | |
---|---|
config |
Object :属于上述类型的对象。 |
抛出 | |
---|---|
ConfigurationException |
克隆
public IDeviceConfiguration clone (String newName)
使用新名称返回此 IDeviceConfiguration
对象的浅副本。
参数 | |
---|---|
newName |
String |
返回 | |
---|---|
IDeviceConfiguration |
获取所有类型的对象
publicgetAllObjectOfType (String configType)
返回包含 IDeviceConfiguration
实例且与所请求的配置类型相匹配的所有配置对象的列表。
参数 | |
---|---|
configType |
String |
返回 | |
---|---|
|
getBuildProvider
public IBuildProvider getBuildProvider ()
返回设备配置持有者已引用的 IBuildProvider
。
返回 | |
---|---|
IBuildProvider |
getDeviceName
public String getDeviceName ()
返回字段“name”中指定的设备的名称。
返回 | |
---|---|
String |
getDeviceOptions
public TestDeviceOptions getDeviceOptions ()
返回设备配置持有者具有的 TestDeviceOptions
。
返回 | |
---|---|
TestDeviceOptions |
getDeviceRecovery
public IDeviceRecovery getDeviceRecovery ()
返回设备配置持有者具有的 IDeviceRecovery
。
返回 | |
---|---|
IDeviceRecovery |
getDeviceRequirements
public IDeviceSelection getDeviceRequirements ()
返回设备配置持有者具有的 IDeviceSelection
。
返回 | |
---|---|
IDeviceSelection |
getFrequency
public Integer getFrequency (Object config)
返回对象的频率。
参数 | |
---|---|
config |
Object |
返回 | |
---|---|
Integer |
虚假
public boolean isFake ()
返回容器是否用于被测设备。
返回 | |
---|---|
boolean |
removeObjectType
public void removeObjectType (String type)
从设备配置容器中移除指定的对象类型。
参数 | |
---|---|
type |
String :要移除的对象的类型。 |
抛出 | |
---|---|
ConfigurationException |