本文整理汇总了Java中com.intellij.util.xmlb.annotations.Property类的典型用法代码示例。如果您正苦于以下问题:Java Property类的具体用法?Java Property怎么用?Java Property使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Property类属于com.intellij.util.xmlb.annotations包,在下文中一共展示了Property类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getCommandLineSettings
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@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;
}
}
示例2: getDeviceIds
import com.intellij.util.xmlb.annotations.Property; //导入依赖的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.Property; //导入依赖的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.Property; //导入依赖的package包/类
@Tag("selectors")
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
@NotNull
public List<Selector> getSelectors() {
return new ArrayList<Selector>(mySelectors.values());
}
示例5: getBranches
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@NotNull
@Override
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag="branch")
public List<BranchInfo> getBranches() {
return myBranches;
}
示例6: getWorkItems
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag="workItem")
@Override
public List<WorkItem> getWorkItems() {
return myWorkItems;
}
示例7: getLastSuccessful
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
/**
* @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;
}
示例8: getUrlToStateMap
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@Tag("layouts")
@Property(surroundWithTag = false)
@MapAnnotation(surroundWithTag = false, surroundValueWithTag = false, surroundKeyWithTag = false,
keyAttributeName = "url", entryTagName = "layout")
public Map<String, RenderConfigurationFileState> getUrlToStateMap() {
return myUrlToStateMap;
}
示例9: getCustomStateNames
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@Tag("customStates")
@Property(surroundWithTag = false)
@MapAnnotation(
surroundWithTag = false,
keyAttributeName = "state",
valueAttributeName = "name",
surroundKeyWithTag = false,
surroundValueWithTag = false
)
public Map<TaskState, String> getCustomStateNames() {
return myCustomStateNames;
}
示例10: getChangeLists
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag = "changelist")
public List<ChangeListInfo> getChangeLists()
{
return myChangeLists;
}
示例11: getBranches
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@NotNull
@Override
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag = "branch")
public List<BranchInfo> getBranches()
{
return myBranches;
}
示例12: getWorkItems
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@NotNull
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false, elementTag = "workItem")
@Override
public List<WorkItem> getWorkItems()
{
return myWorkItems;
}
示例13: getTestScope
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@Property
@NotNull
public String getTestScope() {
return StringUtil.notNullize(testScope);
}
示例14: getTesterExecutable
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@Property
@NotNull
public String getTesterExecutable() {
return StringUtil.notNullize(testerExecutable);
}
示例15: getTesterOptions
import com.intellij.util.xmlb.annotations.Property; //导入依赖的package包/类
@Property
@Nullable
public String getTesterOptions() {
return testerOptions;
}