Package com._1c.g5.v8.dt.team.settings
Interface IDevelopmentProcessSettings
-
public interface IDevelopmentProcessSettings
Development 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 IDevelopmentProcessSettings
copy()
Creates instance copy.IDeploymentType
getDeploymentType()
Returns associated development deployment type.DevelopmentOptions
getDevelopmentOptions()
Returns associated development options.IIssueType
getIssueType()
Returns associated issue type.String
getUnsavedIssueTypeName()
Returns issue type name, may be not equal toIIssueType#getName()
before setting saving.String
getUnsavedIssueTypePrefix()
Returns issue type prefix, may be not equal toIIssueType#getPrefix()
before setting saving.void
setDeploymentType(IDeploymentType deploymentType)
Sets development type setting.void
setIssueTypeName(String issueTypeName)
Sets issue type name, may be not equal toIIssueType#getName()
before setting saving.void
setIssueTypePrefix(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 eraseIssueType
prefix, notnull
.
-
copy
IDevelopmentProcessSettings copy()
Creates instance copy.- Returns:
- the instance copy, cannot be
null
-
-