Skip to content

Commit 6ef8027

Browse files
Merge pull request #130 from aspose-tasks/tasks-java-api-25-11
Tasks java api 25 11
2 parents 274f86a + 82042a2 commit 6ef8027

File tree

194 files changed

+440
-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.

194 files changed

+440
-217
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,10 @@ 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+
| [PrimaveraCalendarProperties](../com.aspose.tasks/primaveracalendarproperties) | Represents Primavera-specific properties for a calendar read from Primavera files (XER of P6XML). |
201202
| [PrimaveraConstraintType](../com.aspose.tasks/primaveraconstrainttype) | Specifies a type of activity's constraint. |
203+
| [PrimaveraCriticalActivitiesDefiningMethod](../com.aspose.tasks/primaveracriticalactivitiesdefiningmethod) | Specifies the method for defining critical activities in Primavera. |
204+
| [PrimaveraDbReader](../com.aspose.tasks/primaveradbreader) | Represents a reader to read Project Info from Primavera DB |
202205
| [PrimaveraDbSettings](../com.aspose.tasks/primaveradbsettings) | Allows to set necessary options to read project data from Primavera database. |
203206
| [PrimaveraDurationType](../com.aspose.tasks/primaveradurationtype) | Specifies duration type of Primavera activity. |
204207
| [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: 367
6+
weight: 370
77
url: /java/com.aspose.tasks/assignmenttocolumntextconverter/
88
---
99
```

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

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Calendars are used to define standard working and non-working times. Projects mu
6868
| [getName()](#getName--) | Gets the name of the calendar. |
6969
| [getNextWorkingDayStart(Date date)](#getNextWorkingDayStart-java.util.Date-) | Calculates next working day start for the specified date. |
7070
| [getPreviousWorkingDayEnd(Date date)](#getPreviousWorkingDayEnd-java.util.Date-) | Calculates the end of the previous working date from the specified date. |
71+
| [getPrimaveraProperties()](#getPrimaveraProperties--) | Gets an object containing Primavera-specific properties for a calendar read from Primavera formats. |
7172
| [getStartDateFromFinishAndDuration(Date finish, Duration duration)](#getStartDateFromFinishAndDuration-java.util.Date-com.aspose.tasks.Duration-) | Returns start date based on the specified finish date and duration. |
7273
| [getStartDateFromFinishAndDuration(Date finish, double duration)](#getStartDateFromFinishAndDuration-java.util.Date-double-) | Returns start date based on specified finish date and duration. |
7374
| [getTaskFinishDateFromDuration(Task task, double duration)](#getTaskFinishDateFromDuration-com.aspose.tasks.Task-double-) | Calculates the task finish date and time from its start date, split parts and the work duration. |
@@ -84,7 +85,7 @@ Calendars are used to define standard working and non-working times. Projects mu
8485
| [isBaselineCalendar()](#isBaselineCalendar--) | Gets a value indicating whether the calendar is a baseline calendar. |
8586
| [isDayWorking(Date dt)](#isDayWorking-java.util.Date-) | Determines whether the specified day is a working day according to the calendar. |
8687
| [isEmpty()](#isEmpty--) | Returns whether the calendar doesn't have working hours defined. |
87-
| [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. |
88+
| [make24HourCalendar(Calendar calendar)](#make24HourCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar to be a 24Hour Calendar. |
8889
| [makeNightShiftCalendar(Calendar calendar)](#makeNightShiftCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar as Night Shift Calendar. |
8990
| [makeStandardCalendar(Calendar calendar)](#makeStandardCalendar-com.aspose.tasks.Calendar-) | Creates default standard calendar. |
9091
| [setBaseCalendar(Calendar value)](#setBaseCalendar-com.aspose.tasks.Calendar-) | Sets the base calendar on which this calendar depends. |
@@ -232,6 +233,16 @@ Calculates the end of the previous working date from the specified date.
232233
233234
**Returns:**
234235
java.util.Date - The end of the previous working day end java.util.Date
236+
### getPrimaveraProperties() {#getPrimaveraProperties--}
237+
```
238+
public final PrimaveraCalendarProperties getPrimaveraProperties()
239+
```
240+
241+
242+
Gets an object containing Primavera-specific properties for a calendar read from Primavera formats.
243+
244+
**Returns:**
245+
[PrimaveraCalendarProperties](../../com.aspose.tasks/primaveracalendarproperties) - an object containing Primavera-specific properties for a calendar read from Primavera formats.
235246
### getStartDateFromFinishAndDuration(Date finish, Duration duration) {#getStartDateFromFinishAndDuration-java.util.Date-com.aspose.tasks.Duration-}
236247
```
237248
public final Date getStartDateFromFinishAndDuration(Date finish, Duration duration)

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

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: 369
6+
weight: 372
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: 370
6+
weight: 373
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: 371
6+
weight: 374
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: 372
6+
weight: 375
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: 373
6+
weight: 376
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: 374
6+
weight: 377
77
url: /java/com.aspose.tasks/iimagesavingcallback/
88
---
99
```

0 commit comments

Comments
 (0)