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

The following examples show how to use com.intellij.util.xmlb.annotations.Property. 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: TestHistoryConfiguration.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
@MapAnnotation(surroundKeyWithTag = false, surroundWithTag = false, surroundValueWithTag = false, entryTagName = "history-entry", keyAttributeName = "file")
public Map<String, ConfigurationBean> getHistoryElements() {
  return myHistoryElements;
}
 
Example #2
Source File: MasterDetailsState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
public SplitterProportionsDataImpl getProportions() {
  return proportions;
}
 
Example #3
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 #4
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 #5
Source File: BreakpointState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
@Property(surroundWithTag = false)
public LogExpression getLogExpression() {
  return myLogExpression;
}
 
Example #6
Source File: BreakpointState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
@Property(surroundWithTag = false)
public Condition getCondition() {
  return myCondition;
}
 
Example #7
Source File: BreakpointState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
public XBreakpointDependencyState getDependencyState() {
  return myDependencyState;
}
 
Example #8
Source File: XDebuggerManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
public XBreakpointManagerImpl.BreakpointManagerState getBreakpointManagerState() {
  return myBreakpointManagerState;
}
 
Example #9
Source File: XDebuggerManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
public XDebuggerWatchesManager.WatchesManagerState getWatchesManagerState() {
  return myWatchesManagerState;
}
 
Example #10
Source File: XDebuggerSettingManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
public XDebuggerDataViewSettings getDataViewSettings() {
  return myDataViewSettings;
}
 
Example #11
Source File: XDebuggerSettingManagerImpl.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
public XDebuggerGeneralSettings getGeneralSettings() {
  return myGeneralSettings;
}
 
Example #12
Source File: ArtifactStructureConfigurableState.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Property(surroundWithTag = false)
public ArtifactEditorSettings.ArtifactEditorSettingsState getDefaultArtifactSettings() {
  return myDefaultArtifactSettings;
}