Java 类com.intellij.util.xmlb.annotations.Property 实例源码

项目:intellij-drupal-run-tests    文件:DrupalRunConfiguration.java   
@Property(
        surroundWithTag = false
)
@NotNull
public PhpCommandLineSettings getCommandLineSettings() {
    PhpCommandLineSettings var10000 = this.myCommandLineSettings;
    if (this.myCommandLineSettings == null) {
        throw new IllegalStateException(String.format("@NotNull method %s.%s must not return null", new Object[]{"com/jetbrains/php/run/script/PhpScriptRunConfiguration$Settings", "getCommandLineSettings"}));
    } else {
        return var10000;
    }
}
项目:intellij-ce-playground    文件:ConfigurationProjectState.java   
@NotNull
@Property(surroundWithTag = false)
@Tag("devices")
@AbstractCollection(surroundWithTag = false, elementTag = "device", elementValueAttribute = "id")
public List<String> getDeviceIds() {
  return myDeviceIds;
}
项目:intellij-ce-playground    文件:ConfigurationStateManager.java   
@Tag("layouts")
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
               keyAttributeName = "url", entryTagName = "layout")
public Map<String, ConfigurationFileState> getUrlToStateMap() {
  return myUrlToStateMap;
}
项目:intellij-ce-playground    文件:SelectorBasedResponseHandler.java   
@Tag("selectors")
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
@NotNull
public List<Selector> getSelectors() {
  return new ArrayList<Selector>(mySelectors.values());
}
项目:intellij-ce-playground    文件:LocalTaskImpl.java   
@NotNull
@Override
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag="branch")
public List<BranchInfo> getBranches() {
  return myBranches;
}
项目:intellij-ce-playground    文件:LocalTaskImpl.java   
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag="workItem")
@Override
public List<WorkItem> getWorkItems() {
  return myWorkItems;
}
项目:intellij-ce-playground    文件:SSHConnectionSettings.java   
/**
 * @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;
}
项目:tools-idea    文件:LocalTaskImpl.java   
@NotNull
@Override
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag="branch")
public List<BranchInfo> getBranches() {
  return myBranches;
}
项目:tools-idea    文件:LocalTaskImpl.java   
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag="workItem")
@Override
public List<WorkItem> getWorkItems() {
  return myWorkItems;
}
项目:tools-idea    文件:SSHConnectionSettings.java   
/**
 * @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;
}
项目:cordovastudio    文件:ConfigurationStateManager.java   
@Tag("layouts")
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
               keyAttributeName = "url", entryTagName = "layout")
public Map<String, RenderConfigurationFileState> getUrlToStateMap() {
  return myUrlToStateMap;
}
项目:consulo-tasks    文件:SelectorBasedResponseHandler.java   
@Tag("selectors")
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
@NotNull
public List<Selector> getSelectors() {
  return new ArrayList<Selector>(mySelectors.values());
}
项目:consulo-tasks    文件:YouTrackRepository.java   
@Tag("customStates")
@Property(surroundWithTag = false)
@MapAnnotation(
  surroundWithTag = false,
  keyAttributeName = "state",
  valueAttributeName = "name",
  surroundKeyWithTag = false,
  surroundValueWithTag = false
)

public Map<TaskState, String> getCustomStateNames() {
  return myCustomStateNames;
}
项目:consulo-tasks    文件:LocalTaskImpl.java   
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag = "changelist")
public List<ChangeListInfo> getChangeLists()
{
    return myChangeLists;
}
项目:consulo-tasks    文件:LocalTaskImpl.java   
@NotNull
@Override
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag = "branch")
public List<BranchInfo> getBranches()
{
    return myBranches;
}
项目:consulo-tasks    文件:LocalTaskImpl.java   
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag = "workItem")
@Override
public List<WorkItem> getWorkItems()
{
    return myWorkItems;
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@NotNull
public String getTestScope() {
    return StringUtil.notNullize(testScope);
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@NotNull
public String getTesterExecutable() {
    return StringUtil.notNullize(testerExecutable);
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@Nullable
public String getTesterOptions() {
    return testerOptions;
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@Nullable
public String getSetupScriptPath() {
    return setupScriptPath;
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@Nullable
public String getPhpInterpreterId() {
    return phpInterpreterId;
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@NotNull
public List<PhpConfigurationOptionData> getPhpInterpreterOptions() {
    return phpInterpreterOptions;
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@Nullable
public String getPhpIniPath() {
    return phpIniPath;
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@NotNull
public Boolean getUseSystemPhpIni() {
    return useSystemPhpIni;
}
项目:intellij-nette-tester    文件:TesterSettings.java   
@Property
@NotNull
public PhpCommandLineSettings getPhpCommandLineSettings() {
    return phpCommandLineSettings;
}
项目:intellij-ce-playground    文件:FacetState.java   
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
public List<FacetState> getSubFacets() {
  return mySubFacets;
}
项目:intellij-ce-playground    文件:FacetManagerState.java   
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
public List<FacetState> getFacets() {
  return myFacets;
}
项目:intellij-ce-playground    文件:ArtifactManagerState.java   
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
public List<ArtifactState> getArtifacts() {
  return myArtifacts;
}
项目:intellij-ce-playground    文件:ArtifactState.java   
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
public List<ArtifactPropertiesState> getPropertiesList() {
  return myPropertiesList;
}
项目:intellij-ce-playground    文件:ArchivedProjectTemplate.java   
@Property(surroundWithTag = false)
@AbstractCollection(elementTag = "artifact", surroundWithTag = false)
public List<Artifact> getArtifacts() {
  return myArtifacts;
}
项目:intellij-ce-playground    文件:ArchivedProjectTemplate.java   
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(elementTag = "framework", surroundWithTag = false, elementValueAttribute = "")
public List<String> getFrameworks() {
  return myFrameworks;
}
项目:intellij-ce-playground    文件:ArtifactStructureConfigurableState.java   
@Property(surroundWithTag = false)
public ArtifactEditorSettings.ArtifactEditorSettingsState getDefaultArtifactSettings() {
  return myDefaultArtifactSettings;
}
项目:intellij-ce-playground    文件:FacetEditorsStateManagerImpl.java   
@Property(surroundWithTag = false)
@MapAnnotation(surroundKeyWithTag = false, surroundWithTag = false, surroundValueWithTag = false, entryTagName = "facet-type-state", keyAttributeName = "type")
public Map<String, FacetTypeStateBean> getFacetTypeElements() {
  return myFacetTypeElements;
}
项目:intellij-ce-playground    文件:MasterDetailsState.java   
@Property(surroundWithTag = false)
public SplitterProportionsDataImpl getProportions() {
  return proportions;
}
项目:intellij-ce-playground    文件:TestHistoryConfiguration.java   
@Property(surroundWithTag = false)
@MapAnnotation(surroundKeyWithTag = false, surroundWithTag = false, surroundValueWithTag = false, entryTagName = "history-entry", keyAttributeName = "file")
public Map<String, ConfigurationBean> getHistoryElements() {
  return myHistoryElements;
}
项目:intellij-ce-playground    文件:ExternalProjectsState.java   
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
  keyAttributeName = "id", entryTagName = "system")
public Map<String, State> getExternalSystemsState() {
  return myExternalSystemsState;
}
项目:intellij-ce-playground    文件:ExternalProjectsState.java   
@Property(surroundWithTag = false)
@MapAnnotation(keyAttributeName = "path", entryTagName = "task",
  surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false, sortBeforeSave = false)
public Map<String, TaskActivationState> getExternalSystemsTaskActivation() {
  return myExternalSystemsTaskActivation;
}
项目:intellij-ce-playground    文件:ExternalProjectsState.java   
@Property(surroundWithTag = false)
public ExternalProjectsViewState getProjectsViewState() {
  return projectsViewState;
}
项目:intellij-ce-playground    文件:BreakpointState.java   
@Nullable
@Property(surroundWithTag = false)
public LogExpression getLogExpression() {
  return myLogExpression;
}
项目:intellij-ce-playground    文件:BreakpointState.java   
@Nullable
@Property(surroundWithTag = false)
public Condition getCondition() {
  return myCondition;
}