Home
last modified time | relevance | path

Searched refs:getTopAttributes (Results 1 – 6 of 6) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
DViewMetadataRepositoryTest.java69 repository.getTopAttributes("android.widget.RadioButton")); in testGetTopAttributes()
72 repository.getTopAttributes("android.widget.CheckedTextView")); in testGetTopAttributes()
74 repository.getTopAttributes("android.widget.NonExistent")); in testGetTopAttributes()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
DLayoutTestBase.java244 public @NonNull List<String> getTopAttributes() { in getMetadata() method in LayoutTestBase.TestRulesEngine
245 return ViewMetadataRepository.get().getTopAttributes(fqcn); in getMetadata()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
DViewMetadataRepository.java570 public List<String> getTopAttributes() { in getTopAttributes() method in ViewMetadataRepository.ViewData
706 public List<String> getTopAttributes(String fqcn) { in getTopAttributes() method in ViewMetadataRepository
709 return view.getTopAttributes(); in getTopAttributes()
DClientRulesEngine.java252 public @NonNull List<String> getTopAttributes() { in getMetadata() method in ClientRulesEngine
253 return ViewMetadataRepository.get().getTopAttributes(fqcn); in getMetadata()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DPropertyFactory.java179 Set<String> top = new HashSet<String>(repository.getTopAttributes(fqcn)); in getProperties()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DBaseViewRule.java547 List<String> attributes = metadata.getTopAttributes(); in addCommonPropertyActions()