Skip to content

Commit 97f91c3

Browse files
Updated API for Aspose.Tasks for Java 25.3
1 parent 231d289 commit 97f91c3

File tree

86 files changed

+217
-169
lines changed

Some content is hidden

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

86 files changed

+217
-169
lines changed

english/java/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ is_root: true
1010
## Packages
1111
| Package | Description |
1212
| --- | --- |
13-
| [com.aspose.tasks](./com.aspose.tasks) | Contains classes for work with Microsoft Project documents without utilizing Microsoft Project. |
14-
| [com.aspose.tasks.exceptions](./com.aspose.tasks.exceptions) | Contains internal exceptions that can be thrown by the library. |
13+
| [com.aspose.tasks](./com.aspose.tasks) | |

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: com.aspose.tasks
33
second_title: Aspose.Tasks for Java API Reference
4-
description: Contains classes for work with Microsoft Project documents without utilizing Microsoft Project.
4+
description:
55
type: docs
66
weight: 10
77
url: /java/com.aspose.tasks/
@@ -319,6 +319,7 @@ url: /java/com.aspose.tasks/
319319
| [TimephasedDataCollection](../com.aspose.tasks/timephaseddatacollection) | Represents a collection of [TimephasedData](../com.aspose.tasks/timephaseddata) objects. |
320320
| [TimephasedDataType](../com.aspose.tasks/timephaseddatatype) | Specifies the type of time phased data. |
321321
| [Timescale](../com.aspose.tasks/timescale) | Defines options which specifies how to render timescale in Gantt Chart, Task Usage or Resource Usage views when the project is exported to a graphic format. |
322+
| [TimescaleFitBehavior](../com.aspose.tasks/timescalefitbehavior) | Represents a behavior used to align timescale area with page width. |
322323
| [TimescaleTier](../com.aspose.tasks/timescaletier) | Represents a single tier of the timescale on a Gantt Chart. |
323324
| [TimescaleUnit](../com.aspose.tasks/timescaleunit) | Specifies the unit of time for any tier of a timescale in a Gantt chart or other time phased view. |
324325
| [TreeAlgorithmBase<T>](../com.aspose.tasks/treealgorithmbase) | A base class for implementations of ITreeAlgorithm<T> |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ url: /java/com.aspose.tasks/apslayoutbuilderoutofmemoryexception/
88
---
99

1010
**Inheritance:**
11-
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException[com.aspose.tasks.exceptions.Exception](../../com.aspose.tasks.exceptions/exception)
11+
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, com.aspose.ms.System.Exception
1212
```
13-
public class ApsLayoutBuilderOutOfMemoryException extends com.aspose.tasks.exceptions.Exception
13+
public class ApsLayoutBuilderOutOfMemoryException extends System.Exception
1414
```
1515

1616
Represents exception which occurs when there is not enough memory to continue an image layout building.

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: 363
6+
weight: 364
77
url: /java/com.aspose.tasks/assignmenttocolumntextconverter/
88
---
99
```

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ url: /java/com.aspose.tasks/bitmapinvalidsizeexception/
88
---
99

1010
**Inheritance:**
11-
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, [com.aspose.tasks.exceptions.Exception](../../com.aspose.tasks.exceptions/exception)
11+
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, com.aspose.ms.System.Exception
1212
```
13-
public class BitmapInvalidSizeException extends com.aspose.tasks.exceptions.Exception
13+
public class BitmapInvalidSizeException extends System.Exception
1414
```
1515

1616
Represents exception which occurs when there is not enough memory to create a bitmap instance.

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ Represents a calendar used in a project.
1717

1818
--------------------
1919

20-
How to create simple calendar from scratch.
21-
```
20+
> ```
21+
> How to create simple calendar from scratch.
22+
> ``````
2223

2324
// create empty calendar
2425
Calendar calendar = new Calendar();
@@ -76,7 +77,7 @@ Calendars are used to define standard working and non-working times. Projects mu
7677
| [isBaseCalendar()](#isBaseCalendar--) | Gets a value indicating whether the calendar is a base calendar. |
7778
| [isBaselineCalendar()](#isBaselineCalendar--) | Gets a value indicating whether the calendar is a baseline calendar. |
7879
| [isDayWorking(Date dt)](#isDayWorking-java.util.Date-) | Determines whether the day is working day. |
79-
| [make24HourCalendar(Calendar calendar)](#make24HourCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar to be a 24Hour Calendar. |
80+
| [make24HourCalendar(Calendar calendar)](#make24HourCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar to be a 24Hour Calendar. 24Hours Calendar is a Calendar in which every day of week is working with Round-the-clock working hours. |
8081
| [makeNightShiftCalendar(Calendar calendar)](#makeNightShiftCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar as Night Shift Calendar. |
8182
| [makeStandardCalendar(Calendar calendar)](#makeStandardCalendar-com.aspose.tasks.Calendar-) | Creates default standard calendar. |
8283
| [setBaseCalendar(Calendar value)](#setBaseCalendar-com.aspose.tasks.Calendar-) | Sets the base calendar on which this calendar depends. |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ url: /java/com.aspose.tasks/compounddocumentheaderexception/
88
---
99

1010
**Inheritance:**
11-
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, [com.aspose.tasks.exceptions.Exception](../../com.aspose.tasks.exceptions/exception), [com.aspose.tasks.exceptions.ApplicationException](../../com.aspose.tasks.exceptions/applicationexception)
11+
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, com.aspose.ms.System.Exception, com.aspose.ms.System.ApplicationException
1212
```
13-
public class CompoundDocumentHeaderException extends com.aspose.tasks.exceptions.ApplicationException
13+
public class CompoundDocumentHeaderException extends System.ApplicationException
1414
```
1515

1616
Represents an exception which is thrown when the header of MPP file is broken.

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: 364
6+
weight: 365
77
url: /java/com.aspose.tasks/event/
88
---
99
```

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

