com.intellij.util.xmlb.annotations.MapAnnotation Java Examples
The following examples show how to use
com.intellij.util.xmlb.annotations.MapAnnotation.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BlazeWizardUserSettings.java From intellij with Apache License 2.0 | 4 votes |
@SuppressWarnings("unused") @Tag("settings") @MapAnnotation(surroundWithTag = false) public Map<String, String> getValues() { return values; }
Example #2
Source File: TestHistoryConfiguration.java From consulo with Apache License 2.0 | 4 votes |
@Property(surroundWithTag = false) @MapAnnotation(surroundKeyWithTag = false, surroundWithTag = false, surroundValueWithTag = false, entryTagName = "history-entry", keyAttributeName = "file") public Map<String, ConfigurationBean> getHistoryElements() { return myHistoryElements; }
Example #3
Source File: FileEditorProviderManagerImpl.java From consulo with Apache License 2.0 | 4 votes |
@MapAnnotation(surroundKeyWithTag = false, surroundValueWithTag = false) public Map<String, String> getSelectedProviders() { return mySelectedProviders; }
Example #4
Source File: MapBinding.java From consulo with Apache License 2.0 | 4 votes |
public MapBinding(@Nonnull MutableAccessor accessor) { super(accessor); myMapAnnotation = accessor.getAnnotation(MapAnnotation.class); }
Example #5
Source File: PostfixTemplatesSettings.java From consulo with Apache License 2.0 | 4 votes |
@Nonnull @MapAnnotation(entryTagName = "disabled-postfix-templates", keyAttributeName = "lang", surroundWithTag = false) public Map<String, Set<String>> getLangDisabledTemplates() { return myLangToDisabledTemplates; }