当前位置: 首页>>代码示例>>Java>>正文


Java MapAnnotation类代码示例

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


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


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