Lines changed: 37 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Represents an extended attribute definition associated with a project.
5353
| [getMaxMultiValues()](#getMaxMultiValues--) | Gets the maximum number of values you can set in a pick list. |
5454
| [getParentProject()](#getParentProject--) | Gets the parent project for the [ExtendedAttributeDefinition](../../com.aspose.tasks/extendedattributedefinition) instance. |
5555
| [getPhoneticsAlias()](#getPhoneticsAlias--) | Gets the phonetic pronunciation of the alias of a custom field. |
56-
| [getRestrictValues()](#getRestrictValues--) | Gets a value indicating whether the custom field values are restricted to values in the `ValueList`([getValueList()](../../com.aspose.tasks/extendedattributedefinition\#getValueList--)/[setValueList(List)](../../com.aspose.tasks/extendedattributedefinition\#setValueList-List-Value--)). |
56+
| [getRestrictValues()](#getRestrictValues--) | Gets a value indicating whether the custom field values are restricted to values in the `ValueList`([getValueList()](../../com.aspose.tasks/extendedattributedefinition\#getValueList--)/ [setValueList(List)](../../com.aspose.tasks/extendedattributedefinition\#setValueList-List-Value--)). |
5757
| [getRollupType()](#getRollupType--) | Gets the way rollups are calculated. |
5858
| [getSecondaryGuid()](#getSecondaryGuid--) | Gets the secondary guid of extended attribute. |
5959
| [getSecondaryPid()](#getSecondaryPid--) | Gets the secondary PID of a custom field. |
@@ -93,8 +93,9 @@ Adds a value to the internal lookup list. This is a preferable way for manipulat
9393

9494
--------------------
9595

96-
Use this code to add new Value to lookup list:
97-
```
96+
> ```
97+
> Use this code to add new Value to lookup list:
98+
> ``````
9899

99100
taskTextAttr.addLookupValue(new Value() {{
100101
this.setId(1);
@@ -180,8 +181,9 @@ Creates new extended attribute linked with specified [Value](../../com.aspose.ta
180181
181182
--------------------
182183
183-
Use this code to create new [ExtendedAttribute](../../com.aspose.tasks/extendedattribute) using specific value:
184-
```
184+
> ```
185+
> Use this code to create new [ExtendedAttribute](../../com.aspose.tasks/extendedattribute) using specific value:
186+
> ``````
185187
186188
taskTextAttr.addLookupValue(value1);
187189
taskTextAttr.addLookupValue(value2);
@@ -257,8 +259,9 @@ Factory method which creates an extended attribute definition with lookup. It ha
257259

258260
--------------------
259261

260-
Use this example to create a custom field definition for a resource with lookup and then fill it with text values:
261-
```
262+
> ```
263+
> Use this example to create a custom field definition for a resource with lookup and then fill it with text values:
264+
> ``````
262265

263266
ExtendedAttributeDefinition resourceTextAttr = ExtendedAttributeDefinition.createLookupResourceDefinition(ExtendedAttributeResource.Text27, "My custom field");
264267
resourceTextAttr.addLookupValue(new Value() {{
@@ -296,8 +299,9 @@ Factory method which creates an extended attribute definition with lookup. It ha
296299
297300
--------------------
298301
299-
Use this example to create a custom field definition for a resource with lookup and then fill it with text values:
300-
```
302+
> ```
303+
> Use this example to create a custom field definition for a resource with lookup and then fill it with text values:
304+
> ``````
301305
302306
ExtendedAttributeDefinition resourceTextAttr = ExtendedAttributeDefinition.createLookupResourceDefinition(ExtendedAttributeResource.Text27, "My custom field");
303307
resourceTextAttr.addLookupValue(new Value() {{
@@ -334,8 +338,9 @@ Factory method which creates an extended attribute definition with lookup. It ha
334338

335339
--------------------
336340

337-
Use this example to create a custom field definition for a task with lookup and then fill it with text values:
338-
```
341+
> ```
342+
> Use this example to create a custom field definition for a task with lookup and then fill it with text values:
343+
> ``````
339344

340345
ExtendedAttributeDefinition taskTextAttr = ExtendedAttributeDefinition.createLookupTaskDefinition(CustomFieldType.Text, ExtendedAttributeResource.Text27, "My custom field");
341346
taskTextAttr.addLookupValue(new Value() {{
@@ -373,8 +378,9 @@ Factory method which creates an extended attribute definition with lookup. It ha
373378
374379
--------------------
375380
376-
Use this example to create a custom field definition for a task with lookup and then fill it with text values:
377-
```
381+
> ```
382+
> Use this example to create a custom field definition for a task with lookup and then fill it with text values:
383+
> ``````
378384
379385
ExtendedAttributeDefinition taskTextAttr = ExtendedAttributeDefinition.createLookupTaskDefinition(CustomFieldType.Text, ExtendedAttributeResource.Text27, "My custom field");
380386
taskTextAttr.addLookupValue(new Value() {{
@@ -411,8 +417,9 @@ Factory method which creates a simple extended attribute definition, which Micro
411417

412418
--------------------
413419

414-
Use this example to create a custom text field definition:
415-
```
420+
> ```
421+
> Use this example to create a custom text field definition:
422+
> ``````
416423

417424
ExtendedAttributeDefinition resourceTextAttr = ExtendedAttributeDefinition.createResourceDefinition(CustomFieldType.Text, ExtendedAttributeResource.Text27, "My custom field");
418425
project.getExtendedAttributes().add(resourceTextAttr);
@@ -440,8 +447,9 @@ Factory method which creates a simple extended attribute definition, which Micro
440447
441448
--------------------
442449
443-
Use this example to create a custom text field definition:
444-
```
450+
> ```
451+
> Use this example to create a custom text field definition:
452+
> ``````
445453
446454
ExtendedAttributeDefinition resourceTextAttr = ExtendedAttributeDefinition.createResourceDefinition(ExtendedAttributeResource.Text27, "My custom field");
447455
project.getExtendedAttributes().add(resourceTextAttr);
@@ -468,8 +476,9 @@ Factory method which creates a simple extended attribute definition, which Micro
468476

469477
--------------------
470478

471-
Use this example to create a custom text field definition:
472-
```
479+
> ```
480+
> Use this example to create a custom text field definition:
481+
> ``````
473482

474483
ExtendedAttributeDefinition taskTextAttr = ExtendedAttributeDefinition.createTaskDefinition(CustomFieldType.Text, ExtendedAttributeTask.Text27, "My custom field");
475484
project.getExtendedAttributes().add(taskTextAttr);
@@ -497,8 +506,9 @@ Factory method which creates a simple extended attribute definition, which Micro
497506
498507
--------------------
499508
500-
Use this example to create a custom text field definition:
501-
```
509+
> ```
510+
> Use this example to create a custom text field definition:
511+
> ``````
502512
503513
ExtendedAttributeDefinition taskTextAttr = ExtendedAttributeDefinition.createTaskDefinition(ExtendedAttributeTask.Text27, "My custom field");
504514
project.getExtendedAttributes().add(taskTextAttr);
@@ -628,7 +638,9 @@ Gets corresponds to the project id of a custom field. Use string representation
628638

629639
--------------------
630640

631-
```
641+
> ```
642+
>
643+
> ``````
632644

633645
customFieldDefinition.setFieldId(Integer.toString(ExtendedAttributeTask.Number10));
634646

@@ -976,7 +988,9 @@ Sets corresponds to the project id of a custom field. Use string representation
976988
977989
--------------------
978990
979-
```
991+
> ```
992+
>
993+
> ``````
980994
981995
customFieldDefinition.setFieldId(Integer.toString(ExtendedAttributeTask.Number10));
982996

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Represents a group definition. A Group object is a member of the ResourceGroups
2525
| --- | --- |
2626
| [getGroupAssignments()](#getGroupAssignments--) | Gets a value indicating whether assignments should be grouped instead of tasks. |
2727
| [getGroupCriteria()](#getGroupCriteria--) | Gets a GroupCriteria collection representing the fields in a group definition. |
28-
| [getIndex()](#getIndex--) | Gets the index of a [Group](../../com.aspose.tasks/group) object in the Groups list. |
28+
| [getIndex()](#getIndex--) | Gets the index of a [Group](../../com.aspose.tasks/group) object in the Groups list . |
2929
| [getMaintainHierarchy()](#getMaintainHierarchy--) | Gets a value indicating whether to show all the levels of summary tasks for subtasks within group. |
3030
| [getName()](#getName--) | Gets a name of a Group object. |
3131
| [getShowInMenu()](#getShowInMenu--) | Gets a value indicating whether Project shows the group name in the Group drop-down list in the Ribbon. |
3232
| [getShowSummary()](#getShowSummary--) | Gets a value indicating whether summary rows are displayed for the group. |
3333
| [getUid()](#getUid--) | Gets a unique identifier of a group. |
3434
| [setGroupAssignments(boolean value)](#setGroupAssignments-boolean-) | Sets a value indicating whether assignments should be grouped instead of tasks. |
3535
| [setGroupCriteria(GroupCriterionCollection value)](#setGroupCriteria-com.aspose.tasks.GroupCriterionCollection-) | Sets a GroupCriteria collection representing the fields in a group definition. |
36-
| [setIndex(int value)](#setIndex-int-) | Sets the index of a [Group](../../com.aspose.tasks/group) object in the Groups list. |
36+
| [setIndex(int value)](#setIndex-int-) | Sets the index of a [Group](../../com.aspose.tasks/group) object in the Groups list . |
3737
| [setMaintainHierarchy(boolean value)](#setMaintainHierarchy-boolean-) | Sets a value indicating whether to show all the levels of summary tasks for subtasks within group. |
3838
| [setName(String value)](#setName-java.lang.String-) | Sets a name of a Group object. |
3939
| [setShowInMenu(boolean value)](#setShowInMenu-boolean-) | Sets a value indicating whether Project shows the group name in the Group drop-down list in the Ribbon. |

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: 365
6+
weight: 366
77
url: /java/com.aspose.tasks/ialgorithm/
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: 366
6+
weight: 367
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: 367
6+
weight: 368
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: 368
6+
weight: 369
77
url: /java/com.aspose.tasks/ifontsavingcallback/
88
---
99
```

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IMessageHandler
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents a callback the results of resource leveling.
55
type: docs
6-
weight: 370
6+
weight: 371
77
url: /java/com.aspose.tasks/imessagehandler/
88
---
99
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ url: /java/com.aspose.tasks/invalidpasswordexception/
88
---
99

1010
**Inheritance:**
11-
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, [com.aspose.tasks.exceptions.Exception](../../com.aspose.tasks.exceptions/exception), [com.aspose.tasks.exceptions.ApplicationException](../../com.aspose.tasks.exceptions/applicationexception), [com.aspose.tasks.TasksException](../../com.aspose.tasks/tasksexception)
11+
java.lang.Object, java.lang.Throwable, java.lang.Exception, java.lang.RuntimeException, com.aspose.ms.System.Exception, com.aspose.ms.System.ApplicationException, [com.aspose.tasks.TasksException](../../com.aspose.tasks/tasksexception)
1212
```
1313
public class InvalidPasswordException extends TasksException
1414
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IPageSavingCallback
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents a callback that is called when each page in multi page document is saved to a separate stream.
55
type: docs
6-
weight: 371
6+
weight: 372
77
url: /java/com.aspose.tasks/ipagesavingcallback/
88
---
99
```

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

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

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: IVbaModule
33
second_title: Aspose.Tasks for Java API Reference
44
description: Represents a module with VBA code.
55
type: docs
6-
weight: 374
6+
weight: 375
77
url: /java/com.aspose.tasks/ivbamodule/
88
---
99
```

0 commit comments

Comments
 (0)