Skip to content

Commit b7a8ac8

Browse files
authored
Merge pull request #83 from aspose-tasks/main
Updated Aspose.Tasks for Java API reference to v.24.11.
2 parents fc839ac + bc96b80 commit b7a8ac8

File tree

6 files changed

+113
-22
lines changed

6 files changed

+113
-22
lines changed

english/java/com.aspose.tasks/extendedattributedefinition/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ public final GraphicalIndicatorsInfo getGraphicalIndicator()
670670
```
671671

672672

673-
Gets a graphical indicators info associated with the extended attribute.
673+
Gets a graphical indicators info associated with the extended attribute. Applicable to MPP format.
674674

675675
**Returns:**
676676
[GraphicalIndicatorsInfo](../../com.aspose.tasks/graphicalindicatorsinfo) - a graphical indicators info associated with the extended attribute.
@@ -1010,7 +1010,7 @@ public final void setGraphicalIndicator(GraphicalIndicatorsInfo value)
10101010
```
10111011

10121012

1013-
Sets a graphical indicators info associated with the extended attribute.
1013+
Sets a graphical indicators info associated with the extended attribute. Applicable to MPP format.
10141014

10151015
**Parameters:**
10161016
| Parameter | Type | Description |

english/java/com.aspose.tasks/group/_index.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@ Represents a group definition. A Group object is a member of the ResourceGroups
2323

