ट्रेड किया गया एक्सएमएल कॉन्फ़िगरेशन पार्स किया जाता है और इससे एक Configuration
ऑब्जेक्ट बनाया जाता है जो पूरे कॉन्फ़िगरेशन के बारे में बताता है.
इस ऑब्जेक्ट के बारे में Iकॉन्फ़िगरेशन इंटरफ़ेस की मदद से बताया गया है.इसमें एक्सएमएल में तय किए गए सभी ऑब्जेक्ट के एक इंस्टेंस शामिल होंगे.
इस उदाहरण में:
<configuration description="<description of the configuration>">
<!-- A build provider that takes local device information -->
<build_provider class="com.android.tradefed.build.BootstrapBuildProvider" />
<!-- Some target preparation, disabled by default -->
<target_preparer class="com.android.tradefed.targetprep.PreloadedClassesPreparer">
<option name="disable" value="true" />
</target_preparer>
<!-- One test running some unit tests -->
<test class="com.android.tradefed.testtype.HostTest">
<option name="class" value="com.android.tradefed.build.BuildInfoTest" />
</test>
</configuration>
इससे यह मिलेगा:
BootstrapBuildProvider
इंस्टेंस दिखाने के लिए,IConfiguration#getBuildProvider()
.IConfiguration#getTargetPreparers()
का इस्तेमाल करके,ITargetPreparer
की सूची पाएं. इसमेंPreloadedClassesPreparer
का एक इंस्टेंस शामिल होगा.IConfiguration#getTests()
,IRemoteTest
की सूची दिखाता है, जिसमेंHostTest
का एक उदाहरण शामिल है.
कॉन्फ़िगरेशन ऑब्जेक्ट में मौजूद हर ऑब्जेक्ट को एक्सएमएल परिभाषा के साथ मैप किया जा सकता है. इसलिए, एक्सएमएल परिभाषा को समझने से, आम तौर पर यह समझने में मदद मिलती है कि कॉन्फ़िगरेशन ऑब्जेक्ट से क्या उम्मीद की जा सकती है.