本文整理汇总了Java中com.intellij.util.xmlb.annotations.Tag类的典型用法代码示例。如果您正苦于以下问题:Java Tag类的具体用法?Java Tag怎么用?Java Tag使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Tag类属于com.intellij.util.xmlb.annotations包,在下文中一共展示了Tag类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getEnvironmentVariables
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Override
@NotNull
@Tag("environment-variables")
@MapAnnotation(surroundWithTag = false, surroundKeyWithTag = false, surroundValueWithTag = false)
public Map<String, String> getEnvironmentVariables() {
return myEnvironmentVariables;
}
示例2: getDeviceIds
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@NotNull
@Property(surroundWithTag = false)
@Tag("devices")
@AbstractCollection(surroundWithTag = false, elementTag = "device", elementValueAttribute = "id")
public List<String> getDeviceIds() {
return myDeviceIds;
}
示例3: getUrlToStateMap
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("layouts")
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
keyAttributeName = "url", entryTagName = "layout")
public Map<String, ConfigurationFileState> getUrlToStateMap() {
return myUrlToStateMap;
}
示例4: getSelectors
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("selectors")
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
@NotNull
public List<Selector> getSelectors() {
return new ArrayList<Selector>(mySelectors.values());
}
示例5: getCreated
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("created")
public Date getCreated() {
if (myCreated == null) {
myCreated = new Date();
}
return myCreated;
}
示例6: getUrlToStateMap
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("layouts")
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
keyAttributeName = "url", entryTagName = "layout")
public Map<String, RenderConfigurationFileState> getUrlToStateMap() {
return myUrlToStateMap;
}
示例7: getCustomStateNames
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("customStates")
@Property(surroundWithTag = false)
@MapAnnotation(
surroundWithTag = false,
keyAttributeName = "state",
valueAttributeName = "name",
surroundKeyWithTag = false,
surroundValueWithTag = false
)
public Map<TaskState, String> getCustomStateNames() {
return myCustomStateNames;
}
示例8: getCreated
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("created")
public Date getCreated()
{
if(myCreated == null)
{
myCreated = new Date();
}
return myCreated;
}
示例9: getIconProjects
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("iconProjects")
public String getIconProjects() {
return myIconProjects;
}
示例10: getNamespaceMappings
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("namespaceMappings")
@NotNull
public List<TesterNamespaceMapping> getNamespaceMappings() {
return namespaceMappings;
}
示例11: getConfiguration
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag(JpsFacetSerializer.CONFIGURATION_TAG)
public Element getConfiguration() {
return myConfiguration;
}
示例12: getOutputPath
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("output-path")
public String getOutputPath() {
return myOutputPath;
}
示例13: getRootElement
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("root")
public Element getRootElement() {
return myRootElement;
}
示例14: getOptions
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("options")
public Element getOptions() {
return myOptions;
}
示例15: getInstanceFilters
import com.intellij.util.xmlb.annotations.Tag; //导入依赖的package包/类
@Tag("instance-filters")
@AbstractCollection(surroundWithTag = false)
public InstanceFilter[] getInstanceFilters() {
return myInstanceFilters != null ? myInstanceFilters : InstanceFilter.EMPTY_ARRAY;
}