Java 类com.intellij.util.xml.Attribute 实例源码

项目:intellij-ce-playground    文件:MenuItem.java   
@Attribute("actionViewClass")
@Convert(PackageClassConverter.class)
@ExtendClass(value = "android.view.View",
             instantiatable = false,
             allowAbstract = false,
             allowInterface = false,
             allowEnum = false)
AndroidAttributeValue<PsiClass> getActionViewClass();
项目:intellij-ce-playground    文件:MenuItem.java   
@Attribute("actionProviderClass")
@Convert(PackageClassConverter.class)
@ExtendClass(value = "android.view.ActionProvider",
             instantiatable = false,
             allowAbstract = false,
             allowInterface = false,
             allowEnum = false)
AndroidAttributeValue<PsiClass> getActionProviderClass();
项目:arma-intellij-plugin    文件:Package.java   
@Attribute("name")
GenericAttributeValue<String> getName();
项目:arma-intellij-plugin    文件:Container.java   
@Attribute("name")
GenericAttributeValue<String> getName();
项目:intellij-ce-playground    文件:Bar.java   
@Stubbed
@Attribute("class")
GenericAttributeValue<PsiClass> getClazz();
项目:intellij-ce-playground    文件:Style.java   
@Attribute("parent")
@Convert(ParentStyleConverter.class)
GenericAttributeValue<ResourceValue> getParentStyle();
项目:intellij-ce-playground    文件:UsesSdk.java   
@Attribute("minSdkVersion")
@Convert(ApiVersionConverter.class)
AndroidAttributeValue<String> getMinSdkVersion();
项目:intellij-ce-playground    文件:UsesSdk.java   
@Attribute("targetSdkVersion")
@Convert(ApiVersionConverter.class)
AndroidAttributeValue<String> getTargetSdkVersion();
项目:intellij-ce-playground    文件:UsesSdk.java   
@Attribute("maxSdkVersion")
@Convert(ApiVersionConverter.class)
AndroidAttributeValue<String> getMaxSdkVersion();
项目:intellij-ce-playground    文件:Action.java   
@Attribute("name")
@Convert(ConstantFieldConverter.class)
@LookupClass("android.content.Intent")
@LookupPrefix("android.intent.action")
AndroidAttributeValue<String> getName();
项目:intellij-ce-playground    文件:Instrumentation.java   
@Attribute("name")
@Required
@Convert(PackageClassConverter.class)
@CompleteNonModuleClass
@ExtendClass(AndroidUtils.INSTRUMENTATION_RUNNER_BASE_CLASS)
AndroidAttributeValue<PsiClass> getInstrumentationClass();
项目:intellij-ce-playground    文件:Instrumentation.java   
@Required
@Attribute("targetPackage")
@Convert(InstrumentationTargetPackageConverter.class)
AndroidAttributeValue<String> getTargetPackage();
项目:intellij-ce-playground    文件:AntDomTypeDef.java   
@Attribute("adapter")
public abstract GenericAttributeValue<String> getAdapter();
项目:intellij-ce-playground    文件:Application.java   
@Convert(PackageClassConverter.class)
@ExtendClass("android.app.Activity")
@Attribute("manageSpaceActivity")
AndroidAttributeValue<PsiClass> getManageSpaceActivity();
项目:intellij-ce-playground    文件:Application.java   
@Convert(PackageClassConverter.class)
@ExtendClass("android.app.backup.BackupAgent")
@Attribute("backupAgent")
AndroidAttributeValue<PsiClass> getBackupAgent();
项目:intellij-ce-playground    文件:Activity.java   
@Attribute("name")
@Required
@Convert(PackageClassConverter.class)
@ExtendClass("android.app.Activity")
AndroidAttributeValue<PsiClass> getActivityClass();
项目:intellij-ce-playground    文件:Activity.java   
@Attribute("parentActivityName")
@Convert(value = PackageClassConverter.class)
@ExtendClass("android.app.Activity")
AndroidAttributeValue<PsiClass> getParentActivityName();
项目:intellij-ce-playground    文件:Category.java   
@Attribute("name")
@Convert(ConstantFieldConverter.class)
@LookupClass("android.content.Intent")
@LookupPrefix("android.intent.category")
AndroidAttributeValue<String> getName();
项目:intellij-ce-playground    文件:ActivityAlias.java   
@Required
@Convert(value = PackageClassConverter.class)
@ExtendClass("android.app.Activity")
@Attribute("targetActivity")
AndroidAttributeValue<PsiClass> getTargetActivity();
项目:intellij-ce-playground    文件:AntDomTypeDef.java   
@Attribute("resource")
@Convert(value = AntPathConverter.class)
public abstract GenericAttributeValue<PsiFileSystemItem> getResource();
项目:intellij-ce-playground    文件:Target.java   
@Attribute("targetId") // without this it infers "target-id"
@Convert(ResourceReferenceConverter.class)
@AndroidResourceType("id")
AndroidAttributeValue<ResourceValue> getTargetId();
项目:intellij-ce-playground    文件:Transition.java   
@Attribute("interpolator")
@Convert(ResourceReferenceConverter.class)
@AndroidResourceType("interpolator")
AndroidAttributeValue<ResourceValue> getInterpolator();
项目:intellij-ce-playground    文件:TransitionManager.java   
@Attribute("transition")
@Convert(ResourceReferenceConverter.class)
@AndroidResourceType("id")
AndroidAttributeValue<ResourceValue> getTransition();
项目:intellij-ce-playground    文件:AntDomMacrodefElement.java   
@Attribute("implicit")
@Convert(value = AntBooleanConverterDefaultFalse.class)
public abstract GenericAttributeValue<Boolean> isImplicit();
项目:intellij-ce-playground    文件:AntDomTypeDef.java   
@Attribute("format")
public abstract GenericAttributeValue<String> getFormat();
项目:intellij-ce-playground    文件:AnimatedStateListTransition.java   
@Convert(ResourceReferenceConverter.class)
@AndroidResourceType("id")
@Attribute("fromId") // without this it's interpreted as "from-id"
@Required
AndroidAttributeValue<ResourceValue> getFromId();
项目:intellij-ce-playground    文件:AnimatedStateListTransition.java   
@Convert(ResourceReferenceConverter.class)
@AndroidResourceType("id")
@Attribute("toId") // without this it's interpreted as "to-id"
@Required
AndroidAttributeValue<ResourceValue> getToId();
项目:intellij-ce-playground    文件:Ripple.java   
@Convert(ResourceReferenceConverter.class)
@AndroidResourceType("color")
@Attribute("color")
@Required
AndroidAttributeValue<ResourceValue> getColor();
项目:intellij-ce-playground    文件:Fragment.java   
@Attribute("name")
@Convert(FragmentClassConverter.class)
AndroidAttributeValue<PsiClass> getFragmentName();
项目:intellij-ce-playground    文件:Fragment.java   
@Attribute("class")
@Convert(FragmentClassConverter.class)
GenericAttributeValue<PsiClass> getFragmentClass();
项目:intellij-ce-playground    文件:AntDomPathElement.java   
@Attribute("path")
@Convert(value = AntMultiPathStringConverter.class)
public abstract GenericAttributeValue<List<File>> getPath();
项目:intellij-ce-playground    文件:AntDomTypeDef.java   
@Attribute("file")
@Convert(value = AntPathConverter.class)
public abstract GenericAttributeValue<PsiFileSystemItem> getFile();
项目:intellij-ce-playground    文件:MavenDomMergedElement.java   
@Attribute("combine.children")
@Convert(MavenCombineChildConverter.class)
GenericAttributeValue<String> getCombineChild();
项目:intellij-ce-playground    文件:AntDomFilesProviderImpl.java   
@Attribute("defaultexcludes")
public abstract GenericAttributeValue<String> getDefaultExcludes();
项目:intellij-ce-playground    文件:AntDomFilesProviderImpl.java   
@Attribute("casesensitive")
public abstract GenericAttributeValue<String> getCaseSensitive();
项目:intellij-ce-playground    文件:AntDomAntCallParam.java   
@Attribute("name")
@NameValue
public abstract GenericAttributeValue<String> getName();
项目:intellij-ce-playground    文件:AntDomAntCallParam.java   
@Attribute("value")
public abstract GenericAttributeValue<String> getValue();
项目:intellij-ce-playground    文件:AntDomProperty.java   
@Attribute("basedir")
public abstract GenericAttributeValue<String> getbasedir();
项目:intellij-ce-playground    文件:AntDomDirSet.java   
@Attribute("dir")
@Convert(value = AntPathConverter.class)
public abstract GenericAttributeValue<PsiFileSystemItem> getDir();
项目:intellij-ce-playground    文件:AntDomDirSet.java   
@Attribute("file")
@Convert(value = AntPathConverter.class)
public abstract GenericAttributeValue<PsiFileSystemItem> getFile();