Class SaveTemplateOptions
- java.lang.Object
-
- com.aspose.tasks.SaveTemplateOptions
-
public class SaveTemplateOptions extends Object
Allows to specify additional options when saving a project as a template.
-
-
Constructor Summary
Constructors Constructor Description SaveTemplateOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getRemoveActualValues()
Gets a value indicating whether all actual values from a project template should be removed.boolean
getRemoveBaselineValues()
Gets a value indicating whether all baseline values from a project template should be removed.boolean
getRemoveFixedCosts()
Gets a value indicating whether all fixed costs from a project template should be removed.boolean
getRemoveResourceRates()
Gets a value indicating whether resource rates from a project template should be removed.void
setRemoveActualValues(boolean value)
Sets a value indicating whether all actual values from a project template should be removed.void
setRemoveBaselineValues(boolean value)
Sets a value indicating whether all baseline values from a project template should be removed.void
setRemoveFixedCosts(boolean value)
Sets a value indicating whether all fixed costs from a project template should be removed.void
setRemoveResourceRates(boolean value)
Sets a value indicating whether resource rates from a project template should be removed.
-
-
-
Method Detail
-
getRemoveActualValues
public final boolean getRemoveActualValues()
Gets a value indicating whether all actual values from a project template should be removed.
- Returns:
- a value indicating whether all actual values from a project template should be removed.
-
setRemoveActualValues
public final void setRemoveActualValues(boolean value)
Sets a value indicating whether all actual values from a project template should be removed.
- Parameters:
value
- a value indicating whether all actual values from a project template should be removed.
-
getRemoveBaselineValues
public final boolean getRemoveBaselineValues()
Gets a value indicating whether all baseline values from a project template should be removed.
- Returns:
- a value indicating whether all baseline values from a project template should be removed.
-
setRemoveBaselineValues
public final void setRemoveBaselineValues(boolean value)
Sets a value indicating whether all baseline values from a project template should be removed.
- Parameters:
value
- a value indicating whether all baseline values from a project template should be removed.
-
getRemoveFixedCosts
public final boolean getRemoveFixedCosts()
Gets a value indicating whether all fixed costs from a project template should be removed.
- Returns:
- a value indicating whether all fixed costs from a project template should be removed.
-
setRemoveFixedCosts
public final void setRemoveFixedCosts(boolean value)
Sets a value indicating whether all fixed costs from a project template should be removed.
- Parameters:
value
- a value indicating whether all fixed costs from a project template should be removed.
-
getRemoveResourceRates
public final boolean getRemoveResourceRates()
Gets a value indicating whether resource rates from a project template should be removed.
- Returns:
- a value indicating whether resource rates from a project template should be removed.
-
setRemoveResourceRates
public final void setRemoveResourceRates(boolean value)
Sets a value indicating whether resource rates from a project template should be removed.
- Parameters:
value
- a value indicating whether resource rates from a project template should be removed.
-
-