• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java MapAnnotation类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.intellij.util.xmlb.annotations.MapAnnotation的典型用法代码示例。如果您正苦于以下问题:Java MapAnnotation类的具体用法?Java MapAnnotation怎么用?Java MapAnnotation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



MapAnnotation类属于com.intellij.util.xmlb.annotations包,在下文中一共展示了MapAnnotation类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getEnvironmentVariables

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Override
@NotNull
@Tag("environment-variables")
@MapAnnotation(surroundWithTag = false, surroundKeyWithTag = false, surroundValueWithTag = false)
public Map<String, String> getEnvironmentVariables() {
  return myEnvironmentVariables;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:ChromeSettings.java


示例2: getUrlToStateMap

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Tag("layouts")
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
               keyAttributeName = "url", entryTagName = "layout")
public Map<String, ConfigurationFileState> getUrlToStateMap() {
  return myUrlToStateMap;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:ConfigurationStateManager.java


示例3: getLastSuccessful

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
/**
 * @return the last successful authentications
 */
@Property(surroundWithTag = false)
@MapAnnotation(surroundKeyWithTag = false, surroundValueWithTag = false, surroundWithTag = false,
               entryTagName = "successfulAuthentication", keyAttributeName = "user", valueAttributeName = "method")
public Map<String, String> getLastSuccessful() {
  return myLastSuccessful;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:SSHConnectionSettings.java


示例4: MapBinding

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
public MapBinding(ParameterizedType type, Accessor accessor) {
  Type[] arguments = type.getActualTypeArguments();
  Type keyType = arguments[0];
  Type valueType = arguments[1];

  myKeyBinding = XmlSerializerImpl.getBinding(keyType);
  myValueBinding = XmlSerializerImpl.getBinding(valueType);
  myMapAnnotation = XmlSerializerImpl.findAnnotation(accessor.getAnnotations(), MapAnnotation.class);
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:10,代码来源:MapBinding.java


示例5: getUrlToStateMap

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Tag("layouts")
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
               keyAttributeName = "url", entryTagName = "layout")
public Map<String, RenderConfigurationFileState> getUrlToStateMap() {
  return myUrlToStateMap;
}
 
开发者ID:chrimm,项目名称:cordovastudio,代码行数:8,代码来源:ConfigurationStateManager.java


示例6: getCustomStateNames

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Tag("customStates")
@Property(surroundWithTag = false)
@MapAnnotation(
  surroundWithTag = false,
  keyAttributeName = "state",
  valueAttributeName = "name",
  surroundKeyWithTag = false,
  surroundValueWithTag = false
)

public Map<TaskState, String> getCustomStateNames() {
  return myCustomStateNames;
}
 
开发者ID:consulo,项目名称:consulo-tasks,代码行数:14,代码来源:YouTrackRepository.java


示例7: getFacetTypeElements

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Property(surroundWithTag = false)
@MapAnnotation(surroundKeyWithTag = false, surroundWithTag = false, surroundValueWithTag = false, entryTagName = "facet-type-state", keyAttributeName = "type")
public Map<String, FacetTypeStateBean> getFacetTypeElements() {
  return myFacetTypeElements;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:FacetEditorsStateManagerImpl.java


示例8: getHistoryElements

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Property(surroundWithTag = false)
@MapAnnotation(surroundKeyWithTag = false, surroundWithTag = false, surroundValueWithTag = false, entryTagName = "history-entry", keyAttributeName = "file")
public Map<String, ConfigurationBean> getHistoryElements() {
  return myHistoryElements;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:TestHistoryConfiguration.java


示例9: getExternalSystemsState

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
  keyAttributeName = "id", entryTagName = "system")
public Map<String, State> getExternalSystemsState() {
  return myExternalSystemsState;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:ExternalProjectsState.java


示例10: getExternalSystemsTaskActivation

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Property(surroundWithTag = false)
@MapAnnotation(keyAttributeName = "path", entryTagName = "task",
  surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false, sortBeforeSave = false)
public Map<String, TaskActivationState> getExternalSystemsTaskActivation() {
  return myExternalSystemsTaskActivation;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:ExternalProjectsState.java


示例11: getSelectedProviders

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@MapAnnotation(surroundKeyWithTag = false, surroundValueWithTag = false)
public Map<String, String> getSelectedProviders() {
  return mySelectedProviders;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:FileEditorProviderManagerImpl.java


示例12: MapBinding

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
public MapBinding(@NotNull MutableAccessor accessor) {
  super(accessor);

  myMapAnnotation = accessor.getAnnotation(MapAnnotation.class);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:MapBinding.java


示例13: getLangDisabledTemplates

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@NotNull
@MapAnnotation(entryTagName = "disabled-postfix-templates", keyAttributeName = "lang", surroundWithTag = false)
public Map<String, Set<String>> getLangDisabledTemplates() {
  return myLangToDisabledTemplates;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:PostfixTemplatesSettings.java


示例14: getDefaultConfigurations

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Tag("default-configurations")
@MapAnnotation(surroundWithTag = false, surroundKeyWithTag = false, surroundValueWithTag = false, //entryTagName = "default-configuration",
               keyAttributeName = "facet-type")
public Map<String, DefaultFacetConfigurationState> getDefaultConfigurations() {
  return myDefaultConfigurations;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:ProjectFacetManagerImpl.java


示例15: getResolvedInfoMap

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Tag("resolved-infos")
@MapAnnotation(surroundWithTag = false)
public Map<String, MavenArtifactResolvedInfo> getResolvedInfoMap() {
  return myResolvedInfoMap;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:AndroidExternalApklibDependenciesManager.java


示例16: getArtifactFilesMap

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Tag("artifacts")
@MapAnnotation(surroundWithTag = false)
public Map<String, String> getArtifactFilesMap() {
  return myArtifactFilesMap;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:AndroidExternalApklibDependenciesManager.java


示例17: getProfilesMap

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@OptionTag("profilesMap")
@MapAnnotation(sortBeforeSave = false)
public Map<String, Boolean> getProfilesMap() {
  return myProfilesMap;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:MavenRunnerParameters.java


示例18: getValues

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@SuppressWarnings("unused")
@Tag("settings")
@MapAnnotation(surroundWithTag = false)
public Map<String, String> getValues() {
  return values;
}
 
开发者ID:bazelbuild,项目名称:intellij,代码行数:7,代码来源:BlazeWizardUserSettings.java


示例19: MapBinding

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
public MapBinding(@Nonnull MutableAccessor accessor) {
  super(accessor);

  myMapAnnotation = accessor.getAnnotation(MapAnnotation.class);
}
 
开发者ID:consulo,项目名称:consulo,代码行数:6,代码来源:MapBinding.java


示例20: getLangDisabledTemplates

import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@Nonnull
@MapAnnotation(entryTagName = "disabled-postfix-templates", keyAttributeName = "lang", surroundWithTag = false)
public Map<String, Set<String>> getLangDisabledTemplates() {
  return myLangToDisabledTemplates;
}
 
开发者ID:consulo,项目名称:consulo,代码行数:6,代码来源:PostfixTemplatesSettings.java



注:本文中的com.intellij.util.xmlb.annotations.MapAnnotation类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Resource类代码示例发布时间:2022-05-22
下一篇:
Java PsiCommentImpl类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap