com.intellij.util.xmlb.annotations.Tag Java Examples

The following examples show how to use com.intellij.util.xmlb.annotations.Tag. 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: InspectionProfileImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag
public String getDescription() {
  return myDescription;
}
 
Example #2
Source File: ChooseByNameFilterConfiguration.java    From consulo with Apache License 2.0 4 votes vote down vote up
/**
 * @return names for file types
 */
@Tag("file-type-list")
@AbstractCollection(elementTag = "filtered-out-file-type", elementValueAttribute = "name", surroundWithTag = false)
public Set<String> getFilteredOutFileTypeNames() {
  return filteredOutFileTypeNames;
}
 
Example #3
Source File: ToolsProjectConfig.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag(value = "afterCommitToolId")
public String getAfterCommitToolId() {
  return myAfterCommitToolId;
}
 
Example #4
Source File: XDebuggerDataViewSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Override
@Tag("sort-values")
public boolean isSortValues() {
  return mySortValues;
}
 
Example #5
Source File: XDebuggerGeneralSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("scroll-to-center")
public boolean isScrollToCenter() {
  return myScrollToCenter;
}
 
Example #6
Source File: XDebuggerGeneralSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("unmute-on-stop")
public boolean isUnmuteOnStop() {
  return myUnmuteOnStop;
}
 
Example #7
Source File: XDebuggerGeneralSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("evaluation-dialog-mode")
public EvaluationMode getEvaluationDialogMode() {
  return myEvaluationDialogMode;
}
 
Example #8
Source File: BreakpointState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("properties")
public Element getPropertiesElement() {
  return myPropertiesElement;
}
 
Example #9
Source File: LineBreakpointState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("line")
public int getLine() {
  return myLine;
}
 
Example #10
Source File: LineBreakpointState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("url")
public String getFileUrl() {
  return myFileUrl;
}
 
Example #11
Source File: XBreakpointsDialogState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("selected-grouping-rules")
@AbstractCollection(surroundWithTag = false, elementTag = "grouping-rule", elementValueAttribute = "id")
public Set<String> getSelectedGroupingRules() {
  return mySelectedGroupingRules;
}
 
Example #12
Source File: XBreakpointManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("breakpoints-dialog")
public XBreakpointsDialogState getBreakpointsDialogProperties() {
  return myBreakpointsDialogProperties;
}
 
Example #13
Source File: XBreakpointManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("breakpoints-defaults")
@AbstractCollection(surroundWithTag = false, elementTypes = {BreakpointState.class, LineBreakpointState.class})
public List<BreakpointState> getBreakpointsDefaults() {
  return myBreakpointsDefaults;
}
 
Example #14
Source File: XBreakpointManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("breakpoints")
@AbstractCollection(surroundWithTag = false, elementTypes = {BreakpointState.class, LineBreakpointState.class})
public List<BreakpointState> getBreakpoints() {
  return myBreakpoints;
}
 
Example #15
Source File: XBreakpointManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("default-breakpoints")
@AbstractCollection(surroundWithTag = false)
public List<BreakpointState> getDefaultBreakpoints() {
  return myDefaultBreakpoints;
}
 
Example #16
Source File: TagBinding.java    From consulo with Apache License 2.0 4 votes vote down vote up
public TagBinding(@Nonnull MutableAccessor accessor, @Nonnull Tag tagAnnotation) {
  super(accessor, tagAnnotation.value(), null);

  myTextIfEmpty = tagAnnotation.textIfEmpty();
}
 
Example #17
Source File: BlazeWizardUserSettings.java    From intellij with Apache License 2.0 4 votes vote down vote up
@SuppressWarnings("unused")
@Tag("settings")
@MapAnnotation(surroundWithTag = false)
public Map<String, String> getValues() {
  return values;
}
 
Example #18
Source File: ArtifactPropertiesState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("options")
public Element getOptions() {
  return myOptions;
}
 
Example #19
Source File: ArtifactState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("root")
public Element getRootElement() {
  return myRootElement;
}
 
Example #20
Source File: ArtifactState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("output-path")
public String getOutputPath() {
  return myOutputPath;
}
 
Example #21
Source File: ChromeSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
@Tag("command-line-options")
public String getCommandLineOptions() {
  return myCommandLineOptions;
}
 
Example #22
Source File: ChromeSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("use-custom-profile")
public boolean isUseCustomProfile() {
  return myUseCustomProfile;
}
 
Example #23
Source File: ChromeSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
@Tag("user-data-dir")
public String getUserDataDirectoryPath() {
  return myUserDataDirectoryPath;
}
 
Example #24
Source File: FirefoxSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
@Tag("profile")
public String getProfile() {
  return myProfile;
}
 
Example #25
Source File: FirefoxSettings.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
@Tag("profiles-ini-path")
public String getProfilesIniPath() {
  return myProfilesIniPath;
}
 
Example #26
Source File: MasterDetailsStateService.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("states")
@AbstractCollection(surroundWithTag = false)
public List<ComponentState> getStates() {
  return myStates;
}
 
Example #27
Source File: MasterDetailsState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Tag("last-edited")
public String getLastEditedConfigurable() {
  return lastEditedConfigurable;
}
 
Example #28
Source File: XQueryRunVariables.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
@Tag("list")
@AbstractCollection(surroundWithTag = false)
public List<XQueryRunVariable> getVariables() {
    return variables;
}
 
Example #29
Source File: XQueryDataSourcesSettings.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
@Tag("list")
@AbstractCollection(surroundWithTag = false)
public List<XQueryDataSourceConfiguration> getDataSourceConfigurations() {
    return dataSourceConfigurations;
}
 
Example #30
Source File: XQuerySettings.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
@Tag("flavour")
public XQueryFlavour getFlavour() {
    return flavour != null ? flavour : XQueryFlavour.STANDARD_30;
}