Home
last modified time | relevance | path

Searched refs:fullClassName (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
DViewElementDescriptor.java92 String fullClassName, in ViewElementDescriptor() argument
97 mFullClassName = fullClassName; in ViewElementDescriptor()
111 public ViewElementDescriptor(String xml_name, String fullClassName) { in ViewElementDescriptor() argument
113 mFullClassName = fullClassName; in ViewElementDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
DViewClassInfo.java85 public ViewClassInfo(boolean isLayout, String fullClassName, String shortClassName) { in ViewClassInfo() argument
87 mFullClassName = fullClassName; in ViewClassInfo()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
DUiClassAttributeNode.java396 String fullClassName = className;
398 fullClassName = packageName + className;
402 fullClassName = packageName + "." + className; //$NON-NLS-1$
407 fullClassName = fullClassName.replaceAll("\\$", "\\."); //$NON-NLS-1$ //$NON-NLS2$
414 IType result = javaProject.findType(fullClassName);
419 int index = fullClassName.lastIndexOf('.');
421 createNewClass(fullClassName.substring(0, index),
422 fullClassName.substring(index+1));