本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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);
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例11: getSelectedProviders
import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
@MapAnnotation(surroundKeyWithTag = false, surroundValueWithTag = false)
public Map<String, String> getSelectedProviders() {
return mySelectedProviders;
}
示例12: MapBinding
import com.intellij.util.xmlb.annotations.MapAnnotation; //导入依赖的package包/类
public MapBinding(@NotNull MutableAccessor accessor) {
super(accessor);
myMapAnnotation = accessor.getAnnotation(MapAnnotation.class);
}
示例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;
}
示例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;
}
示例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