2424
| Method | Description |
2525
| --- | --- |
26+
| [getGroupAssignments()](#getGroupAssignments--) | Gets a value indicating whether assignments should be grouped instead of tasks. |
2627
| [getGroupCriteria()](#getGroupCriteria--) | Gets a GroupCriteria collection representing the fields in a group definition. |
2728
| [getIndex()](#getIndex--) | Gets the index of a [Group](../../com.aspose.tasks/group) object in the Groups containing object. |
2829
| [getMaintainHierarchy()](#getMaintainHierarchy--) | Gets a value indicating whether to show all the levels of summary tasks for subtasks within group. |
2930
| [getName()](#getName--) | Gets a name of a Group object. |
3031
| [getShowInMenu()](#getShowInMenu--) | Gets a value indicating whether Project shows the group name in the Group drop-down list in the Ribbon. |
3132
| [getShowSummary()](#getShowSummary--) | Gets a value indicating whether summary rows are displayed for the group. |
3233
| [getUid()](#getUid--) | Gets a unique identifier of a group. |
34+
| [setGroupAssignments(boolean value)](#setGroupAssignments-boolean-) | Sets a value indicating whether assignments should be grouped instead of tasks. |
3335
| [setGroupCriteria(GroupCriterionCollection value)](#setGroupCriteria-com.aspose.tasks.GroupCriterionCollection-) | Sets a GroupCriteria collection representing the fields in a group definition. |
3436
| [setMaintainHierarchy(boolean value)](#setMaintainHierarchy-boolean-) | Sets a value indicating whether to show all the levels of summary tasks for subtasks within group. |
3537
| [setName(String value)](#setName-java.lang.String-) | Sets a name of a Group object. |
@@ -43,6 +45,16 @@ public Group()
4345

4446
Initializes a new instance of the [Group](../../com.aspose.tasks/group) class.
4547

48+
### getGroupAssignments() {#getGroupAssignments--}
49+
```
50+
public final boolean getGroupAssignments()
51+
```
52+
53+
54+
Gets a value indicating whether assignments should be grouped instead of tasks.
55+
56+
**Returns:**
57+
boolean - a value indicating whether assignments should be grouped instead of tasks.
4658
### getGroupCriteria() {#getGroupCriteria--}
4759
```
4860
public final GroupCriterionCollection getGroupCriteria()
@@ -113,6 +125,19 @@ Gets a unique identifier of a group.
113125

114126
**Returns:**
115127
int - a unique identifier of a group.
128+
### setGroupAssignments(boolean value) {#setGroupAssignments-boolean-}
129+
```
130+
public final void setGroupAssignments(boolean value)
131+
```
132+
133+
134+
Sets a value indicating whether assignments should be grouped instead of tasks.
135+
136+
**Parameters:**
137+
| Parameter | Type | Description |
138+
| --- | --- | --- |
139+
| value | boolean | a value indicating whether assignments should be grouped instead of tasks. |
140+
116141
### setGroupCriteria(GroupCriterionCollection value) {#setGroupCriteria-com.aspose.tasks.GroupCriterionCollection-}
117142
```
118143
public final void setGroupCriteria(GroupCriterionCollection value)

english/java/com.aspose.tasks/mppsaveoptions/_index.md

Lines changed: 70 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,18 @@ Allows to specify additional options when saving project data to MPP.
2323

2424
| Method | Description |
2525
| --- | --- |
26+
| [getClearVba()](#getClearVba--) | Gets a value indicating whether to remove existing VBA macros data when saving a project to MPP format. |
2627
| [getProtectionPassword()](#getProtectionPassword--) | Gets a password which is used to protect a resulting MPP file. |
2728
| [getRemoveInvalidAssignments()](#getRemoveInvalidAssignments--) | Gets a value indicating whether to remove invalid resource assignments when saving to MPP. |
28-
| [getWriteFilters()](#getWriteFilters--) | Gets a value indicating whether to write filter data when saving to MPP. |
29-
| [getWriteViewData()](#getWriteViewData--) | Gets a value indicating whether to write view data when saving to MPP. |
29+
| [getWriteFilters()](#getWriteFilters--) | Gets a value indicating whether to write filter data when saving a project to MPP for format. |
30+
| [getWriteGroups()](#getWriteGroups--) | Gets a value indicating whether to write groups data when saving a project to MPP for format. |
31+
| [getWriteViewData()](#getWriteViewData--) | Gets a value indicating whether to write view data when saving a project to MPP format. |
32+
| [setClearVba(boolean value)](#setClearVba-boolean-) | Sets a value indicating whether to remove existing VBA macros data when saving a project to MPP format. |
3033
| [setProtectionPassword(String value)](#setProtectionPassword-java.lang.String-) | Sets a password which is used to protect a resulting MPP file. |
3134
| [setRemoveInvalidAssignments(boolean value)](#setRemoveInvalidAssignments-boolean-) | Sets a value indicating whether to remove invalid resource assignments when saving to MPP. |
32-
| [setWriteFilters(boolean value)](#setWriteFilters-boolean-) | Sets a value indicating whether to write filter data when saving to MPP. |
33-
| [setWriteViewData(boolean value)](#setWriteViewData-boolean-) | Sets a value indicating whether to write view data when saving to MPP. |
35+
| [setWriteFilters(boolean value)](#setWriteFilters-boolean-) | Sets a value indicating whether to write filter data when saving a project to MPP for format. |
36+
| [setWriteGroups(boolean value)](#setWriteGroups-boolean-) | Sets a value indicating whether to write groups data when saving a project to MPP for format. |
37+
| [setWriteViewData(boolean value)](#setWriteViewData-boolean-) | Sets a value indicating whether to write view data when saving a project to MPP format. |
3438
### MPPSaveOptions() {#MPPSaveOptions--}
3539
```
3640
public MPPSaveOptions()
@@ -39,6 +43,16 @@ public MPPSaveOptions()
3943

4044
Initializes a new instance of the [MPPSaveOptions](../../com.aspose.tasks/mppsaveoptions) class.
4145

46+
### getClearVba() {#getClearVba--}
47+
```
48+
public final boolean getClearVba()
49+
```
50+
51+
52+
Gets a value indicating whether to remove existing VBA macros data when saving a project to MPP format.
53+
54+
**Returns:**
55+
boolean - a value indicating whether to remove existing VBA macros data when saving a project to MPP format.
4256
### getProtectionPassword() {#getProtectionPassword--}
4357
```
4458
public final String getProtectionPassword()
@@ -73,7 +87,7 @@ public final boolean getWriteFilters()
7387
```
7488

7589

76-
Gets a value indicating whether to write filter data when saving to MPP.
90+
Gets a value indicating whether to write filter data when saving a project to MPP for format.
7791

7892
--------------------
7993

@@ -84,21 +98,48 @@ Filter data includes Project.TaskFilters and Project.ResourceFilters collections
8498
Currently supported for MSP 2010 or newer formats.
8599

86100
**Returns:**
87-
boolean - a value indicating whether to write filter data when saving to MPP.
101+
boolean - a value indicating whether to write filter data when saving a project to MPP for format.
102+
### getWriteGroups() {#getWriteGroups--}
103+
```
104+
public final boolean getWriteGroups()
105+
```
106+
107+
108+
Gets a value indicating whether to write groups data when saving a project to MPP for format.
109+
110+
--------------------
111+
112+
Group data includes Project.TaskGroups and Project.ResourceGroups collections.
113+
114+
**Returns:**
115+
boolean - a value indicating whether to write groups data when saving a project to MPP for format.
88116
### getWriteViewData() {#getWriteViewData--}
89117
```
90118
public final boolean getWriteViewData()
91119
```
92120

93121

94-
Gets a value indicating whether to write view data when saving to MPP.
122+
Gets a value indicating whether to write view data when saving a project to MPP format.
95123

96124
--------------------
97125

98126
View data includes Project.Views, Filters and Tables collections.
99127

100128
**Returns:**
101-
boolean - a value indicating whether to write view data when saving to MPP.
129+
boolean - a value indicating whether to write view data when saving a project to MPP format.
130+
### setClearVba(boolean value) {#setClearVba-boolean-}
131+
```
132+
public final void setClearVba(boolean value)
133+
```
134+
135+
136+
Sets a value indicating whether to remove existing VBA macros data when saving a project to MPP format.
137+
138+
**Parameters:**
139+
| Parameter | Type | Description |
140+
| --- | --- | --- |
141+
| value | boolean | a value indicating whether to remove existing VBA macros data when saving a project to MPP format. |
142+
102143
### setProtectionPassword(String value) {#setProtectionPassword-java.lang.String-}
103144
```
104145
public final void setProtectionPassword(String value)
@@ -139,7 +180,7 @@ public final void setWriteFilters(boolean value)
139180
```
140181

141182

142-
Sets a value indicating whether to write filter data when saving to MPP.
183+
Sets a value indicating whether to write filter data when saving a project to MPP for format.
143184

144185
--------------------
145186

@@ -152,15 +193,32 @@ Currently supported for MSP 2010 or newer formats.
152193
**Parameters:**
153194
| Parameter | Type | Description |
154195
| --- | --- | --- |
155-
| value | boolean | a value indicating whether to write filter data when saving to MPP. |
196+
| value | boolean | a value indicating whether to write filter data when saving a project to MPP for format. |
197+
198+
### setWriteGroups(boolean value) {#setWriteGroups-boolean-}
199+
```
200+
public final void setWriteGroups(boolean value)
201+
```
202+
203+
204+
Sets a value indicating whether to write groups data when saving a project to MPP for format.
205+
206+
--------------------
207+
208+
Group data includes Project.TaskGroups and Project.ResourceGroups collections.
209+
210+
**Parameters:**
211+
| Parameter | Type | Description |
212+
| --- | --- | --- |
213+
| value | boolean | a value indicating whether to write groups data when saving a project to MPP for format. |
156214

157215
### setWriteViewData(boolean value) {#setWriteViewData-boolean-}
158216
```
159217
public final void setWriteViewData(boolean value)
160218
```
161219

162220

163-
Sets a value indicating whether to write view data when saving to MPP.
221+
Sets a value indicating whether to write view data when saving a project to MPP format.
164222

165223
--------------------
166224

@@ -169,5 +227,5 @@ View data includes Project.Views, Filters and Tables collections.
169227
**Parameters:**
170228
| Parameter | Type | Description |
171229
| --- | --- | --- |
172-
| value | boolean | a value indicating whether to write view data when saving to MPP. |
230+
| value | boolean | a value indicating whether to write view data when saving a project to MPP format. |
173231

english/java/com.aspose.tasks/saveoptions/_index.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ An instance of any derived class from SaveOptions class is passed to the stream
3939
| [getRenderToSinglePage()](#getRenderToSinglePage--) | Gets a value indicating whether a project should be rendered to a single page when project is saved in graphical format. |
4040
| [getRollUpGanttBars()](#getRollUpGanttBars--) | Gets a value indicating whether subtasks on the summary task bar should be marked. |
4141
| [getStartDate()](#getStartDate--) | Gets the date to start rendering from. |
42-
| [getTextStyles()](#getTextStyles--) | Gets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view. |
42+
| [getTextStyles()](#getTextStyles--) | Gets the list of text styles that applied during rendering of a project view. |
4343
| [getTimescale()](#getTimescale--) | Gets the `Timescale`([getTimescale()](../../com.aspose.tasks/saveoptions\#getTimescale--)/[setTimescale(int)](../../com.aspose.tasks/saveoptions\#setTimescale-int-)) value which is used to control how timescale (if present) is rendered when project is saved to graphical format. |
4444
| [getUseGradientBrush()](#getUseGradientBrush--) | Gets a value indicating whether gradient brush should be used when rendering Gantt Chart. |
4545
| [getView()](#getView--) | Gets a list of the view columns to render ([GanttChartColumn](../../com.aspose.tasks/ganttchartcolumn)). |
@@ -62,7 +62,7 @@ An instance of any derived class from SaveOptions class is passed to the stream
6262
| [setRenderToSinglePage(boolean value)](#setRenderToSinglePage-boolean-) | Sets a value indicating whether a project should be rendered to a single page when project is saved in graphical format. |
6363
| [setRollUpGanttBars(boolean value)](#setRollUpGanttBars-boolean-) | Sets a value indicating whether subtasks on the summary task bar should be marked. |
6464
| [setStartDate(Date value)](#setStartDate-java.util.Date-) | Sets the date to start rendering from. |
65-
| [setTextStyles(List<TextStyle> value)](#setTextStyles-java.util.List-com.aspose.tasks.TextStyle--) | Sets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view. |
65+
| [setTextStyles(List<TextStyle> value)](#setTextStyles-java.util.List-com.aspose.tasks.TextStyle--) | Sets the list of text styles that applied during rendering of a project view. |
6666
| [setTimescale(int value)](#setTimescale-int-) | Sets the `Timescale`([getTimescale()](../../com.aspose.tasks/saveoptions\#getTimescale--)/[setTimescale(int)](../../com.aspose.tasks/saveoptions\#setTimescale-int-)) value which is used to control how timescale (if present) is rendered when project is saved to graphical format. |
6767
| [setUseGradientBrush(boolean value)](#setUseGradientBrush-boolean-) | Sets a value indicating whether gradient brush should be used when rendering Gantt Chart. |
6868
| [setView(ProjectView value)](#setView-com.aspose.tasks.ProjectView-) | Sets a list of the view columns to render ([GanttChartColumn](../../com.aspose.tasks/ganttchartcolumn)). |
@@ -247,10 +247,14 @@ public final List<TextStyle> getTextStyles()
247247
```
248248

249249

250-
Gets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view.
250+
Gets the list of text styles that applied during rendering of a project view.
251+
252+
--------------------
253+
254+
These styles override styles defined with GanttCharView.setTextStyles.
251255

252256
**Returns:**
253-
java.util.List&lt;com.aspose.tasks.TextStyle&gt; - the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view.
257+
java.util.List&lt;com.aspose.tasks.TextStyle&gt; - the list of text styles that applied during rendering of a project view.
254258
### getTimescale() {#getTimescale--}
255259
```
256260
public final int getTimescale()
@@ -544,12 +548,16 @@ public final void setTextStyles(List<TextStyle> value)
544548
```
545549

546550

547-
Sets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view.
551+
Sets the list of text styles that applied during rendering of a project view.
552+
553+
--------------------
554+
555+
These styles override styles defined with GanttCharView.setTextStyles.
548556

549557
**Parameters:**
550558
| Parameter | Type | Description |
551559
| --- | --- | --- |
552-
| value | java.util.List&lt;com.aspose.tasks.TextStyle&gt; | the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view. |
560+
| value | java.util.List&lt;com.aspose.tasks.TextStyle&gt; | the list of text styles that applied during rendering of a project view. |
553561

554562
### setTimescale(int value) {#setTimescale-int-}
555563
```

english/java/com.aspose.tasks/tasklink/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ java.lang.Object
1313
**All Implemented Interfaces:**
1414
com.aspose.ms.System.IEquatable
1515
```
16-
public class TaskLink implements System.IEquatable<TaskLink>
16+
public final class TaskLink implements System.IEquatable<TaskLink>
1717
```
1818

1919
Represents a predecessor link.

english/java/com.aspose.tasks/vbamoduleattribute/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ java.lang.Object
1313
**All Implemented Interfaces:**
1414
com.aspose.ms.System.IEquatable
1515
```
16-
public class VbaModuleAttribute implements System.IEquatable<VbaModuleAttribute>
16+
public final class VbaModuleAttribute implements System.IEquatable<VbaModuleAttribute>
1717
```
1818

1919
The attribute of the [VbaModule](../../com.aspose.tasks/vbamodule) object

0 commit comments

Comments
 (0)