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.java94 String fullClassName, in ViewElementDescriptor() argument
99 mFullClassName = fullClassName; in ViewElementDescriptor()
113 public ViewElementDescriptor(String xml_name, String fullClassName) { in ViewElementDescriptor() argument
115 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.java400 String fullClassName = className;
402 fullClassName = packageName + className;
406 fullClassName = packageName + "." + className; //$NON-NLS-1$
411 fullClassName = fullClassName.replaceAll("\\$", "\\."); //$NON-NLS-1$ //$NON-NLS2$
418 IType result = javaProject.findType(fullClassName);
423 int index = fullClassName.lastIndexOf('.');
425 createNewClass(fullClassName.substring(0, index),
426 fullClassName.substring(index+1));