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

The following examples show how to use com.intellij.util.xmlb.annotations.AbstractCollection. 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: 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 #2
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 #3
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 #4
Source File: ArtifactManagerState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
public List<ArtifactState> getArtifacts() {
  return myArtifacts;
}
 
Example #5
Source File: ArtifactState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
public List<ArtifactPropertiesState> getPropertiesList() {
  return myPropertiesList;
}
 
Example #6
Source File: AbstractCollectionBinding.java    From consulo with Apache License 2.0 4 votes vote down vote up
public AbstractCollectionBinding(@Nonnull Class elementType, @Nullable MutableAccessor accessor) {
  super(accessor);

  itemType = elementType;
  annotation = accessor == null ? null : accessor.getAnnotation(AbstractCollection.class);
}
 
Example #7
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 #8
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 #9
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 #10
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 #11
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;
}