Package com._1c.g5.v8.dt.team.settings
Interface IDevelopmentProcessSettings
-
public interface IDevelopmentProcessSettingsDevelopment process settings.- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDevelopmentProcessSettingscopy()Creates instance copy.IDeploymentTypegetDeploymentType()Returns associated development deployment type.DevelopmentOptionsgetDevelopmentOptions()Returns associated development options.IIssueTypegetIssueType()Returns associated issue type.StringgetUnsavedIssueTypeName()Returns issue type name, may be not equal toIIssueType#getName()before setting saving.StringgetUnsavedIssueTypePrefix()Returns issue type prefix, may be not equal toIIssueType#getPrefix()before setting saving.voidsetDeploymentType(IDeploymentType deploymentType)Sets development type setting.voidsetIssueTypeName(String issueTypeName)Sets issue type name, may be not equal toIIssueType#getName()before setting saving.voidsetIssueTypePrefix(String issueTypePrefix)Sets issue type prefix, may be not equal toIIssueType#getPrefix()before setting saving.
-
-
-
Method Detail
-
getIssueType
IIssueType getIssueType()
Returns associated issue type.- Returns:
- associated issue type, can be
null
-
getDevelopmentOptions
DevelopmentOptions getDevelopmentOptions()
Returns associated development options.- Returns:
- associated development options, never
null
-
getDeploymentType
IDeploymentType getDeploymentType()
Returns associated development deployment type.- Returns:
- associated development deployment type, never
null
-
getUnsavedIssueTypeName
String getUnsavedIssueTypeName()
Returns issue type name, may be not equal toIIssueType#getName()before setting saving.- Returns:
- the name, not
null
-
getUnsavedIssueTypePrefix
String getUnsavedIssueTypePrefix()
Returns issue type prefix, may be not equal toIIssueType#getPrefix()before setting saving.- Returns:
- the prefix, not
null
-
setDeploymentType
void setDeploymentType(IDeploymentType deploymentType)
Sets development type setting.- Parameters:
deploymentType- the default deployment type to set, cannot benull
-
setIssueTypeName
void setIssueTypeName(String issueTypeName)
Sets issue type name, may be not equal toIIssueType#getName()before setting saving.- Parameters:
issueTypeName- issue type name, notnull.
-
setIssueTypePrefix
void setIssueTypePrefix(String issueTypePrefix)
Sets issue type prefix, may be not equal toIIssueType#getPrefix()before setting saving.- Parameters:
issueTypePrefix- issue type prefix, may be empty to eraseIssueTypeprefix, notnull.
-
copy
IDevelopmentProcessSettings copy()
Creates instance copy.- Returns:
- the instance copy, cannot be
null
-
-