Skip to content

Commit eee8626

Browse files
Merge pull request #119 from aspose-tasks/tasks-java-api-25-7
Aspose.Tasks for Java 25.7 API changes
2 parents c05d85f + ab83222 commit eee8626

File tree

188 files changed

+353
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+353
-217
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ url: /java/com.aspose.tasks/
198198
| [PresentationFormat](../com.aspose.tasks/presentationformat) | Enumeration for presentation format. |
199199
| [PrimaveraActivityType](../com.aspose.tasks/primaveraactivitytype) | Specifies type of Primavera activity. |
200200
| [PrimaveraBaseReader](../com.aspose.tasks/primaverabasereader) | Represents a base reader which can be used to read Project UIDs from multi project Primavera XER or XML files. |
201+
| [PrimaveraConstraintType](../com.aspose.tasks/primaveraconstrainttype) | Specifies a type of activity's constraint. |
201202
| [PrimaveraDbSettings](../com.aspose.tasks/primaveradbsettings) | Allows to set necessary options to read project data from Primavera database. |
202203
| [PrimaveraDurationType](../com.aspose.tasks/primaveradurationtype) | Specifies duration type of Primavera activity. |
203204
| [PrimaveraPercentCompleteType](../com.aspose.tasks/primaverapercentcompletetype) | Specifies value of '% Complete Type' field for Primavera activities. |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: AssignmentToColumnTextConverter
33
second_title: Aspose.Tasks for Java API Reference
44
description: ResourceAssignment data to columns string converter.
55
type: docs
6-
weight: 366
6+
weight: 367
77
url: /java/com.aspose.tasks/assignmenttocolumntextconverter/
88
---
99
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Event
33
second_title: Aspose.Tasks for Java API Reference
44
description: An event.
55
type: docs
6-
weight: 367
6+
weight: 368
77
url: /java/com.aspose.tasks/event/
88
---
99
```

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

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ Represents a criterion in a group definition. The GroupCriterion object is a mem
3131
| [getFontColor()](#getFontColor--) | Gets the color of the font for a field used as a criterion in a group definition. |
3232
| [getGroupInterval()](#getGroupInterval--) | Gets the interval for a field used as a criterion in a group definition. |
3333
| [getGroupOn()](#getGroupOn--) | Gets the type of grouping for a field used as a criterion in a group definition. |
34-
| [getIndex()](#getIndex--) | Gets the index of a [GroupCriterion](../../com.aspose.tasks/groupcriterion) object in the containing [GroupCriterionCollection](../../com.aspose.tasks/groupcriterioncollection) collection. |
35-
| [getParentGroup()](#getParentGroup--) | Gets the parent of the [GroupCriterion](../../com.aspose.tasks/groupcriterion) object. |
3634
| [getPattern()](#getPattern--) | Gets the pattern of the cell for a field used as a criterion in a group definition. |
3735
| [getStartAt()](#getStartAt--) | Gets the start of the intervals for a field used as a criterion in a group definition. |
3836
| [hashCode()](#hashCode--) | Serves as a hash function for a particular type. |
@@ -136,26 +134,6 @@ Gets the type of grouping for a field used as a criterion in a group definition.
136134

137135
**Returns:**
138136
int - the type of grouping for a field used as a criterion in a group definition.
139-
### getIndex() {#getIndex--}
140-
```
141-
public final int getIndex()
142-
```
143-
144-
145-
Gets the index of a [GroupCriterion](../../com.aspose.tasks/groupcriterion) object in the containing [GroupCriterionCollection](../../com.aspose.tasks/groupcriterioncollection) collection.
146-
147-
**Returns:**
148-
int - the index of a [GroupCriterion](../../com.aspose.tasks/groupcriterion) object in the containing [GroupCriterionCollection](../../com.aspose.tasks/groupcriterioncollection) collection.
149-
### getParentGroup() {#getParentGroup--}
150-
```
151-
public final Group getParentGroup()
152-
```
153-
154-
155-
Gets the parent of the [GroupCriterion](../../com.aspose.tasks/groupcriterion) object.
156-
157-
**Returns:**
158-
[Group](../../com.aspose.tasks/group) - the parent of the [GroupCriterion](../../com.aspose.tasks/groupcriterion) object.
159137
### getPattern() {#getPattern--}
160138
```
161139
public final int getPattern()

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

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Contains a collection of [GroupCriterion](../../com.aspose.tasks/groupcriterion)
2121
| [add(GroupCriterion item)](#add-com.aspose.tasks.GroupCriterion-) | Adds the specified item to this collection. |
2222
| [add(int index, GroupCriterion element)](#add-int-com.aspose.tasks.GroupCriterion-) | Inserts the specified element at the specified position in this list. |
2323
| [get(int index)](#get-int-) | (@inheritDoc\} |
24-
| [getParentGroup()](#getParentGroup--) | Gets the parent of the GroupCriterion object. |
2524
| [remove(int index)](#remove-int-) | Removes the element at the specified position in this collection and returns the element that was removed from the collection. |
2625
| [remove(Object item)](#remove-java.lang.Object-) | Removes a single instance of the specified element from this collection, if it is present. |
2726
| [size()](#size--) | Gets the number of elements contained in this collection. |
@@ -70,16 +69,6 @@ public GroupCriterion get(int index)
7069

7170
**Returns:**
7271
[GroupCriterion](../../com.aspose.tasks/groupcriterion) - \{@inheritDoc\}
73-
### getParentGroup() {#getParentGroup--}
74-
```
75-
public final Group getParentGroup()
76-
```
77-
78-
79-
Gets the parent of the GroupCriterion object.
80-
81-
**Returns:**
82-
[Group](../../com.aspose.tasks/group) - the parent of the GroupCriterion object.
8372
### remove(int index) {#remove-int-}
8473
```
8574
public final GroupCriterion remove(int index)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IAlgorithm
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents an algorithm that can be applied to a list of objects T.
55
type: docs
6-
weight: 368
6+
weight: 369
77
url: /java/com.aspose.tasks/ialgorithm/
88
---
99
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ICalendar
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents a calendar abstraction which can be used for various calculations of dates and durations.
55
type: docs
6-
weight: 369
6+
weight: 370
77
url: /java/com.aspose.tasks/icalendar/
88
---
99
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ICondition
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents a condition which can be used by filters or search methods.
55
type: docs
6-
weight: 370
6+
weight: 371
77
url: /java/com.aspose.tasks/icondition/
88
---
99
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ICssSavingCallback
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents a callback that is called to create resource to store CSS.
55
type: docs
6-
weight: 371
6+
weight: 372
77
url: /java/com.aspose.tasks/icsssavingcallback/
88
---
99
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IFontSavingCallback
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents a callback that is called to create resource to store fonts.
55
type: docs
6-
weight: 372
6+
weight: 373
77
url: /java/com.aspose.tasks/ifontsavingcallback/
88
---
99
```

0 commit comments

Comments
 (0)