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

项目:intellij-ce-playground    文件:ChromeSettings.java   
@Override
@NotNull
@Tag("environment-variables")
@MapAnnotation(surroundWithTag = false, surroundKeyWithTag = false, surroundValueWithTag = false)
public Map<String, String> getEnvironmentVariables() {
  return myEnvironmentVariables;
}
项目: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   
@Tag("created")
public Date getCreated() {
  if (myCreated == null) {
    myCreated = new Date();
  }
  return myCreated;
}
项目:tools-idea    文件:LocalTaskImpl.java   
@Tag("created")
public Date getCreated() {
  if (myCreated == null) {
    myCreated = new Date();
  }
  return myCreated;
}
项目: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   
@Tag("created")
public Date getCreated()
{
    if(myCreated == null)
    {
        myCreated = new Date();
    }
    return myCreated;
}
项目:ijphab    文件:PhabricatorRepository.java   
@Tag("iconProjects")
public String getIconProjects() {
  return myIconProjects;
}
项目:intellij-nette-tester    文件:TesterProjectSettings.java   
@Tag("namespaceMappings")
@NotNull
public List<TesterNamespaceMapping> getNamespaceMappings() {
    return namespaceMappings;
}
项目:intellij-ce-playground    文件:FacetState.java   
@Tag(JpsFacetSerializer.CONFIGURATION_TAG)
public Element getConfiguration() {
  return myConfiguration;
}
项目:intellij-ce-playground    文件:ArtifactState.java   
@Tag("output-path")
public String getOutputPath() {
  return myOutputPath;
}
项目:intellij-ce-playground    文件:ArtifactState.java   
@Tag("root")
public Element getRootElement() {
  return myRootElement;
}
项目:intellij-ce-playground    文件:ArtifactPropertiesState.java   
@Tag("options")
public Element getOptions() {
  return myOptions;
}
项目:intellij-ce-playground    文件:JavaBreakpointProperties.java   
@Tag("instance-filters")
@AbstractCollection(surroundWithTag = false)
public InstanceFilter[] getInstanceFilters() {
  return myInstanceFilters != null ? myInstanceFilters : InstanceFilter.EMPTY_ARRAY;
}
项目:intellij-ce-playground    文件:JavaBreakpointProperties.java   
@Tag("class-filters")
@AbstractCollection(surroundWithTag = false)
public final ClassFilter[] getClassFilters() {
  return myClassFilters != null ? myClassFilters : ClassFilter.EMPTY_ARRAY;
}
项目:intellij-ce-playground    文件:JavaBreakpointProperties.java   
@Tag("class-exclusion-filters")
@AbstractCollection(surroundWithTag = false)
public ClassFilter[] getClassExclusionFilters() {
  return myClassExclusionFilters != null ? myClassExclusionFilters : ClassFilter.EMPTY_ARRAY;
}
项目:intellij-ce-playground    文件:FacetEditorsStateManagerImpl.java   
@Tag("state")
public Element getState() {
  return myState;
}
项目:intellij-ce-playground    文件:MasterDetailsState.java   
@Tag("last-edited")
public String getLastEditedConfigurable() {
  return lastEditedConfigurable;
}
项目:intellij-ce-playground    文件:MasterDetailsStateService.java   
@Tag("states")
@AbstractCollection(surroundWithTag = false)
public List<ComponentState> getStates() {
  return myStates;
}
项目:intellij-ce-playground    文件:FirefoxSettings.java   
@Nullable
@Tag("profiles-ini-path")
public String getProfilesIniPath() {
  return myProfilesIniPath;
}
项目:intellij-ce-playground    文件:FirefoxSettings.java   
@Nullable
@Tag("profile")
public String getProfile() {
  return myProfile;
}
项目:intellij-ce-playground    文件:ChromeSettings.java   
@Nullable
@Tag("user-data-dir")
public String getUserDataDirectoryPath() {
  return myUserDataDirectoryPath;
}
项目:intellij-ce-playground    文件:ChromeSettings.java   
@Tag("use-custom-profile")
public boolean isUseCustomProfile() {
  return myUseCustomProfile;
}
项目:intellij-ce-playground    文件:ChromeSettings.java   
@Nullable
@Tag("command-line-options")
public String getCommandLineOptions() {
  return myCommandLineOptions;
}
项目:intellij-ce-playground    文件:InspectionProfileImpl.java   
@Tag
public String getDescription() {
  return myDescription;
}
项目:intellij-ce-playground    文件:OldComponentConfig.java   
@Tag("headless-implementation-class")
@Override
public void setHeadlessImplementationClass(String headlessImplementationClass) {
  super.setHeadlessImplementationClass(
    headlessImplementationClass);
}
项目:intellij-ce-playground    文件:OldComponentConfig.java   
@Tag(value = "loadForDefaultProject", textIfEmpty="true")
@Override
public void setLoadForDefaultProject(boolean loadForDefaultProject) {
  super.setLoadForDefaultProject(loadForDefaultProject);
}
项目:intellij-ce-playground    文件:OldComponentConfig.java   
@Tag("interface-class")
@Override
public void setInterfaceClass(String interfaceClass) {
  super.setInterfaceClass(interfaceClass);
}
项目:intellij-ce-playground    文件:OldComponentConfig.java   
@Tag("implementation-class")
@Override
public void setImplementationClass(String implementationClass) {
  super.setImplementationClass(implementationClass);
}
项目:intellij-ce-playground    文件:XMLTestBean.java   
@Tag("prop1")
public int getProp1() {
  return prop1;
}
项目:intellij-ce-playground    文件:TagBinding.java   
public TagBinding(@NotNull MutableAccessor accessor, @NotNull Tag tagAnnotation) {
  super(accessor, tagAnnotation.value(), null);

  myTextIfEmpty = tagAnnotation.textIfEmpty();
}
项目:intellij-ce-playground    文件:XBreakpointManagerImpl.java   
@Tag("default-breakpoints")
@AbstractCollection(surroundWithTag = false)
public List<BreakpointState> getDefaultBreakpoints() {
  return myDefaultBreakpoints;
}
项目:intellij-ce-playground    文件:XBreakpointManagerImpl.java   
@Tag("breakpoints")
@AbstractCollection(surroundWithTag = false,
                    elementTypes = {BreakpointState.class, LineBreakpointState.class})
public List<BreakpointState> getBreakpoints() {
  return myBreakpoints;
}
项目:intellij-ce-playground    文件:XBreakpointManagerImpl.java   
@Tag("breakpoints-defaults")
@AbstractCollection(surroundWithTag = false,
                    elementTypes = {BreakpointState.class, LineBreakpointState.class})
public List<BreakpointState> getBreakpointsDefaults() {
  return myBreakpointsDefaults;
}
项目:intellij-ce-playground    文件:XBreakpointManagerImpl.java   
@Tag("breakpoints-dialog")
public XBreakpointsDialogState getBreakpointsDialogProperties() {
  return myBreakpointsDialogProperties;
}
项目:intellij-ce-playground    文件:XBreakpointsDialogState.java   
@Tag("selected-grouping-rules")
@AbstractCollection(surroundWithTag = false, elementTag = "grouping-rule", elementValueAttribute = "id")
public Set<String> getSelectedGroupingRules() {
  return mySelectedGroupingRules;
}
项目:intellij-ce-playground    文件:LineBreakpointState.java   
@Tag("url")
public String getFileUrl() {
  return myFileUrl;
}