From b6c7fda4236f51bed5b7e4dc06c46251e8f9aba6 Mon Sep 17 00:00:00 2001 From: Jon Iles Date: Thu, 17 Oct 2024 11:19:19 +0100 Subject: [PATCH 1/4] Add flags for attribute visibility (#762) --- mkdocs/docs/field-guide.md | 3 + mkdocs/docs/mpp-field-guide.md | 3 + src/changes/changes.xml | 1 + src/main/java/net/sf/mpxj/LocaleData.java | 3 + src/main/java/net/sf/mpxj/Task.java | 33 ++++++++ src/main/java/net/sf/mpxj/TaskField.java | 5 +- .../java/net/sf/mpxj/mpp/MPP14Reader.java | 84 +++++++++++++++++-- 7 files changed, 123 insertions(+), 9 deletions(-) diff --git a/mkdocs/docs/field-guide.md b/mkdocs/docs/field-guide.md index 245ed0f449..ad4bda1195 100644 --- a/mkdocs/docs/field-guide.md +++ b/mkdocs/docs/field-guide.md @@ -318,6 +318,9 @@ Secondary Constraint Date| | | | | | | | | | | | | | |✓| |✓| Secondary Constraint Type| | | | | | | | | | | | | | |✓| |✓| | | | | | |  Section| | | | | | | | | | | | | | | | | | | | | |✓| |  Sequence Number| | | | | | | | | | | | | | |✓|✓|✓| | | | | | |  +Show Duration Text| | | | | | | | |✓| | | | | | | | | | | | | | |  +Show Finish Text| | | | | | | | |✓| | | | | | | | | | | | | | |  +Show Start Text| | | | | | | | |✓| | | | | | | | | | | | | | |  Splits| | | | | | | | |✓| |✓| | | | | | | | | | | | |  Sprint ID| | | | | | | | |✓| | | | | | | | | | | | | | |  Start|✓|✓|✓|✓|✓|✓| |✓|✓|✓|✓|✓|✓|✓|✓|✓|✓|✓|✓|✓|✓|✓|✓|✓ diff --git a/mkdocs/docs/mpp-field-guide.md b/mkdocs/docs/mpp-field-guide.md index e001878010..d09d76427e 100644 --- a/mkdocs/docs/mpp-field-guide.md +++ b/mkdocs/docs/mpp-field-guide.md @@ -233,6 +233,9 @@ Rollup|✓|✓|✓|✓ Scheduled Duration| | | |✓ Scheduled Finish| | | |✓ Scheduled Start| | | |✓ +Show Duration Text| | | |✓ +Show Finish Text| | | |✓ +Show Start Text| | | |✓ Splits| |✓|✓|✓ Sprint ID| | | |✓ Start|✓|✓|✓|✓ diff --git a/src/changes/changes.xml b/src/changes/changes.xml index e45ddf2abe..efb8387c53 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -9,6 +9,7 @@ Added support for reading and writing Resource Role Assignments for Primavera schedules. The `Resource.getRoleAssignments()` method retrieves a map representing the roles a resource is assigned to, along with the skill level for each assignment. The `Resource.addRoleAssignment()` and `Resource.removeRoleAssignment()` methods allow role assignments to be added and removed. Added support for the Resource Primary Role attribute, which is read from and written to Primavera schedules. Improve handling Boolean attributes with default values when reading XER files. + Added the `getShowStartText`, `getShowFinishText` and `getShowDurationText` methods to the `Task` class. When working with manually scheduled tasks in Microsoft Project, users can potentially supply arbitrary text for the Start, Finish and Duration attributes. Microsoft Project still stores appropriate values for these attributes, which can be accessed in MPXJ as Start, Finish and Duration, but where the user has supplied text, these attributes are available as Start Text, Finish Text, and Duration Text. The methods added by this change allow the caller to determine which version of each attribute should be shown to the user in order to replicate what they see in Microsoft Project. Added the `ProjectCalendarDays.getCalendarHours()` method to allow direct access to the `ProjectCalendarHours` instances for each day of the week. diff --git a/src/main/java/net/sf/mpxj/LocaleData.java b/src/main/java/net/sf/mpxj/LocaleData.java index 0c5862b345..cedebfae44 100644 --- a/src/main/java/net/sf/mpxj/LocaleData.java +++ b/src/main/java/net/sf/mpxj/LocaleData.java @@ -1055,6 +1055,9 @@ public static final String[] getStringArray(Locale locale, String key) TASK_COLUMNS_ARRAY[TaskField.PLANNED_WORK_NONLABOR.getValue()] = "Planned Work (Nonlabor)"; TASK_COLUMNS_ARRAY[TaskField.REMAINING_WORK_LABOR.getValue()] = "Remaining Work (Labor)"; TASK_COLUMNS_ARRAY[TaskField.REMAINING_WORK_NONLABOR.getValue()] = "Remaining Work (Nonlabor)"; + TASK_COLUMNS_ARRAY[TaskField.SHOW_START_TEXT.getValue()] = "Show Start Text"; + TASK_COLUMNS_ARRAY[TaskField.SHOW_FINISH_TEXT.getValue()] = "Show Finish Text"; + TASK_COLUMNS_ARRAY[TaskField.SHOW_DURATION_TEXT.getValue()] = "Show Duration Text"; RESOURCE_COLUMNS_ARRAY[ResourceField.ID.getValue()] = "ID"; RESOURCE_COLUMNS_ARRAY[ResourceField.NAME.getValue()] = "Name"; diff --git a/src/main/java/net/sf/mpxj/Task.java b/src/main/java/net/sf/mpxj/Task.java index 03cdced89b..fba1a32b14 100644 --- a/src/main/java/net/sf/mpxj/Task.java +++ b/src/main/java/net/sf/mpxj/Task.java @@ -5451,6 +5451,39 @@ public Duration getRemainingWorkNonlabor() return (Duration) get(TaskField.REMAINING_WORK_NONLABOR); } + /** + * Returns true for manually scheduled tasks if the Start Text attribute should be + * displayed to the user rather than the Start attribute. + * + * @return true if Start Text should be displayed + */ + public boolean getShowStartText() + { + return (BooleanHelper.getBoolean((Boolean) get(TaskField.SHOW_START_TEXT))); + } + + /** + * Returns true for manually scheduled tasks if the Finish Text attribute should be + * displayed to the user rather than the Finish attribute. + * + * @return true if Finish Text should be displayed + */ + public boolean getShowFinishText() + { + return (BooleanHelper.getBoolean((Boolean) get(TaskField.SHOW_FINISH_TEXT))); + } + + /** + * Returns true for manually scheduled tasks if the Duration Text attribute should be + * displayed to the user rather than the Duration attribute. + * + * @return true if Duration Text should be displayed + */ + public boolean getShowDurationText() + { + return (BooleanHelper.getBoolean((Boolean) get(TaskField.SHOW_DURATION_TEXT))); + } + /** * Retrieve the effective calendar for this task. If the task does not have * a specific calendar associated with it, fall back to using the default calendar diff --git a/src/main/java/net/sf/mpxj/TaskField.java b/src/main/java/net/sf/mpxj/TaskField.java index 0b6f0c2a80..25adba0c15 100644 --- a/src/main/java/net/sf/mpxj/TaskField.java +++ b/src/main/java/net/sf/mpxj/TaskField.java @@ -1034,7 +1034,10 @@ public enum TaskField implements FieldType PLANNED_WORK_LABOR(DataType.DURATION), PLANNED_WORK_NONLABOR(DataType.DURATION), REMAINING_WORK_LABOR(DataType.DURATION), - REMAINING_WORK_NONLABOR(DataType.DURATION); + REMAINING_WORK_NONLABOR(DataType.DURATION), + SHOW_START_TEXT(DataType.BOOLEAN), + SHOW_FINISH_TEXT(DataType.BOOLEAN), + SHOW_DURATION_TEXT(DataType.BOOLEAN); /** * Constructor. diff --git a/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java b/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java index 5415bd7992..31d6fefda8 100644 --- a/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java +++ b/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java @@ -1026,17 +1026,27 @@ private void processTaskData() throws IOException // MppBitFlag[] metaDataBitFlags; MppBitFlag[] metaData2BitFlags; - if (NumberHelper.getInt(m_file.getProjectProperties().getApplicationVersion()) > ApplicationVersion.PROJECT_2010) + + int applicationVersion = NumberHelper.getInt(m_file.getProjectProperties().getApplicationVersion()); + if (applicationVersion <= ApplicationVersion.PROJECT_2010) { - metaDataBitFlags = PROJECT2013_TASK_META_DATA_BIT_FLAGS; - metaData2BitFlags = PROJECT2013_TASK_META_DATA2_BIT_FLAGS; + metaDataBitFlags = PROJECT2010_TASK_META_DATA_BIT_FLAGS; + metaData2BitFlags = PROJECT2010_TASK_META_DATA2_BIT_FLAGS; } else { - metaDataBitFlags = PROJECT2010_TASK_META_DATA_BIT_FLAGS; - metaData2BitFlags = PROJECT2010_TASK_META_DATA2_BIT_FLAGS; + if (applicationVersion == ApplicationVersion.PROJECT_2013) + { + metaDataBitFlags = PROJECT2013_TASK_META_DATA_BIT_FLAGS; + metaData2BitFlags = PROJECT2013_TASK_META_DATA2_BIT_FLAGS; + } + else + { + metaDataBitFlags = PROJECT2016_TASK_META_DATA_BIT_FLAGS; + metaData2BitFlags = PROJECT2016_TASK_META_DATA2_BIT_FLAGS; + } } - + for (Integer uniqueID : uniqueIdArray) { offset = taskMap.get(uniqueID); @@ -1312,6 +1322,15 @@ private void processTaskData() throws IOException m_taskOrder.put(key, task.getUniqueID()); } + // Ensure these fields are only populated + // for manually scheduled tasks which have not been progressed. + if (task.getTaskMode() != TaskMode.MANUALLY_SCHEDULED || task.getActualStart() != null) + { + task.set(TaskField.SHOW_START_TEXT, null); + task.set(TaskField.SHOW_FINISH_TEXT, null); + task.set(TaskField.SHOW_DURATION_TEXT, null); + } + m_eventManager.fireTaskReadEvent(task); //dumpUnknownData(task.getUniqueID().toString(), UNKNOWN_TASK_DATA, data); //System.out.println(task); @@ -2121,16 +2140,65 @@ private void readBitFields(MppBitFlag[] flags, FieldContainer container, byte[] new MppBitFlag(TaskField.IGNORE_RESOURCE_CALENDAR, 17, 0x20, Boolean.FALSE, Boolean.TRUE) }; + private static final MppBitFlag[] PROJECT2016_TASK_META_DATA_BIT_FLAGS = + { + new MppBitFlag(TaskField.FLAG1, 24, 0x0002, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG2, 24, 0x0004, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG3, 24, 0x0008, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG4, 24, 0x0010, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG5, 24, 0x0020, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG6, 24, 0x0040, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG7, 24, 0x0080, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG8, 24, 0x0100, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG9, 24, 0x0200, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG10, 24, 0x0400, Boolean.FALSE, Boolean.TRUE), + + new MppBitFlag(TaskField.FLAG11, 33, 0x002, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG12, 33, 0x004, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG13, 33, 0x008, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG14, 33, 0x010, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG15, 33, 0x020, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG16, 33, 0x040, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG17, 33, 0x080, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG18, 33, 0x100, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG19, 33, 0x200, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG20, 33, 0x400, Boolean.FALSE, Boolean.TRUE), + + new MppBitFlag(TaskField.MILESTONE, 10, 0x02, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.MARKED, 12, 0x02, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.ROLLUP, 12, 0x04, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.HIDE_BAR, 12, 0x80, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.EFFORT_DRIVEN, 13, 0x08, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.LEVEL_ASSIGNMENTS, 16, 0x04, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.LEVELING_CAN_SPLIT, 16, 0x02, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.IGNORE_RESOURCE_CALENDAR, 17, 0x20, Boolean.FALSE, Boolean.TRUE) + }; + private static final MppBitFlag[] PROJECT2010_TASK_META_DATA2_BIT_FLAGS = { new MppBitFlag(TaskField.ACTIVE, 8, 0x04, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.TASK_MODE, 8, 0x08, Boolean.FALSE, Boolean.TRUE) + new MppBitFlag(TaskField.TASK_MODE, 8, 0x08, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_START_TEXT, 86, 0x04, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_FINISH_TEXT, 86, 0x08, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_DURATION_TEXT, 86, 0x10, Boolean.FALSE, Boolean.TRUE) }; private static final MppBitFlag[] PROJECT2013_TASK_META_DATA2_BIT_FLAGS = { new MppBitFlag(TaskField.ACTIVE, 8, 0x40, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.TASK_MODE, 8, 0x80, Boolean.FALSE, Boolean.TRUE) + new MppBitFlag(TaskField.TASK_MODE, 8, 0x80, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_START_TEXT, 87, 0x02, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_FINISH_TEXT, 87, 0x04, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_DURATION_TEXT, 87, 0x08, Boolean.FALSE, Boolean.TRUE) + }; + + private static final MppBitFlag[] PROJECT2016_TASK_META_DATA2_BIT_FLAGS = + { + new MppBitFlag(TaskField.ACTIVE, 8, 0x40, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.TASK_MODE, 8, 0x80, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_START_TEXT, 87, 0x40, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_FINISH_TEXT, 87, 0x80, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.SHOW_DURATION_TEXT, 88, 0x01, Boolean.FALSE, Boolean.TRUE) }; private static final MppBitFlag[] PROJECT2010_RESOURCE_META_DATA2_BIT_FLAGS = From 36773b191d4ace0008c1caf96ca98ff61f38471a Mon Sep 17 00:00:00 2001 From: Jon Iles Date: Thu, 17 Oct 2024 12:10:38 +0100 Subject: [PATCH 2/4] Update version --- CHANGELOG.md | 6 ++++- build.xml | 2 +- pom.tests.xml | 2 +- pom.xml | 2 +- .../MpxjConvert/Properties/AssemblyInfo.cs | 6 ++--- .../MpxjCreate/Properties/AssemblyInfo.cs | 6 ++--- .../Properties/AssemblyInfo.cs | 6 ++--- .../MpxjQuery/Properties/AssemblyInfo.cs | 6 ++--- .../MpxjTest/Properties/AssemblyInfo.cs | 6 ++--- src.net/utilities/AssemblyInfo.cs | 6 ++--- src.net/utilities/MpxjUtilities.nca31.csproj | 2 +- src.python/mpxj/setup.py | 2 +- src.ruby/mpxj/lib/mpxj/resource_methods.rb | 8 +++++++ src.ruby/mpxj/lib/mpxj/task_methods.rb | 24 +++++++++++++++++++ src.ruby/mpxj/lib/mpxj/version.rb | 2 +- src/changes/changes.xml | 4 +++- src/main/java/net/sf/mpxj/MPXJ.java | 2 +- 17 files changed, 65 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c46be1601..5c0bc23ceb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog -## 13.5.0 (unreleased) +## 13.5.1 (unreleased) + +## 13.5.0 (2024-10-17) * Added support for reading and writing Resource Role Assignments for Primavera schedules. The `Resource.getRoleAssignments()` method retrieves a map representing the roles a resource is assigned to, along with the skill level for each assignment. The `Resource.addRoleAssignment()` and `Resource.removeRoleAssignment()` methods allow role assignments to be added and removed. * Added support for the Resource Primary Role attribute, which is read from and written to Primavera schedules. +* Improve handling Boolean attributes with default values when reading XER files. +* Added the `getShowStartText`, `getShowFinishText` and `getShowDurationText` methods to the `Task` class. When working with manually scheduled tasks in Microsoft Project, users can potentially supply arbitrary text for the Start, Finish and Duration attributes. Microsoft Project still stores appropriate values for these attributes, which can be accessed in MPXJ as Start, Finish and Duration, but where the user has supplied text, these attributes are available as Start Text, Finish Text, and Duration Text. The methods added by this change allow the caller to determine which version of each attribute should be shown to the user in order to replicate what they see in Microsoft Project. ## 13.4.2 (2024-10-08) * Added the `ProjectCalendarDays.getCalendarHours()` method to allow direct access to the `ProjectCalendarHours` instances for each day of the week. diff --git a/build.xml b/build.xml index fa4247e75c..8c88e3e97d 100644 --- a/build.xml +++ b/build.xml @@ -7,7 +7,7 @@ - + diff --git a/pom.tests.xml b/pom.tests.xml index 251da4f44b..882e8d1d0a 100644 --- a/pom.tests.xml +++ b/pom.tests.xml @@ -7,7 +7,7 @@ 4.0.0 net.sf.mpxj mpxj-tests - 13.4.2 + 13.5.0 MPXJ Tests diff --git a/pom.xml b/pom.xml index 8a9655569f..bd4f935d92 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ 4.0.0 net.sf.mpxj mpxj - 13.4.2 + 13.5.0 MPXJ http://mpxj.org diff --git a/src.net/samples/MpxjConvert/Properties/AssemblyInfo.cs b/src.net/samples/MpxjConvert/Properties/AssemblyInfo.cs index fe2271efaa..2a7aef7840 100644 --- a/src.net/samples/MpxjConvert/Properties/AssemblyInfo.cs +++ b/src.net/samples/MpxjConvert/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyFileVersion("13.4.2.0")] +// [assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyFileVersion("13.5.0.0")] diff --git a/src.net/samples/MpxjCreate/Properties/AssemblyInfo.cs b/src.net/samples/MpxjCreate/Properties/AssemblyInfo.cs index 0dbe4a08e6..6ec05a6323 100644 --- a/src.net/samples/MpxjCreate/Properties/AssemblyInfo.cs +++ b/src.net/samples/MpxjCreate/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyFileVersion("13.4.2.0")] +// [assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyFileVersion("13.5.0.0")] diff --git a/src.net/samples/MpxjPrimaveraConvert/Properties/AssemblyInfo.cs b/src.net/samples/MpxjPrimaveraConvert/Properties/AssemblyInfo.cs index 218850e9cf..50acce20cc 100644 --- a/src.net/samples/MpxjPrimaveraConvert/Properties/AssemblyInfo.cs +++ b/src.net/samples/MpxjPrimaveraConvert/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyFileVersion("13.4.2.0")] +// [assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyFileVersion("13.5.0.0")] diff --git a/src.net/samples/MpxjQuery/Properties/AssemblyInfo.cs b/src.net/samples/MpxjQuery/Properties/AssemblyInfo.cs index 39965dff3b..d908fe31b1 100644 --- a/src.net/samples/MpxjQuery/Properties/AssemblyInfo.cs +++ b/src.net/samples/MpxjQuery/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyFileVersion("13.4.2.0")] +// [assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyFileVersion("13.5.0.0")] diff --git a/src.net/samples/MpxjTest/Properties/AssemblyInfo.cs b/src.net/samples/MpxjTest/Properties/AssemblyInfo.cs index 288a630cd6..dbecb9d973 100644 --- a/src.net/samples/MpxjTest/Properties/AssemblyInfo.cs +++ b/src.net/samples/MpxjTest/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyFileVersion("13.4.2.0")] +// [assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyFileVersion("13.5.0.0")] diff --git a/src.net/utilities/AssemblyInfo.cs b/src.net/utilities/AssemblyInfo.cs index f10a08ea08..d411dff647 100644 --- a/src.net/utilities/AssemblyInfo.cs +++ b/src.net/utilities/AssemblyInfo.cs @@ -32,6 +32,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyVersion("13.4.2.0")] -[assembly: AssemblyFileVersion("13.4.2.0")] +// [assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyVersion("13.5.0.0")] +[assembly: AssemblyFileVersion("13.5.0.0")] diff --git a/src.net/utilities/MpxjUtilities.nca31.csproj b/src.net/utilities/MpxjUtilities.nca31.csproj index 087909c0d0..ba23b94fd7 100644 --- a/src.net/utilities/MpxjUtilities.nca31.csproj +++ b/src.net/utilities/MpxjUtilities.nca31.csproj @@ -6,7 +6,7 @@ netcoreapp3.1 true ..\mpxj.snk - 13.4.2.0 + 13.5.0.0 Copyright © Packwood Software diff --git a/src.python/mpxj/setup.py b/src.python/mpxj/setup.py index e6a7d8d8ac..ef225d05ee 100644 --- a/src.python/mpxj/setup.py +++ b/src.python/mpxj/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="mpxj", - version="13.4.2", + version="13.5.0", author="Jon Iles", author_email="jon@timephased.com", description="Python wrapper for the MPXJ Java library for manipulating project files", diff --git a/src.ruby/mpxj/lib/mpxj/resource_methods.rb b/src.ruby/mpxj/lib/mpxj/resource_methods.rb index fcd3f588eb..f532c3a4dd 100644 --- a/src.ruby/mpxj/lib/mpxj/resource_methods.rb +++ b/src.ruby/mpxj/lib/mpxj/resource_methods.rb @@ -3329,6 +3329,13 @@ def pool get_float_value(attribute_values['pool']) end + # Retrieve the Primary Role Unique ID value + # + # @return Primary Role Unique ID value + def primary_role_unique_id + get_integer_value(attribute_values['primary_role_unique_id']) + end + # Retrieve the Priority value # # @return Priority value @@ -4372,6 +4379,7 @@ def work_variance 'phone' => :string, 'phonetics' => :string, 'pool' => :numeric, + 'primary_role_unique_id' => :integer, 'priority' => :numeric, 'project' => :string, 'proposed_finish' => :date, diff --git a/src.ruby/mpxj/lib/mpxj/task_methods.rb b/src.ruby/mpxj/lib/mpxj/task_methods.rb index fb872b796a..daa8cfcaa5 100644 --- a/src.ruby/mpxj/lib/mpxj/task_methods.rb +++ b/src.ruby/mpxj/lib/mpxj/task_methods.rb @@ -6234,6 +6234,20 @@ def sequence_number get_integer_value(attribute_values['sequence_number']) end + # Retrieve the Show Duration Text value + # + # @return Show Duration Text value + def show_duration_text + get_boolean_value(attribute_values['show_duration_text']) + end + + # Retrieve the Show Finish Text value + # + # @return Show Finish Text value + def show_finish_text + get_boolean_value(attribute_values['show_finish_text']) + end + # Retrieve the Show On Board value # # @return Show On Board value @@ -6241,6 +6255,13 @@ def show_on_board attribute_values['show_on_board'] end + # Retrieve the Show Start Text value + # + # @return Show Start Text value + def show_start_text + get_boolean_value(attribute_values['show_start_text']) + end + # Retrieve the SPI value # # @return SPI value @@ -7769,7 +7790,10 @@ def work_variance 'secondary_constraint_type' => :constraint, 'section' => :string, 'sequence_number' => :integer, + 'show_duration_text' => :boolean, + 'show_finish_text' => :boolean, 'show_on_board' => :string, + 'show_start_text' => :boolean, 'spi' => :numeric, 'splits' => :date_range_list, 'sprint' => :string, diff --git a/src.ruby/mpxj/lib/mpxj/version.rb b/src.ruby/mpxj/lib/mpxj/version.rb index 997e8befb1..97c5629ca1 100644 --- a/src.ruby/mpxj/lib/mpxj/version.rb +++ b/src.ruby/mpxj/lib/mpxj/version.rb @@ -1,5 +1,5 @@ # MPXJ gem module module MPXJ # MPXJ gem version number - VERSION = "13.4.2" + VERSION = "13.5.0" end diff --git a/src/changes/changes.xml b/src/changes/changes.xml index efb8387c53..cdb774b7a8 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -5,7 +5,9 @@ Jon Iles - + + + Added support for reading and writing Resource Role Assignments for Primavera schedules. The `Resource.getRoleAssignments()` method retrieves a map representing the roles a resource is assigned to, along with the skill level for each assignment. The `Resource.addRoleAssignment()` and `Resource.removeRoleAssignment()` methods allow role assignments to be added and removed. Added support for the Resource Primary Role attribute, which is read from and written to Primavera schedules. Improve handling Boolean attributes with default values when reading XER files. diff --git a/src/main/java/net/sf/mpxj/MPXJ.java b/src/main/java/net/sf/mpxj/MPXJ.java index 19e80a20d9..8f3c9d629a 100644 --- a/src/main/java/net/sf/mpxj/MPXJ.java +++ b/src/main/java/net/sf/mpxj/MPXJ.java @@ -28,5 +28,5 @@ */ public final class MPXJ { - public static final String VERSION = "13.4.2"; + public static final String VERSION = "13.5.0"; } From 6c54148fbf077d1d1a17cbb491e7d201b49b6f39 Mon Sep 17 00:00:00 2001 From: Jon Iles Date: Thu, 17 Oct 2024 12:18:57 +0100 Subject: [PATCH 3/4] Cleanup --- .../java/net/sf/mpxj/mpp/MPP14Reader.java | 66 +++++++++---------- .../java/net/sf/mpxj/primavera/MapRow.java | 3 +- .../sf/mpxj/primavera/PrimaveraReader.java | 3 +- .../primavera/PrimaveraXERFileWriter.java | 2 +- .../java/net/sf/mpxj/primavera/XerWriter.java | 2 +- 5 files changed, 37 insertions(+), 39 deletions(-) diff --git a/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java b/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java index 31d6fefda8..3a89f0c04b 100644 --- a/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java +++ b/src/main/java/net/sf/mpxj/mpp/MPP14Reader.java @@ -1046,7 +1046,7 @@ private void processTaskData() throws IOException metaData2BitFlags = PROJECT2016_TASK_META_DATA2_BIT_FLAGS; } } - + for (Integer uniqueID : uniqueIdArray) { offset = taskMap.get(uniqueID); @@ -2141,38 +2141,38 @@ private void readBitFields(MppBitFlag[] flags, FieldContainer container, byte[] }; private static final MppBitFlag[] PROJECT2016_TASK_META_DATA_BIT_FLAGS = - { - new MppBitFlag(TaskField.FLAG1, 24, 0x0002, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG2, 24, 0x0004, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG3, 24, 0x0008, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG4, 24, 0x0010, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG5, 24, 0x0020, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG6, 24, 0x0040, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG7, 24, 0x0080, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG8, 24, 0x0100, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG9, 24, 0x0200, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG10, 24, 0x0400, Boolean.FALSE, Boolean.TRUE), - - new MppBitFlag(TaskField.FLAG11, 33, 0x002, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG12, 33, 0x004, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG13, 33, 0x008, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG14, 33, 0x010, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG15, 33, 0x020, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG16, 33, 0x040, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG17, 33, 0x080, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG18, 33, 0x100, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG19, 33, 0x200, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.FLAG20, 33, 0x400, Boolean.FALSE, Boolean.TRUE), - - new MppBitFlag(TaskField.MILESTONE, 10, 0x02, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.MARKED, 12, 0x02, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.ROLLUP, 12, 0x04, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.HIDE_BAR, 12, 0x80, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.EFFORT_DRIVEN, 13, 0x08, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.LEVEL_ASSIGNMENTS, 16, 0x04, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.LEVELING_CAN_SPLIT, 16, 0x02, Boolean.FALSE, Boolean.TRUE), - new MppBitFlag(TaskField.IGNORE_RESOURCE_CALENDAR, 17, 0x20, Boolean.FALSE, Boolean.TRUE) - }; + { + new MppBitFlag(TaskField.FLAG1, 24, 0x0002, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG2, 24, 0x0004, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG3, 24, 0x0008, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG4, 24, 0x0010, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG5, 24, 0x0020, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG6, 24, 0x0040, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG7, 24, 0x0080, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG8, 24, 0x0100, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG9, 24, 0x0200, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG10, 24, 0x0400, Boolean.FALSE, Boolean.TRUE), + + new MppBitFlag(TaskField.FLAG11, 33, 0x002, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG12, 33, 0x004, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG13, 33, 0x008, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG14, 33, 0x010, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG15, 33, 0x020, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG16, 33, 0x040, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG17, 33, 0x080, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG18, 33, 0x100, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG19, 33, 0x200, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.FLAG20, 33, 0x400, Boolean.FALSE, Boolean.TRUE), + + new MppBitFlag(TaskField.MILESTONE, 10, 0x02, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.MARKED, 12, 0x02, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.ROLLUP, 12, 0x04, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.HIDE_BAR, 12, 0x80, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.EFFORT_DRIVEN, 13, 0x08, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.LEVEL_ASSIGNMENTS, 16, 0x04, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.LEVELING_CAN_SPLIT, 16, 0x02, Boolean.FALSE, Boolean.TRUE), + new MppBitFlag(TaskField.IGNORE_RESOURCE_CALENDAR, 17, 0x20, Boolean.FALSE, Boolean.TRUE) + }; private static final MppBitFlag[] PROJECT2010_TASK_META_DATA2_BIT_FLAGS = { diff --git a/src/main/java/net/sf/mpxj/primavera/MapRow.java b/src/main/java/net/sf/mpxj/primavera/MapRow.java index 6ea58bff14..8be16e3175 100644 --- a/src/main/java/net/sf/mpxj/primavera/MapRow.java +++ b/src/main/java/net/sf/mpxj/primavera/MapRow.java @@ -29,7 +29,6 @@ import net.sf.mpxj.Duration; import net.sf.mpxj.TimeUnit; -import net.sf.mpxj.common.BooleanHelper; import net.sf.mpxj.common.NumberHelper; /** @@ -151,7 +150,7 @@ public MapRow(Map map, boolean ignoreErrors) if (value instanceof Boolean) { - return (Boolean)value; + return (Boolean) value; } if (value instanceof Number) diff --git a/src/main/java/net/sf/mpxj/primavera/PrimaveraReader.java b/src/main/java/net/sf/mpxj/primavera/PrimaveraReader.java index da2059c4ab..f2aa985d1b 100644 --- a/src/main/java/net/sf/mpxj/primavera/PrimaveraReader.java +++ b/src/main/java/net/sf/mpxj/primavera/PrimaveraReader.java @@ -59,7 +59,6 @@ import net.sf.mpxj.ShiftContainer; import net.sf.mpxj.ShiftPeriod; import net.sf.mpxj.ShiftPeriodContainer; -import net.sf.mpxj.SkillLevel; import net.sf.mpxj.UnitOfMeasure; import net.sf.mpxj.UnitOfMeasureContainer; import net.sf.mpxj.common.DayOfWeekHelper; @@ -2112,7 +2111,7 @@ public void processRoleAssignments(List rows) continue; } - Integer roleID = row.getInteger("role_id"); + Integer roleID = row.getInteger("role_id"); if (roleID == null) { continue; diff --git a/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java b/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java index 1ce4928b6c..5d0f6c31f2 100644 --- a/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java +++ b/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java @@ -1076,7 +1076,7 @@ private static String getResourceShortName(Resource resource) return resource.getResourceID() == null || resource.getResourceID().isEmpty() ? RESOURCE_ID_PREFIX + resource.getUniqueID() : resource.getResourceID(); } - public static String getRoleShortName(Resource role) + private static String getRoleShortName(Resource role) { return role.getResourceID() == null || role.getResourceID().isEmpty() ? ROLE_ID_PREFIX + role.getUniqueID() : role.getResourceID(); } diff --git a/src/main/java/net/sf/mpxj/primavera/XerWriter.java b/src/main/java/net/sf/mpxj/primavera/XerWriter.java index 4e39f641b8..ac61cf0354 100644 --- a/src/main/java/net/sf/mpxj/primavera/XerWriter.java +++ b/src/main/java/net/sf/mpxj/primavera/XerWriter.java @@ -336,7 +336,7 @@ private interface FormatFunction FORMAT_MAP.put(DataType.class, (w, o) -> UdfHelper.getXerFromDataType((DataType) o)); FORMAT_MAP.put(MaxUnits.class, (w, o) -> w.m_maxUnitsFormat.format(NumberHelper.getDouble(((MaxUnits) o).toNumber()) / 100.0)); FORMAT_MAP.put(Currency.class, (w, o) -> w.m_currencyFormat.format(((Currency) o).toNumber())); - FORMAT_MAP.put(SkillLevel.class, (w, o) -> SkillLevelHelper.getXerFromInstance((SkillLevel)o)); + FORMAT_MAP.put(SkillLevel.class, (w, o) -> SkillLevelHelper.getXerFromInstance((SkillLevel) o)); FORMAT_MAP.put(String.class, (w, o) -> w.formatString((String) o)); } } From d18d6d17ceb47ce8128a7662f00548e571d308f6 Mon Sep 17 00:00:00 2001 From: Jon Iles Date: Thu, 17 Oct 2024 17:40:28 +0100 Subject: [PATCH 4/4] Update documentation --- docs/CHANGELOG/index.html | 31 +- docs/apidocs/allclasses-frame.html | 2 +- docs/apidocs/allclasses-noframe.html | 2 +- docs/apidocs/constant-values.html | 6 +- docs/apidocs/deprecated-list.html | 4 +- docs/apidocs/help-doc.html | 4 +- docs/apidocs/index-all.html | 21 +- docs/apidocs/index.html | 2 +- .../net/sf/mpxj/AbstractFieldContainer.html | 4 +- docs/apidocs/net/sf/mpxj/AccrueType.html | 4 +- .../net/sf/mpxj/ActivityCode.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/ActivityCode.html | 4 +- .../net/sf/mpxj/ActivityCodeContainer.html | 4 +- .../net/sf/mpxj/ActivityCodeScope.html | 4 +- .../sf/mpxj/ActivityCodeValue.Builder.html | 4 +- .../net/sf/mpxj/ActivityCodeValue.html | 4 +- docs/apidocs/net/sf/mpxj/ActivityStatus.html | 4 +- docs/apidocs/net/sf/mpxj/ActivityType.html | 4 +- docs/apidocs/net/sf/mpxj/AssignmentField.html | 4 +- docs/apidocs/net/sf/mpxj/Availability.html | 4 +- .../net/sf/mpxj/AvailabilityTable.html | 4 +- .../apidocs/net/sf/mpxj/BaselineStrategy.html | 4 +- docs/apidocs/net/sf/mpxj/BookingType.html | 4 +- docs/apidocs/net/sf/mpxj/CalendarType.html | 4 +- .../net/sf/mpxj/ChildResourceContainer.html | 4 +- .../net/sf/mpxj/ChildTaskContainer.html | 4 +- docs/apidocs/net/sf/mpxj/CodePage.html | 4 +- docs/apidocs/net/sf/mpxj/Column.html | 4 +- docs/apidocs/net/sf/mpxj/ConstraintField.html | 4 +- docs/apidocs/net/sf/mpxj/ConstraintType.html | 4 +- .../net/sf/mpxj/CostAccount.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/CostAccount.html | 4 +- .../net/sf/mpxj/CostAccountContainer.html | 4 +- docs/apidocs/net/sf/mpxj/CostRateTable.html | 4 +- .../net/sf/mpxj/CostRateTableEntry.html | 4 +- .../net/sf/mpxj/CriticalActivityType.html | 4 +- .../net/sf/mpxj/CurrencySymbolPosition.html | 4 +- docs/apidocs/net/sf/mpxj/CustomField.html | 4 +- .../net/sf/mpxj/CustomFieldContainer.html | 4 +- .../net/sf/mpxj/CustomFieldLookupTable.html | 4 +- .../net/sf/mpxj/CustomFieldValueDataType.html | 4 +- .../net/sf/mpxj/CustomFieldValueMask.html | 4 +- docs/apidocs/net/sf/mpxj/DataLink.html | 4 +- .../net/sf/mpxj/DataLinkContainer.html | 4 +- docs/apidocs/net/sf/mpxj/DataType.html | 4 +- docs/apidocs/net/sf/mpxj/DateOrder.html | 4 +- docs/apidocs/net/sf/mpxj/DayType.html | 4 +- .../net/sf/mpxj/DefaultBaselineStrategy.html | 4 +- docs/apidocs/net/sf/mpxj/Duration.html | 4 +- .../net/sf/mpxj/EarnedValueMethod.html | 4 +- docs/apidocs/net/sf/mpxj/EventManager.html | 4 +- .../net/sf/mpxj/ExpenseCategory.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/ExpenseCategory.html | 4 +- .../net/sf/mpxj/ExpenseCategoryContainer.html | 4 +- .../net/sf/mpxj/ExpenseItem.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/ExpenseItem.html | 4 +- docs/apidocs/net/sf/mpxj/FieldContainer.html | 4 +- docs/apidocs/net/sf/mpxj/FieldType.html | 4 +- docs/apidocs/net/sf/mpxj/FieldTypeClass.html | 4 +- docs/apidocs/net/sf/mpxj/FileVersion.html | 4 +- docs/apidocs/net/sf/mpxj/Filter.html | 4 +- docs/apidocs/net/sf/mpxj/FilterContainer.html | 4 +- docs/apidocs/net/sf/mpxj/GenericCriteria.html | 4 +- .../net/sf/mpxj/GenericCriteriaPrompt.html | 4 +- .../net/sf/mpxj/GraphicalIndicator.html | 4 +- .../sf/mpxj/GraphicalIndicatorCriteria.html | 4 +- docs/apidocs/net/sf/mpxj/Group.html | 4 +- docs/apidocs/net/sf/mpxj/GroupClause.html | 4 +- docs/apidocs/net/sf/mpxj/GroupContainer.html | 4 +- docs/apidocs/net/sf/mpxj/HasCharset.html | 4 +- docs/apidocs/net/sf/mpxj/HtmlNotes.html | 4 +- .../net/sf/mpxj/ListWithCallbacks.html | 4 +- docs/apidocs/net/sf/mpxj/LocalDateRange.html | 4 +- .../net/sf/mpxj/LocalDateTimeRange.html | 4 +- docs/apidocs/net/sf/mpxj/LocalTimeRange.html | 4 +- docs/apidocs/net/sf/mpxj/LocaleData.html | 4 +- docs/apidocs/net/sf/mpxj/LocaleData_en.html | 4 +- .../apidocs/net/sf/mpxj/Location.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/Location.html | 4 +- .../net/sf/mpxj/LocationContainer.html | 4 +- docs/apidocs/net/sf/mpxj/MPXJ.html | 4 +- docs/apidocs/net/sf/mpxj/MPXJException.html | 4 +- .../mpxj/ManuallyScheduledTaskCalendar.html | 4 +- docs/apidocs/net/sf/mpxj/MpxjEnum.html | 4 +- docs/apidocs/net/sf/mpxj/Notes.html | 4 +- .../net/sf/mpxj/NotesTopic.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/NotesTopic.html | 4 +- .../net/sf/mpxj/NotesTopicContainer.html | 4 +- docs/apidocs/net/sf/mpxj/ParentNotes.html | 4 +- .../net/sf/mpxj/PercentCompleteType.html | 4 +- docs/apidocs/net/sf/mpxj/Priority.html | 4 +- docs/apidocs/net/sf/mpxj/ProjectCalendar.html | 4 +- .../net/sf/mpxj/ProjectCalendarContainer.html | 4 +- .../net/sf/mpxj/ProjectCalendarDays.html | 4 +- .../net/sf/mpxj/ProjectCalendarException.html | 4 +- .../net/sf/mpxj/ProjectCalendarHours.html | 4 +- .../net/sf/mpxj/ProjectCalendarWeek.html | 4 +- docs/apidocs/net/sf/mpxj/ProjectConfig.html | 4 +- .../net/sf/mpxj/ProjectDateFormat.html | 4 +- .../net/sf/mpxj/ProjectEntityContainer.html | 4 +- .../net/sf/mpxj/ProjectEntityWithID.html | 4 +- .../sf/mpxj/ProjectEntityWithIDContainer.html | 4 +- .../ProjectEntityWithMutableUniqueID.html | 4 +- .../sf/mpxj/ProjectEntityWithUniqueID.html | 4 +- docs/apidocs/net/sf/mpxj/ProjectField.html | 4 +- docs/apidocs/net/sf/mpxj/ProjectFile.html | 4 +- .../net/sf/mpxj/ProjectFileSharedData.html | 4 +- .../net/sf/mpxj/ProjectProperties.html | 4 +- .../net/sf/mpxj/ProjectTimeFormat.html | 4 +- docs/apidocs/net/sf/mpxj/Rate.html | 4 +- docs/apidocs/net/sf/mpxj/RateSource.html | 4 +- docs/apidocs/net/sf/mpxj/RecurrenceType.html | 4 +- docs/apidocs/net/sf/mpxj/RecurringData.html | 4 +- docs/apidocs/net/sf/mpxj/RecurringTask.html | 4 +- .../apidocs/net/sf/mpxj/Relation.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/Relation.html | 4 +- .../net/sf/mpxj/RelationContainer.html | 4 +- docs/apidocs/net/sf/mpxj/RelationType.html | 4 +- .../net/sf/mpxj/RelationshipLagCalendar.html | 4 +- docs/apidocs/net/sf/mpxj/Resource.html | 4 +- .../net/sf/mpxj/ResourceAssignment.html | 4 +- .../sf/mpxj/ResourceAssignmentContainer.html | 4 +- .../ResourceAssignmentWorkgroupFields.html | 4 +- .../net/sf/mpxj/ResourceContainer.html | 4 +- docs/apidocs/net/sf/mpxj/ResourceField.html | 4 +- .../net/sf/mpxj/ResourceRequestType.html | 4 +- docs/apidocs/net/sf/mpxj/ResourceType.html | 4 +- docs/apidocs/net/sf/mpxj/RtfNotes.html | 4 +- docs/apidocs/net/sf/mpxj/ScheduleFrom.html | 4 +- .../mpxj/SchedulingProgressedActivities.html | 4 +- docs/apidocs/net/sf/mpxj/Shift.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/Shift.html | 4 +- docs/apidocs/net/sf/mpxj/ShiftContainer.html | 4 +- .../net/sf/mpxj/ShiftPeriod.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/ShiftPeriod.html | 4 +- .../net/sf/mpxj/ShiftPeriodContainer.html | 4 +- docs/apidocs/net/sf/mpxj/SkillLevel.html | 4 +- docs/apidocs/net/sf/mpxj/Step.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/Step.html | 4 +- docs/apidocs/net/sf/mpxj/StructuredNotes.html | 4 +- docs/apidocs/net/sf/mpxj/Table.html | 4 +- docs/apidocs/net/sf/mpxj/TableContainer.html | 4 +- docs/apidocs/net/sf/mpxj/Task.html | 584 +-- docs/apidocs/net/sf/mpxj/TaskContainer.html | 4 +- docs/apidocs/net/sf/mpxj/TaskField.html | 222 +- docs/apidocs/net/sf/mpxj/TaskMode.html | 4 +- docs/apidocs/net/sf/mpxj/TaskType.html | 4 +- .../net/sf/mpxj/TemporaryCalendar.html | 4 +- docs/apidocs/net/sf/mpxj/TestOperator.html | 4 +- .../apidocs/net/sf/mpxj/TimePeriodEntity.html | 4 +- docs/apidocs/net/sf/mpxj/TimeUnit.html | 4 +- .../sf/mpxj/TimeUnitDefaultsContainer.html | 4 +- docs/apidocs/net/sf/mpxj/TimephasedCost.html | 4 +- .../net/sf/mpxj/TimephasedCostContainer.html | 4 +- docs/apidocs/net/sf/mpxj/TimephasedItem.html | 4 +- docs/apidocs/net/sf/mpxj/TimephasedWork.html | 4 +- .../net/sf/mpxj/TimephasedWorkContainer.html | 4 +- .../sf/mpxj/TotalSlackCalculationType.html | 4 +- .../mpxj/UniqueIdObjectSequenceProvider.html | 4 +- .../net/sf/mpxj/UnitOfMeasure.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/UnitOfMeasure.html | 4 +- .../net/sf/mpxj/UnitOfMeasureContainer.html | 4 +- .../net/sf/mpxj/UserDefinedField.Builder.html | 4 +- .../apidocs/net/sf/mpxj/UserDefinedField.html | 4 +- .../sf/mpxj/UserDefinedFieldContainer.html | 4 +- docs/apidocs/net/sf/mpxj/View.html | 4 +- docs/apidocs/net/sf/mpxj/ViewContainer.html | 4 +- docs/apidocs/net/sf/mpxj/ViewState.html | 4 +- docs/apidocs/net/sf/mpxj/ViewType.html | 4 +- docs/apidocs/net/sf/mpxj/WorkContour.html | 4 +- .../net/sf/mpxj/WorkContourContainer.html | 4 +- docs/apidocs/net/sf/mpxj/WorkGroup.html | 4 +- .../sf/mpxj/asta/AstaBaselineStrategy.html | 4 +- .../net/sf/mpxj/asta/AstaFileReader.html | 4 +- .../net/sf/mpxj/asta/AstaJdbcReader.html | 4 +- .../net/sf/mpxj/asta/AstaMdbReader.html | 4 +- .../net/sf/mpxj/asta/AstaSqliteReader.html | 4 +- .../net/sf/mpxj/asta/AstaTextFileReader.html | 4 +- .../asta/class-use/AstaBaselineStrategy.html | 4 +- .../mpxj/asta/class-use/AstaFileReader.html | 4 +- .../mpxj/asta/class-use/AstaJdbcReader.html | 4 +- .../sf/mpxj/asta/class-use/AstaMdbReader.html | 4 +- .../mpxj/asta/class-use/AstaSqliteReader.html | 4 +- .../asta/class-use/AstaTextFileReader.html | 4 +- .../net/sf/mpxj/asta/package-frame.html | 2 +- .../net/sf/mpxj/asta/package-summary.html | 4 +- .../net/sf/mpxj/asta/package-tree.html | 4 +- .../apidocs/net/sf/mpxj/asta/package-use.html | 4 +- .../class-use/AbstractFieldContainer.html | 4 +- .../net/sf/mpxj/class-use/AccrueType.html | 4 +- .../mpxj/class-use/ActivityCode.Builder.html | 4 +- .../net/sf/mpxj/class-use/ActivityCode.html | 4 +- .../mpxj/class-use/ActivityCodeContainer.html | 4 +- .../sf/mpxj/class-use/ActivityCodeScope.html | 4 +- .../class-use/ActivityCodeValue.Builder.html | 4 +- .../sf/mpxj/class-use/ActivityCodeValue.html | 4 +- .../net/sf/mpxj/class-use/ActivityStatus.html | 4 +- .../net/sf/mpxj/class-use/ActivityType.html | 4 +- .../sf/mpxj/class-use/AssignmentField.html | 4 +- .../net/sf/mpxj/class-use/Availability.html | 4 +- .../sf/mpxj/class-use/AvailabilityTable.html | 4 +- .../sf/mpxj/class-use/BaselineStrategy.html | 4 +- .../net/sf/mpxj/class-use/BookingType.html | 4 +- .../net/sf/mpxj/class-use/CalendarType.html | 4 +- .../class-use/ChildResourceContainer.html | 4 +- .../sf/mpxj/class-use/ChildTaskContainer.html | 4 +- .../net/sf/mpxj/class-use/CodePage.html | 4 +- .../apidocs/net/sf/mpxj/class-use/Column.html | 4 +- .../sf/mpxj/class-use/ConstraintField.html | 4 +- .../net/sf/mpxj/class-use/ConstraintType.html | 4 +- .../mpxj/class-use/CostAccount.Builder.html | 4 +- .../net/sf/mpxj/class-use/CostAccount.html | 4 +- .../mpxj/class-use/CostAccountContainer.html | 4 +- .../net/sf/mpxj/class-use/CostRateTable.html | 4 +- .../sf/mpxj/class-use/CostRateTableEntry.html | 4 +- .../mpxj/class-use/CriticalActivityType.html | 4 +- .../class-use/CurrencySymbolPosition.html | 4 +- .../net/sf/mpxj/class-use/CustomField.html | 4 +- .../mpxj/class-use/CustomFieldContainer.html | 4 +- .../class-use/CustomFieldLookupTable.html | 4 +- .../class-use/CustomFieldValueDataType.html | 4 +- .../mpxj/class-use/CustomFieldValueMask.html | 4 +- .../net/sf/mpxj/class-use/DataLink.html | 4 +- .../sf/mpxj/class-use/DataLinkContainer.html | 4 +- .../net/sf/mpxj/class-use/DataType.html | 4 +- .../net/sf/mpxj/class-use/DateOrder.html | 4 +- .../net/sf/mpxj/class-use/DayType.html | 4 +- .../class-use/DefaultBaselineStrategy.html | 4 +- .../net/sf/mpxj/class-use/Duration.html | 4 +- .../sf/mpxj/class-use/EarnedValueMethod.html | 4 +- .../net/sf/mpxj/class-use/EventManager.html | 4 +- .../class-use/ExpenseCategory.Builder.html | 4 +- .../sf/mpxj/class-use/ExpenseCategory.html | 4 +- .../class-use/ExpenseCategoryContainer.html | 4 +- .../mpxj/class-use/ExpenseItem.Builder.html | 4 +- .../net/sf/mpxj/class-use/ExpenseItem.html | 4 +- .../net/sf/mpxj/class-use/FieldContainer.html | 4 +- .../net/sf/mpxj/class-use/FieldType.html | 4 +- .../net/sf/mpxj/class-use/FieldTypeClass.html | 4 +- .../net/sf/mpxj/class-use/FileVersion.html | 4 +- .../apidocs/net/sf/mpxj/class-use/Filter.html | 4 +- .../sf/mpxj/class-use/FilterContainer.html | 4 +- .../sf/mpxj/class-use/GenericCriteria.html | 4 +- .../mpxj/class-use/GenericCriteriaPrompt.html | 4 +- .../sf/mpxj/class-use/GraphicalIndicator.html | 4 +- .../class-use/GraphicalIndicatorCriteria.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/Group.html | 4 +- .../net/sf/mpxj/class-use/GroupClause.html | 4 +- .../net/sf/mpxj/class-use/GroupContainer.html | 4 +- .../net/sf/mpxj/class-use/HasCharset.html | 4 +- .../net/sf/mpxj/class-use/HtmlNotes.html | 4 +- .../sf/mpxj/class-use/ListWithCallbacks.html | 4 +- .../net/sf/mpxj/class-use/LocalDateRange.html | 4 +- .../sf/mpxj/class-use/LocalDateTimeRange.html | 4 +- .../net/sf/mpxj/class-use/LocalTimeRange.html | 4 +- .../net/sf/mpxj/class-use/LocaleData.html | 4 +- .../net/sf/mpxj/class-use/LocaleData_en.html | 4 +- .../sf/mpxj/class-use/Location.Builder.html | 4 +- .../net/sf/mpxj/class-use/Location.html | 4 +- .../sf/mpxj/class-use/LocationContainer.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/MPXJ.html | 4 +- .../net/sf/mpxj/class-use/MPXJException.html | 4 +- .../ManuallyScheduledTaskCalendar.html | 4 +- .../net/sf/mpxj/class-use/MpxjEnum.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/Notes.html | 4 +- .../sf/mpxj/class-use/NotesTopic.Builder.html | 4 +- .../net/sf/mpxj/class-use/NotesTopic.html | 4 +- .../mpxj/class-use/NotesTopicContainer.html | 4 +- .../net/sf/mpxj/class-use/ParentNotes.html | 4 +- .../mpxj/class-use/PercentCompleteType.html | 4 +- .../net/sf/mpxj/class-use/Priority.html | 4 +- .../sf/mpxj/class-use/ProjectCalendar.html | 4 +- .../class-use/ProjectCalendarContainer.html | 4 +- .../mpxj/class-use/ProjectCalendarDays.html | 4 +- .../class-use/ProjectCalendarException.html | 4 +- .../mpxj/class-use/ProjectCalendarHours.html | 4 +- .../mpxj/class-use/ProjectCalendarWeek.html | 4 +- .../net/sf/mpxj/class-use/ProjectConfig.html | 4 +- .../sf/mpxj/class-use/ProjectDateFormat.html | 4 +- .../class-use/ProjectEntityContainer.html | 4 +- .../mpxj/class-use/ProjectEntityWithID.html | 4 +- .../ProjectEntityWithIDContainer.html | 4 +- .../ProjectEntityWithMutableUniqueID.html | 4 +- .../class-use/ProjectEntityWithUniqueID.html | 4 +- .../net/sf/mpxj/class-use/ProjectField.html | 4 +- .../net/sf/mpxj/class-use/ProjectFile.html | 4 +- .../mpxj/class-use/ProjectFileSharedData.html | 4 +- .../sf/mpxj/class-use/ProjectProperties.html | 4 +- .../sf/mpxj/class-use/ProjectTimeFormat.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/Rate.html | 4 +- .../net/sf/mpxj/class-use/RateSource.html | 4 +- .../net/sf/mpxj/class-use/RecurrenceType.html | 4 +- .../net/sf/mpxj/class-use/RecurringData.html | 4 +- .../net/sf/mpxj/class-use/RecurringTask.html | 4 +- .../sf/mpxj/class-use/Relation.Builder.html | 4 +- .../net/sf/mpxj/class-use/Relation.html | 4 +- .../sf/mpxj/class-use/RelationContainer.html | 4 +- .../net/sf/mpxj/class-use/RelationType.html | 4 +- .../class-use/RelationshipLagCalendar.html | 4 +- .../net/sf/mpxj/class-use/Resource.html | 26 +- .../sf/mpxj/class-use/ResourceAssignment.html | 4 +- .../ResourceAssignmentContainer.html | 4 +- .../ResourceAssignmentWorkgroupFields.html | 4 +- .../sf/mpxj/class-use/ResourceContainer.html | 4 +- .../net/sf/mpxj/class-use/ResourceField.html | 4 +- .../mpxj/class-use/ResourceRequestType.html | 4 +- .../net/sf/mpxj/class-use/ResourceType.html | 4 +- .../net/sf/mpxj/class-use/RtfNotes.html | 4 +- .../net/sf/mpxj/class-use/ScheduleFrom.html | 4 +- .../SchedulingProgressedActivities.html | 4 +- .../net/sf/mpxj/class-use/Shift.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/Shift.html | 4 +- .../net/sf/mpxj/class-use/ShiftContainer.html | 4 +- .../mpxj/class-use/ShiftPeriod.Builder.html | 4 +- .../net/sf/mpxj/class-use/ShiftPeriod.html | 4 +- .../mpxj/class-use/ShiftPeriodContainer.html | 4 +- .../net/sf/mpxj/class-use/SkillLevel.html | 4 +- .../net/sf/mpxj/class-use/Step.Builder.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/Step.html | 4 +- .../sf/mpxj/class-use/StructuredNotes.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/Table.html | 4 +- .../net/sf/mpxj/class-use/TableContainer.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/Task.html | 4 +- .../net/sf/mpxj/class-use/TaskContainer.html | 4 +- .../net/sf/mpxj/class-use/TaskField.html | 4 +- .../net/sf/mpxj/class-use/TaskMode.html | 4 +- .../net/sf/mpxj/class-use/TaskType.html | 4 +- .../sf/mpxj/class-use/TemporaryCalendar.html | 4 +- .../net/sf/mpxj/class-use/TestOperator.html | 4 +- .../sf/mpxj/class-use/TimePeriodEntity.html | 4 +- .../net/sf/mpxj/class-use/TimeUnit.html | 4 +- .../class-use/TimeUnitDefaultsContainer.html | 4 +- .../net/sf/mpxj/class-use/TimephasedCost.html | 4 +- .../class-use/TimephasedCostContainer.html | 4 +- .../net/sf/mpxj/class-use/TimephasedItem.html | 4 +- .../net/sf/mpxj/class-use/TimephasedWork.html | 4 +- .../class-use/TimephasedWorkContainer.html | 4 +- .../class-use/TotalSlackCalculationType.html | 4 +- .../UniqueIdObjectSequenceProvider.html | 4 +- .../mpxj/class-use/UnitOfMeasure.Builder.html | 4 +- .../net/sf/mpxj/class-use/UnitOfMeasure.html | 4 +- .../class-use/UnitOfMeasureContainer.html | 4 +- .../class-use/UserDefinedField.Builder.html | 4 +- .../sf/mpxj/class-use/UserDefinedField.html | 4 +- .../class-use/UserDefinedFieldContainer.html | 4 +- docs/apidocs/net/sf/mpxj/class-use/View.html | 4 +- .../net/sf/mpxj/class-use/ViewContainer.html | 4 +- .../net/sf/mpxj/class-use/ViewState.html | 4 +- .../net/sf/mpxj/class-use/ViewType.html | 4 +- .../net/sf/mpxj/class-use/WorkContour.html | 4 +- .../mpxj/class-use/WorkContourContainer.html | 4 +- .../net/sf/mpxj/class-use/WorkGroup.html | 4 +- .../AbstractTimephasedWorkNormaliser.html | 4 +- .../sf/mpxj/common/AlphanumComparator.html | 4 +- .../sf/mpxj/common/AssignmentFieldLists.html | 4 +- .../sf/mpxj/common/AutoCloseableHelper.html | 4 +- .../net/sf/mpxj/common/BooleanHelper.html | 4 +- .../apidocs/net/sf/mpxj/common/ByteArray.html | 4 +- .../net/sf/mpxj/common/ByteArrayHelper.html | 4 +- .../net/sf/mpxj/common/CharsetHelper.html | 4 +- .../mpxj/common/CloseIgnoringInputStream.html | 4 +- .../net/sf/mpxj/common/ColorHelper.html | 4 +- .../net/sf/mpxj/common/CombinedCalendar.html | 4 +- .../net/sf/mpxj/common/ConnectionHelper.html | 4 +- .../net/sf/mpxj/common/DayOfWeekHelper.html | 4 +- .../sf/mpxj/common/DebugLogPrintWriter.html | 4 +- .../DefaultTimephasedCostContainer.html | 4 +- .../DefaultTimephasedWorkContainer.html | 4 +- .../net/sf/mpxj/common/EnumHelper.html | 4 +- .../net/sf/mpxj/common/FieldLists.html | 4 +- .../net/sf/mpxj/common/FieldTypeHelper.html | 4 +- .../net/sf/mpxj/common/FileHelper.html | 4 +- .../mpxj/common/FixedLengthInputStream.html | 4 +- .../net/sf/mpxj/common/HierarchyHelper.html | 4 +- .../net/sf/mpxj/common/HtmlHelper.html | 4 +- .../net/sf/mpxj/common/InputStreamHelper.html | 4 +- .../sf/mpxj/common/InputStreamTokenizer.html | 4 +- .../net/sf/mpxj/common/JdbcOdbcHelper.html | 4 +- .../apidocs/net/sf/mpxj/common/JvmHelper.html | 4 +- .../net/sf/mpxj/common/LocalDateHelper.html | 4 +- .../sf/mpxj/common/LocalDateTimeHelper.html | 4 +- .../net/sf/mpxj/common/LocalTimeHelper.html | 4 +- .../sf/mpxj/common/MPPAssignmentField.html | 4 +- .../sf/mpxj/common/MPPConstraintField.html | 4 +- .../net/sf/mpxj/common/MPPProjectField.html | 4 +- .../net/sf/mpxj/common/MPPResourceField.html | 4 +- .../net/sf/mpxj/common/MPPTaskField.html | 4 +- .../net/sf/mpxj/common/MarshallerHelper.html | 4 +- .../common/MicrosoftProjectConstants.html | 4 +- .../MicrosoftProjectUniqueIDMapper.html | 4 +- .../net/sf/mpxj/common/NumberHelper.html | 4 +- .../net/sf/mpxj/common/ObjectSequence.html | 4 +- docs/apidocs/net/sf/mpxj/common/Pair.html | 4 +- .../net/sf/mpxj/common/PopulatedFields.html | 4 +- .../sf/mpxj/common/ProjectCalendarHelper.html | 4 +- .../net/sf/mpxj/common/ProjectFieldLists.html | 4 +- .../net/sf/mpxj/common/RateHelper.html | 4 +- .../net/sf/mpxj/common/ReaderTokenizer.html | 4 +- .../sf/mpxj/common/ResourceFieldLists.html | 4 +- .../net/sf/mpxj/common/ResultSetHelper.html | 4 +- .../apidocs/net/sf/mpxj/common/RtfHelper.html | 4 +- docs/apidocs/net/sf/mpxj/common/SQLite.html | 4 +- docs/apidocs/net/sf/mpxj/common/SemVer.html | 4 +- .../net/sf/mpxj/common/SlackHelper.html | 4 +- .../net/sf/mpxj/common/SplitTaskFactory.html | 4 +- .../net/sf/mpxj/common/StringHelper.html | 4 +- .../net/sf/mpxj/common/TaskFieldLists.html | 4 +- .../sf/mpxj/common/TimephasedNormaliser.html | 4 +- .../apidocs/net/sf/mpxj/common/Tokenizer.html | 4 +- .../net/sf/mpxj/common/UnmarshalHelper.html | 4 +- .../apidocs/net/sf/mpxj/common/XmlHelper.html | 4 +- .../AbstractTimephasedWorkNormaliser.html | 4 +- .../common/class-use/AlphanumComparator.html | 4 +- .../class-use/AssignmentFieldLists.html | 4 +- .../common/class-use/AutoCloseableHelper.html | 4 +- .../mpxj/common/class-use/BooleanHelper.html | 4 +- .../sf/mpxj/common/class-use/ByteArray.html | 4 +- .../common/class-use/ByteArrayHelper.html | 4 +- .../mpxj/common/class-use/CharsetHelper.html | 4 +- .../class-use/CloseIgnoringInputStream.html | 4 +- .../sf/mpxj/common/class-use/ColorHelper.html | 4 +- .../common/class-use/CombinedCalendar.html | 4 +- .../common/class-use/ConnectionHelper.html | 4 +- .../common/class-use/DayOfWeekHelper.html | 4 +- .../common/class-use/DebugLogPrintWriter.html | 4 +- .../DefaultTimephasedCostContainer.html | 4 +- .../DefaultTimephasedWorkContainer.html | 4 +- .../sf/mpxj/common/class-use/EnumHelper.html | 4 +- .../sf/mpxj/common/class-use/FieldLists.html | 4 +- .../common/class-use/FieldTypeHelper.html | 4 +- .../sf/mpxj/common/class-use/FileHelper.html | 4 +- .../class-use/FixedLengthInputStream.html | 4 +- .../common/class-use/HierarchyHelper.html | 4 +- .../sf/mpxj/common/class-use/HtmlHelper.html | 4 +- .../common/class-use/InputStreamHelper.html | 4 +- .../class-use/InputStreamTokenizer.html | 4 +- .../mpxj/common/class-use/JdbcOdbcHelper.html | 4 +- .../sf/mpxj/common/class-use/JvmHelper.html | 4 +- .../common/class-use/LocalDateHelper.html | 4 +- .../common/class-use/LocalDateTimeHelper.html | 4 +- .../common/class-use/LocalTimeHelper.html | 4 +- .../common/class-use/MPPAssignmentField.html | 4 +- .../common/class-use/MPPConstraintField.html | 4 +- .../common/class-use/MPPProjectField.html | 4 +- .../common/class-use/MPPResourceField.html | 4 +- .../mpxj/common/class-use/MPPTaskField.html | 4 +- .../common/class-use/MarshallerHelper.html | 4 +- .../class-use/MicrosoftProjectConstants.html | 4 +- .../MicrosoftProjectUniqueIDMapper.html | 4 +- .../mpxj/common/class-use/NumberHelper.html | 4 +- .../mpxj/common/class-use/ObjectSequence.html | 4 +- .../net/sf/mpxj/common/class-use/Pair.html | 4 +- .../common/class-use/PopulatedFields.html | 4 +- .../class-use/ProjectCalendarHelper.html | 4 +- .../common/class-use/ProjectFieldLists.html | 4 +- .../sf/mpxj/common/class-use/RateHelper.html | 4 +- .../common/class-use/ReaderTokenizer.html | 4 +- .../common/class-use/ResourceFieldLists.html | 4 +- .../common/class-use/ResultSetHelper.html | 4 +- .../sf/mpxj/common/class-use/RtfHelper.html | 4 +- .../net/sf/mpxj/common/class-use/SQLite.html | 4 +- .../net/sf/mpxj/common/class-use/SemVer.html | 4 +- .../sf/mpxj/common/class-use/SlackHelper.html | 4 +- .../common/class-use/SplitTaskFactory.html | 4 +- .../mpxj/common/class-use/StringHelper.html | 4 +- .../mpxj/common/class-use/TaskFieldLists.html | 4 +- .../class-use/TimephasedNormaliser.html | 4 +- .../sf/mpxj/common/class-use/Tokenizer.html | 4 +- .../common/class-use/UnmarshalHelper.html | 4 +- .../sf/mpxj/common/class-use/XmlHelper.html | 4 +- .../net/sf/mpxj/common/package-frame.html | 2 +- .../net/sf/mpxj/common/package-summary.html | 4 +- .../net/sf/mpxj/common/package-tree.html | 4 +- .../net/sf/mpxj/common/package-use.html | 4 +- .../conceptdraw/ConceptDrawProjectReader.html | 4 +- .../mpxj/conceptdraw/DatatypeConverter.html | 4 +- .../class-use/ConceptDrawProjectReader.html | 4 +- .../class-use/DatatypeConverter.html | 4 +- .../sf/mpxj/conceptdraw/package-frame.html | 2 +- .../sf/mpxj/conceptdraw/package-summary.html | 4 +- .../net/sf/mpxj/conceptdraw/package-tree.html | 4 +- .../net/sf/mpxj/conceptdraw/package-use.html | 4 +- .../mpxj/conceptdraw/schema/ActiveFilter.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter1.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter10.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter11.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter12.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter13.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter14.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter15.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter16.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter2.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter3.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter4.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter5.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter6.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter7.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter8.html | 4 +- .../sf/mpxj/conceptdraw/schema/Adapter9.html | 4 +- .../conceptdraw/schema/Callouts.Callout.html | 4 +- .../sf/mpxj/conceptdraw/schema/Callouts.html | 4 +- ...ys.ExceptedDay.TimePeriods.TimePeriod.html | 4 +- ....ExceptedDays.ExceptedDay.TimePeriods.html | 4 +- ...ars.Calendar.ExceptedDays.ExceptedDay.html | 4 +- ...ument.Calendars.Calendar.ExceptedDays.html | 4 +- ...ekDays.WeekDay.TimePeriods.TimePeriod.html | 4 +- ...Calendar.WeekDays.WeekDay.TimePeriods.html | 4 +- ...t.Calendars.Calendar.WeekDays.WeekDay.html | 4 +- .../Document.Calendars.Calendar.WeekDays.html | 4 +- .../schema/Document.Calendars.Calendar.html | 4 +- .../schema/Document.Calendars.html | 4 +- .../schema/Document.Dashboards.Dashboard.html | 4 +- .../schema/Document.Dashboards.html | 4 +- .../schema/Document.Links.Link.html | 4 +- .../conceptdraw/schema/Document.Links.html | 4 +- .../schema/Document.Markers.Marker.html | 4 +- .../conceptdraw/schema/Document.Markers.html | 4 +- .../schema/Document.PrintingProperties.html | 4 +- .../schema/Document.ProjectPortfolioView.html | 4 +- ...esourceAssignments.ResourceAssignment.html | 4 +- ...ects.Project.Task.ResourceAssignments.html | 4 +- .../Document.Projects.Project.Task.html | 4 +- .../schema/Document.Projects.Project.html | 4 +- .../conceptdraw/schema/Document.Projects.html | 4 +- .../schema/Document.ResourceUsageDiagram.html | 4 +- .../schema/Document.Resources.Resource.html | 4 +- .../schema/Document.Resources.html | 4 +- .../schema/Document.WorkspaceProperties.html | 4 +- .../sf/mpxj/conceptdraw/schema/Document.html | 4 +- .../mpxj/conceptdraw/schema/Hyperlinks.html | 4 +- .../conceptdraw/schema/ObjectFactory.html | 4 +- ....CompleteJournal.CompleteJournalEntry.html | 4 +- .../PPVItemsType.PPVItem.CompleteJournal.html | 4 +- .../schema/PPVItemsType.PPVItem.html | 4 +- .../mpxj/conceptdraw/schema/PPVItemsType.html | 4 +- .../schema/StyleProject.GridRowStyle.html | 4 +- .../mpxj/conceptdraw/schema/StyleProject.html | 4 +- .../sf/mpxj/conceptdraw/schema/TimeScale.html | 4 +- .../ViewProperties.GridColumns.Column.html | 4 +- .../schema/ViewProperties.GridColumns.html | 4 +- .../conceptdraw/schema/ViewProperties.html | 4 +- .../schema/class-use/ActiveFilter.html | 4 +- .../schema/class-use/Adapter1.html | 4 +- .../schema/class-use/Adapter10.html | 4 +- .../schema/class-use/Adapter11.html | 4 +- .../schema/class-use/Adapter12.html | 4 +- .../schema/class-use/Adapter13.html | 4 +- .../schema/class-use/Adapter14.html | 4 +- .../schema/class-use/Adapter15.html | 4 +- .../schema/class-use/Adapter16.html | 4 +- .../schema/class-use/Adapter2.html | 4 +- .../schema/class-use/Adapter3.html | 4 +- .../schema/class-use/Adapter4.html | 4 +- .../schema/class-use/Adapter5.html | 4 +- .../schema/class-use/Adapter6.html | 4 +- .../schema/class-use/Adapter7.html | 4 +- .../schema/class-use/Adapter8.html | 4 +- .../schema/class-use/Adapter9.html | 4 +- .../schema/class-use/Callouts.Callout.html | 4 +- .../schema/class-use/Callouts.html | 4 +- ...ys.ExceptedDay.TimePeriods.TimePeriod.html | 4 +- ....ExceptedDays.ExceptedDay.TimePeriods.html | 4 +- ...ars.Calendar.ExceptedDays.ExceptedDay.html | 4 +- ...ument.Calendars.Calendar.ExceptedDays.html | 4 +- ...ekDays.WeekDay.TimePeriods.TimePeriod.html | 4 +- ...Calendar.WeekDays.WeekDay.TimePeriods.html | 4 +- ...t.Calendars.Calendar.WeekDays.WeekDay.html | 4 +- .../Document.Calendars.Calendar.WeekDays.html | 4 +- .../Document.Calendars.Calendar.html | 4 +- .../schema/class-use/Document.Calendars.html | 4 +- .../Document.Dashboards.Dashboard.html | 4 +- .../schema/class-use/Document.Dashboards.html | 4 +- .../schema/class-use/Document.Links.Link.html | 4 +- .../schema/class-use/Document.Links.html | 4 +- .../class-use/Document.Markers.Marker.html | 4 +- .../schema/class-use/Document.Markers.html | 4 +- .../Document.PrintingProperties.html | 4 +- .../Document.ProjectPortfolioView.html | 4 +- ...esourceAssignments.ResourceAssignment.html | 4 +- ...ects.Project.Task.ResourceAssignments.html | 4 +- .../Document.Projects.Project.Task.html | 4 +- .../class-use/Document.Projects.Project.html | 4 +- .../schema/class-use/Document.Projects.html | 4 +- .../Document.ResourceUsageDiagram.html | 4 +- .../Document.Resources.Resource.html | 4 +- .../schema/class-use/Document.Resources.html | 4 +- .../Document.WorkspaceProperties.html | 4 +- .../schema/class-use/Document.html | 4 +- .../schema/class-use/Hyperlinks.html | 4 +- .../schema/class-use/ObjectFactory.html | 4 +- ....CompleteJournal.CompleteJournalEntry.html | 4 +- .../PPVItemsType.PPVItem.CompleteJournal.html | 4 +- .../class-use/PPVItemsType.PPVItem.html | 4 +- .../schema/class-use/PPVItemsType.html | 4 +- .../class-use/StyleProject.GridRowStyle.html | 4 +- .../schema/class-use/StyleProject.html | 4 +- .../schema/class-use/TimeScale.html | 4 +- .../ViewProperties.GridColumns.Column.html | 4 +- .../class-use/ViewProperties.GridColumns.html | 4 +- .../schema/class-use/ViewProperties.html | 4 +- .../conceptdraw/schema/package-frame.html | 2 +- .../conceptdraw/schema/package-summary.html | 4 +- .../mpxj/conceptdraw/schema/package-tree.html | 4 +- .../mpxj/conceptdraw/schema/package-use.html | 4 +- .../mpxj/explorer/FileChooserController.html | 4 +- .../sf/mpxj/explorer/FileChooserModel.html | 4 +- .../net/sf/mpxj/explorer/FileChooserView.html | 4 +- .../mpxj/explorer/FileCleanerController.html | 4 +- .../sf/mpxj/explorer/FileCleanerModel.html | 4 +- .../net/sf/mpxj/explorer/FileCleanerView.html | 4 +- .../sf/mpxj/explorer/FileSaverController.html | 4 +- .../net/sf/mpxj/explorer/FileSaverModel.html | 4 +- .../net/sf/mpxj/explorer/FileSaverView.html | 4 +- .../sf/mpxj/explorer/HexDumpController.html | 4 +- .../net/sf/mpxj/explorer/HexDumpModel.html | 4 +- .../net/sf/mpxj/explorer/HexDumpView.html | 4 +- .../net/sf/mpxj/explorer/JLabelledValue.html | 4 +- .../net/sf/mpxj/explorer/JTableExtra.html | 4 +- .../net/sf/mpxj/explorer/JTablePanel.html | 4 +- .../net/sf/mpxj/explorer/MppExplorer.html | 4 +- .../net/sf/mpxj/explorer/MppFilePanel.html | 4 +- .../net/sf/mpxj/explorer/MpxjTreeNode.html | 4 +- .../explorer/ObjectPropertiesController.html | 4 +- .../mpxj/explorer/ObjectPropertiesModel.html | 4 +- .../mpxj/explorer/ObjectPropertiesPanel.html | 4 +- .../mpxj/explorer/ObjectPropertiesView.html | 4 +- .../sf/mpxj/explorer/PoiTreeController.html | 4 +- .../net/sf/mpxj/explorer/PoiTreeModel.html | 4 +- .../net/sf/mpxj/explorer/PoiTreeView.html | 4 +- .../net/sf/mpxj/explorer/ProjectExplorer.html | 4 +- .../sf/mpxj/explorer/ProjectFilePanel.html | 4 +- .../mpxj/explorer/ProjectTreeController.html | 4 +- .../sf/mpxj/explorer/ProjectTreeModel.html | 4 +- .../net/sf/mpxj/explorer/ProjectTreeView.html | 4 +- .../class-use/FileChooserController.html | 4 +- .../explorer/class-use/FileChooserModel.html | 4 +- .../explorer/class-use/FileChooserView.html | 4 +- .../class-use/FileCleanerController.html | 4 +- .../explorer/class-use/FileCleanerModel.html | 4 +- .../explorer/class-use/FileCleanerView.html | 4 +- .../class-use/FileSaverController.html | 4 +- .../explorer/class-use/FileSaverModel.html | 4 +- .../explorer/class-use/FileSaverView.html | 4 +- .../explorer/class-use/HexDumpController.html | 4 +- .../mpxj/explorer/class-use/HexDumpModel.html | 4 +- .../mpxj/explorer/class-use/HexDumpView.html | 4 +- .../explorer/class-use/JLabelledValue.html | 4 +- .../mpxj/explorer/class-use/JTableExtra.html | 4 +- .../mpxj/explorer/class-use/JTablePanel.html | 4 +- .../mpxj/explorer/class-use/MppExplorer.html | 4 +- .../mpxj/explorer/class-use/MppFilePanel.html | 4 +- .../mpxj/explorer/class-use/MpxjTreeNode.html | 4 +- .../class-use/ObjectPropertiesController.html | 4 +- .../class-use/ObjectPropertiesModel.html | 4 +- .../class-use/ObjectPropertiesPanel.html | 4 +- .../class-use/ObjectPropertiesView.html | 4 +- .../explorer/class-use/PoiTreeController.html | 4 +- .../mpxj/explorer/class-use/PoiTreeModel.html | 4 +- .../mpxj/explorer/class-use/PoiTreeView.html | 4 +- .../explorer/class-use/ProjectExplorer.html | 4 +- .../explorer/class-use/ProjectFilePanel.html | 4 +- .../class-use/ProjectTreeController.html | 4 +- .../explorer/class-use/ProjectTreeModel.html | 4 +- .../explorer/class-use/ProjectTreeView.html | 4 +- .../net/sf/mpxj/explorer/package-frame.html | 2 +- .../net/sf/mpxj/explorer/package-summary.html | 4 +- .../net/sf/mpxj/explorer/package-tree.html | 4 +- .../net/sf/mpxj/explorer/package-use.html | 4 +- .../sf/mpxj/fasttrack/FastTrackReader.html | 4 +- .../fasttrack/class-use/FastTrackReader.html | 4 +- .../net/sf/mpxj/fasttrack/package-frame.html | 2 +- .../sf/mpxj/fasttrack/package-summary.html | 4 +- .../net/sf/mpxj/fasttrack/package-tree.html | 4 +- .../net/sf/mpxj/fasttrack/package-use.html | 4 +- .../mpxj/ganttdesigner/DatatypeConverter.html | 4 +- .../ganttdesigner/GanttDesignerReader.html | 4 +- .../class-use/DatatypeConverter.html | 4 +- .../class-use/GanttDesignerReader.html | 4 +- .../sf/mpxj/ganttdesigner/package-frame.html | 2 +- .../mpxj/ganttdesigner/package-summary.html | 4 +- .../sf/mpxj/ganttdesigner/package-tree.html | 4 +- .../sf/mpxj/ganttdesigner/package-use.html | 4 +- .../mpxj/ganttdesigner/schema/Adapter1.html | 4 +- .../mpxj/ganttdesigner/schema/Adapter2.html | 4 +- .../mpxj/ganttdesigner/schema/Adapter3.html | 4 +- .../mpxj/ganttdesigner/schema/Adapter4.html | 4 +- .../mpxj/ganttdesigner/schema/Adapter5.html | 4 +- .../ganttdesigner/schema/Gantt.BarStyles.html | 4 +- .../ganttdesigner/schema/Gantt.Calendar.html | 4 +- .../schema/Gantt.ChartColor.html | 4 +- .../schema/Gantt.Columns.Header.html | 4 +- .../ganttdesigner/schema/Gantt.Columns.html | 4 +- .../mpxj/ganttdesigner/schema/Gantt.Copy.html | 4 +- .../schema/Gantt.DateHeader.Reference.html | 4 +- .../schema/Gantt.DateHeader.Tier.html | 4 +- .../schema/Gantt.DateHeader.html | 4 +- .../ganttdesigner/schema/Gantt.Display.html | 4 +- .../mpxj/ganttdesigner/schema/Gantt.File.html | 4 +- .../ganttdesigner/schema/Gantt.FirstDay.html | 4 +- .../ganttdesigner/schema/Gantt.Footers.html | 4 +- .../schema/Gantt.FootersFonts.Font.html | 4 +- .../schema/Gantt.FootersFonts.html | 4 +- .../schema/Gantt.Globalization.Culture.html | 4 +- .../schema/Gantt.Globalization.Currency.html | 4 +- .../schema/Gantt.Globalization.UICulture.html | 4 +- .../schema/Gantt.Globalization.html | 4 +- .../ganttdesigner/schema/Gantt.Headers.html | 4 +- .../schema/Gantt.HeadersFonts.Font.html | 4 +- .../schema/Gantt.HeadersFonts.html | 4 +- .../schema/Gantt.Holidays.Holiday.html | 4 +- .../ganttdesigner/schema/Gantt.Holidays.html | 4 +- .../ganttdesigner/schema/Gantt.LastDay.html | 4 +- .../ganttdesigner/schema/Gantt.Padding.html | 4 +- .../ganttdesigner/schema/Gantt.Print.html | 4 +- .../schema/Gantt.PrintToImageFile.html | 4 +- .../schema/Gantt.Tasks.Task.html | 4 +- .../ganttdesigner/schema/Gantt.Tasks.html | 4 +- .../schema/Gantt.TextStyles.Font.html | 4 +- .../schema/Gantt.TextStyles.html | 4 +- .../sf/mpxj/ganttdesigner/schema/Gantt.html | 4 +- .../schema/GanttDesignerRemark.Task.html | 4 +- .../schema/GanttDesignerRemark.html | 4 +- .../ganttdesigner/schema/ObjectFactory.html | 4 +- .../schema/class-use/Adapter1.html | 4 +- .../schema/class-use/Adapter2.html | 4 +- .../schema/class-use/Adapter3.html | 4 +- .../schema/class-use/Adapter4.html | 4 +- .../schema/class-use/Adapter5.html | 4 +- .../schema/class-use/Gantt.BarStyles.html | 4 +- .../schema/class-use/Gantt.Calendar.html | 4 +- .../schema/class-use/Gantt.ChartColor.html | 4 +- .../class-use/Gantt.Columns.Header.html | 4 +- .../schema/class-use/Gantt.Columns.html | 4 +- .../schema/class-use/Gantt.Copy.html | 4 +- .../class-use/Gantt.DateHeader.Reference.html | 4 +- .../class-use/Gantt.DateHeader.Tier.html | 4 +- .../schema/class-use/Gantt.DateHeader.html | 4 +- .../schema/class-use/Gantt.Display.html | 4 +- .../schema/class-use/Gantt.File.html | 4 +- .../schema/class-use/Gantt.FirstDay.html | 4 +- .../schema/class-use/Gantt.Footers.html | 4 +- .../class-use/Gantt.FootersFonts.Font.html | 4 +- .../schema/class-use/Gantt.FootersFonts.html | 4 +- .../Gantt.Globalization.Culture.html | 4 +- .../Gantt.Globalization.Currency.html | 4 +- .../Gantt.Globalization.UICulture.html | 4 +- .../schema/class-use/Gantt.Globalization.html | 4 +- .../schema/class-use/Gantt.Headers.html | 4 +- .../class-use/Gantt.HeadersFonts.Font.html | 4 +- .../schema/class-use/Gantt.HeadersFonts.html | 4 +- .../class-use/Gantt.Holidays.Holiday.html | 4 +- .../schema/class-use/Gantt.Holidays.html | 4 +- .../schema/class-use/Gantt.LastDay.html | 4 +- .../schema/class-use/Gantt.Padding.html | 4 +- .../schema/class-use/Gantt.Print.html | 4 +- .../class-use/Gantt.PrintToImageFile.html | 4 +- .../schema/class-use/Gantt.Tasks.Task.html | 4 +- .../schema/class-use/Gantt.Tasks.html | 4 +- .../class-use/Gantt.TextStyles.Font.html | 4 +- .../schema/class-use/Gantt.TextStyles.html | 4 +- .../ganttdesigner/schema/class-use/Gantt.html | 4 +- .../class-use/GanttDesignerRemark.Task.html | 4 +- .../schema/class-use/GanttDesignerRemark.html | 4 +- .../schema/class-use/ObjectFactory.html | 4 +- .../ganttdesigner/schema/package-frame.html | 2 +- .../ganttdesigner/schema/package-summary.html | 4 +- .../ganttdesigner/schema/package-tree.html | 4 +- .../ganttdesigner/schema/package-use.html | 4 +- .../mpxj/ganttproject/DatatypeConverter.html | 4 +- .../mpxj/ganttproject/GanttProjectReader.html | 4 +- .../class-use/DatatypeConverter.html | 4 +- .../class-use/GanttProjectReader.html | 4 +- .../sf/mpxj/ganttproject/package-frame.html | 2 +- .../sf/mpxj/ganttproject/package-summary.html | 4 +- .../sf/mpxj/ganttproject/package-tree.html | 4 +- .../net/sf/mpxj/ganttproject/package-use.html | 4 +- .../sf/mpxj/ganttproject/schema/Adapter1.html | 4 +- .../mpxj/ganttproject/schema/Allocation.html | 4 +- .../mpxj/ganttproject/schema/Allocations.html | 4 +- .../mpxj/ganttproject/schema/Calendars.html | 4 +- .../schema/CustomPropertyDefinition.html | 4 +- .../schema/CustomResourceProperty.html | 4 +- .../schema/CustomTaskProperty.html | 4 +- .../net/sf/mpxj/ganttproject/schema/Date.html | 4 +- .../sf/mpxj/ganttproject/schema/DayType.html | 4 +- .../sf/mpxj/ganttproject/schema/DayTypes.html | 4 +- .../mpxj/ganttproject/schema/DefaultWeek.html | 4 +- .../sf/mpxj/ganttproject/schema/Depend.html | 4 +- .../sf/mpxj/ganttproject/schema/Field.html | 4 +- .../ganttproject/schema/ObjectFactory.html | 4 +- .../ganttproject/schema/OnlyShowWeekends.html | 4 +- .../sf/mpxj/ganttproject/schema/Project.html | 4 +- .../net/sf/mpxj/ganttproject/schema/Rate.html | 4 +- .../sf/mpxj/ganttproject/schema/Resource.html | 4 +- .../mpxj/ganttproject/schema/Resources.html | 4 +- .../net/sf/mpxj/ganttproject/schema/Role.html | 4 +- .../sf/mpxj/ganttproject/schema/Roles.html | 4 +- .../net/sf/mpxj/ganttproject/schema/Task.html | 4 +- .../ganttproject/schema/Taskproperties.html | 4 +- .../ganttproject/schema/Taskproperty.html | 4 +- .../sf/mpxj/ganttproject/schema/Tasks.html | 4 +- .../sf/mpxj/ganttproject/schema/Vacation.html | 4 +- .../mpxj/ganttproject/schema/Vacations.html | 4 +- .../net/sf/mpxj/ganttproject/schema/View.html | 4 +- .../schema/class-use/Adapter1.html | 4 +- .../schema/class-use/Allocation.html | 4 +- .../schema/class-use/Allocations.html | 4 +- .../schema/class-use/Calendars.html | 4 +- .../class-use/CustomPropertyDefinition.html | 4 +- .../class-use/CustomResourceProperty.html | 4 +- .../schema/class-use/CustomTaskProperty.html | 4 +- .../ganttproject/schema/class-use/Date.html | 4 +- .../schema/class-use/DayType.html | 4 +- .../schema/class-use/DayTypes.html | 4 +- .../schema/class-use/DefaultWeek.html | 4 +- .../ganttproject/schema/class-use/Depend.html | 4 +- .../ganttproject/schema/class-use/Field.html | 4 +- .../schema/class-use/ObjectFactory.html | 4 +- .../schema/class-use/OnlyShowWeekends.html | 4 +- .../schema/class-use/Project.html | 4 +- .../ganttproject/schema/class-use/Rate.html | 4 +- .../schema/class-use/Resource.html | 4 +- .../schema/class-use/Resources.html | 4 +- .../ganttproject/schema/class-use/Role.html | 4 +- .../ganttproject/schema/class-use/Roles.html | 4 +- .../ganttproject/schema/class-use/Task.html | 4 +- .../schema/class-use/Taskproperties.html | 4 +- .../schema/class-use/Taskproperty.html | 4 +- .../ganttproject/schema/class-use/Tasks.html | 4 +- .../schema/class-use/Vacation.html | 4 +- .../schema/class-use/Vacations.html | 4 +- .../ganttproject/schema/class-use/View.html | 4 +- .../ganttproject/schema/package-frame.html | 2 +- .../ganttproject/schema/package-summary.html | 4 +- .../ganttproject/schema/package-tree.html | 4 +- .../mpxj/ganttproject/schema/package-use.html | 4 +- .../net/sf/mpxj/ikvm/MapFileGenerator.html | 4 +- .../net/sf/mpxj/ikvm/OperatingSystem.html | 4 +- .../mpxj/ikvm/class-use/MapFileGenerator.html | 4 +- .../mpxj/ikvm/class-use/OperatingSystem.html | 4 +- .../net/sf/mpxj/ikvm/package-frame.html | 2 +- .../net/sf/mpxj/ikvm/package-summary.html | 4 +- .../net/sf/mpxj/ikvm/package-tree.html | 4 +- .../apidocs/net/sf/mpxj/ikvm/package-use.html | 4 +- .../net/sf/mpxj/json/JsonStreamWriter.html | 4 +- docs/apidocs/net/sf/mpxj/json/JsonWriter.html | 4 +- .../mpxj/json/class-use/JsonStreamWriter.html | 4 +- .../sf/mpxj/json/class-use/JsonWriter.html | 4 +- .../net/sf/mpxj/json/package-frame.html | 2 +- .../net/sf/mpxj/json/package-summary.html | 4 +- .../net/sf/mpxj/json/package-tree.html | 4 +- .../apidocs/net/sf/mpxj/json/package-use.html | 4 +- .../mpxj/listener/DefaultProjectListener.html | 4 +- .../net/sf/mpxj/listener/FieldListener.html | 4 +- .../net/sf/mpxj/listener/ProjectListener.html | 4 +- .../class-use/DefaultProjectListener.html | 4 +- .../listener/class-use/FieldListener.html | 4 +- .../listener/class-use/ProjectListener.html | 4 +- .../net/sf/mpxj/listener/package-frame.html | 2 +- .../net/sf/mpxj/listener/package-summary.html | 4 +- .../net/sf/mpxj/listener/package-tree.html | 4 +- .../net/sf/mpxj/listener/package-use.html | 4 +- .../net/sf/mpxj/merlin/MerlinReader.html | 4 +- .../mpxj/merlin/class-use/MerlinReader.html | 4 +- .../net/sf/mpxj/merlin/package-frame.html | 2 +- .../net/sf/mpxj/merlin/package-summary.html | 4 +- .../net/sf/mpxj/merlin/package-tree.html | 4 +- .../net/sf/mpxj/merlin/package-use.html | 4 +- .../net/sf/mpxj/mpd/MPDDatabaseReader.html | 4 +- .../net/sf/mpxj/mpd/MPDFileReader.html | 4 +- docs/apidocs/net/sf/mpxj/mpd/MPDUtility.html | 4 +- .../mpxj/mpd/class-use/MPDDatabaseReader.html | 4 +- .../sf/mpxj/mpd/class-use/MPDFileReader.html | 4 +- .../net/sf/mpxj/mpd/class-use/MPDUtility.html | 4 +- .../net/sf/mpxj/mpd/package-frame.html | 2 +- .../net/sf/mpxj/mpd/package-summary.html | 4 +- .../apidocs/net/sf/mpxj/mpd/package-tree.html | 4 +- docs/apidocs/net/sf/mpxj/mpd/package-use.html | 4 +- .../net/sf/mpxj/mpp/AbstractMppView.html | 4 +- .../apidocs/net/sf/mpxj/mpp/AbstractView.html | 4 +- .../net/sf/mpxj/mpp/ApplicationVersion.html | 4 +- .../net/sf/mpxj/mpp/BackgroundPattern.html | 4 +- .../apidocs/net/sf/mpxj/mpp/ChartPattern.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/ColorType.html | 4 +- .../net/sf/mpxj/mpp/ConstraintFactory.html | 4 +- .../net/sf/mpxj/mpp/CriteriaReader.html | 4 +- .../net/sf/mpxj/mpp/CustomFieldValueItem.html | 4 +- .../sf/mpxj/mpp/CustomFieldValueReader9.html | 4 +- .../mpp/EnterpriseCustomFieldDataType.html | 4 +- .../sf/mpxj/mpp/FilterCriteriaReader12.html | 4 +- .../sf/mpxj/mpp/FilterCriteriaReader14.html | 4 +- .../sf/mpxj/mpp/FilterCriteriaReader9.html | 4 +- .../apidocs/net/sf/mpxj/mpp/FilterReader.html | 4 +- .../net/sf/mpxj/mpp/FilterReader12.html | 4 +- .../net/sf/mpxj/mpp/FilterReader14.html | 4 +- .../net/sf/mpxj/mpp/FilterReader9.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/FontBase.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/FontStyle.html | 4 +- .../net/sf/mpxj/mpp/GanttBarCommonStyle.html | 4 +- .../net/sf/mpxj/mpp/GanttBarDateFormat.html | 4 +- .../net/sf/mpxj/mpp/GanttBarMiddleShape.html | 4 +- .../net/sf/mpxj/mpp/GanttBarShowForTasks.html | 4 +- .../sf/mpxj/mpp/GanttBarStartEndShape.html | 4 +- .../net/sf/mpxj/mpp/GanttBarStartEndType.html | 4 +- .../net/sf/mpxj/mpp/GanttBarStyle.html | 4 +- .../sf/mpxj/mpp/GanttBarStyleException.html | 4 +- .../net/sf/mpxj/mpp/GanttBarStyleFactory.html | 4 +- .../sf/mpxj/mpp/GanttBarStyleFactory14.html | 4 +- .../mpxj/mpp/GanttBarStyleFactoryCommon.html | 4 +- .../net/sf/mpxj/mpp/GanttChartView.html | 4 +- .../net/sf/mpxj/mpp/GanttChartView12.html | 4 +- .../net/sf/mpxj/mpp/GanttChartView14.html | 4 +- .../net/sf/mpxj/mpp/GanttChartView9.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/GenericView.html | 4 +- .../net/sf/mpxj/mpp/GenericView12.html | 4 +- .../net/sf/mpxj/mpp/GenericView14.html | 4 +- .../apidocs/net/sf/mpxj/mpp/GenericView9.html | 4 +- .../sf/mpxj/mpp/GraphicalIndicatorReader.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/GridLines.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/GroupReader.html | 4 +- .../net/sf/mpxj/mpp/GroupReader12.html | 4 +- .../net/sf/mpxj/mpp/GroupReader14.html | 4 +- .../apidocs/net/sf/mpxj/mpp/GroupReader9.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/Interval.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/LineStyle.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/LinkStyle.html | 4 +- .../MPPAbstractTimephasedWorkNormaliser.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/MPPReader.html | 4 +- .../MPPTimephasedBaselineCostNormaliser.html | 4 +- .../MPPTimephasedBaselineWorkNormaliser.html | 4 +- .../mpxj/mpp/MPPTimephasedWorkNormaliser.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/MPPUtility.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/MppBitFlag.html | 4 +- .../net/sf/mpxj/mpp/NonWorkingTimeStyle.html | 4 +- .../net/sf/mpxj/mpp/ProgressLineDay.html | 4 +- .../sf/mpxj/mpp/ProjectPropertiesReader.html | 4 +- .../net/sf/mpxj/mpp/RTFEmbeddedObject.html | 4 +- .../mpxj/mpp/ResourceAssignmentFactory.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/SplitView9.html | 4 +- .../net/sf/mpxj/mpp/TableFontStyle.html | 4 +- .../net/sf/mpxj/mpp/TaskTypeHelper.html | 4 +- .../net/sf/mpxj/mpp/TimescaleAlignment.html | 4 +- .../net/sf/mpxj/mpp/TimescaleFormat.html | 4 +- .../net/sf/mpxj/mpp/TimescaleTier.html | 4 +- .../net/sf/mpxj/mpp/TimescaleUnits.html | 4 +- .../net/sf/mpxj/mpp/UserDefinedFieldMap.html | 4 +- docs/apidocs/net/sf/mpxj/mpp/View8.html | 4 +- .../net/sf/mpxj/mpp/ViewStateReader.html | 4 +- .../net/sf/mpxj/mpp/ViewStateReader12.html | 4 +- .../net/sf/mpxj/mpp/ViewStateReader9.html | 4 +- .../net/sf/mpxj/mpp/WorkContourHelper.html | 4 +- .../mpxj/mpp/class-use/AbstractMppView.html | 4 +- .../sf/mpxj/mpp/class-use/AbstractView.html | 4 +- .../mpp/class-use/ApplicationVersion.html | 4 +- .../mpxj/mpp/class-use/BackgroundPattern.html | 4 +- .../sf/mpxj/mpp/class-use/ChartPattern.html | 4 +- .../net/sf/mpxj/mpp/class-use/ColorType.html | 4 +- .../mpxj/mpp/class-use/ConstraintFactory.html | 4 +- .../sf/mpxj/mpp/class-use/CriteriaReader.html | 4 +- .../mpp/class-use/CustomFieldValueItem.html | 4 +- .../class-use/CustomFieldValueReader9.html | 4 +- .../EnterpriseCustomFieldDataType.html | 4 +- .../mpp/class-use/FilterCriteriaReader12.html | 4 +- .../mpp/class-use/FilterCriteriaReader14.html | 4 +- .../mpp/class-use/FilterCriteriaReader9.html | 4 +- .../sf/mpxj/mpp/class-use/FilterReader.html | 4 +- .../sf/mpxj/mpp/class-use/FilterReader12.html | 4 +- .../sf/mpxj/mpp/class-use/FilterReader14.html | 4 +- .../sf/mpxj/mpp/class-use/FilterReader9.html | 4 +- .../net/sf/mpxj/mpp/class-use/FontBase.html | 4 +- .../net/sf/mpxj/mpp/class-use/FontStyle.html | 4 +- .../mpp/class-use/GanttBarCommonStyle.html | 4 +- .../mpp/class-use/GanttBarDateFormat.html | 4 +- .../mpp/class-use/GanttBarMiddleShape.html | 4 +- .../mpp/class-use/GanttBarShowForTasks.html | 4 +- .../mpp/class-use/GanttBarStartEndShape.html | 4 +- .../mpp/class-use/GanttBarStartEndType.html | 4 +- .../sf/mpxj/mpp/class-use/GanttBarStyle.html | 4 +- .../mpp/class-use/GanttBarStyleException.html | 4 +- .../mpp/class-use/GanttBarStyleFactory.html | 4 +- .../mpp/class-use/GanttBarStyleFactory14.html | 4 +- .../class-use/GanttBarStyleFactoryCommon.html | 4 +- .../sf/mpxj/mpp/class-use/GanttChartView.html | 4 +- .../mpxj/mpp/class-use/GanttChartView12.html | 4 +- .../mpxj/mpp/class-use/GanttChartView14.html | 4 +- .../mpxj/mpp/class-use/GanttChartView9.html | 4 +- .../sf/mpxj/mpp/class-use/GenericView.html | 4 +- .../sf/mpxj/mpp/class-use/GenericView12.html | 4 +- .../sf/mpxj/mpp/class-use/GenericView14.html | 4 +- .../sf/mpxj/mpp/class-use/GenericView9.html | 4 +- .../class-use/GraphicalIndicatorReader.html | 4 +- .../net/sf/mpxj/mpp/class-use/GridLines.html | 4 +- .../sf/mpxj/mpp/class-use/GroupReader.html | 4 +- .../sf/mpxj/mpp/class-use/GroupReader12.html | 4 +- .../sf/mpxj/mpp/class-use/GroupReader14.html | 4 +- .../sf/mpxj/mpp/class-use/GroupReader9.html | 4 +- .../net/sf/mpxj/mpp/class-use/Interval.html | 4 +- .../net/sf/mpxj/mpp/class-use/LineStyle.html | 4 +- .../net/sf/mpxj/mpp/class-use/LinkStyle.html | 4 +- .../MPPAbstractTimephasedWorkNormaliser.html | 4 +- .../net/sf/mpxj/mpp/class-use/MPPReader.html | 4 +- .../MPPTimephasedBaselineCostNormaliser.html | 4 +- .../MPPTimephasedBaselineWorkNormaliser.html | 4 +- .../MPPTimephasedWorkNormaliser.html | 4 +- .../net/sf/mpxj/mpp/class-use/MPPUtility.html | 4 +- .../net/sf/mpxj/mpp/class-use/MppBitFlag.html | 4 +- .../mpp/class-use/NonWorkingTimeStyle.html | 4 +- .../mpxj/mpp/class-use/ProgressLineDay.html | 4 +- .../class-use/ProjectPropertiesReader.html | 4 +- .../mpxj/mpp/class-use/RTFEmbeddedObject.html | 4 +- .../class-use/ResourceAssignmentFactory.html | 4 +- .../net/sf/mpxj/mpp/class-use/SplitView9.html | 4 +- .../sf/mpxj/mpp/class-use/TableFontStyle.html | 4 +- .../sf/mpxj/mpp/class-use/TaskTypeHelper.html | 4 +- .../mpp/class-use/TimescaleAlignment.html | 4 +- .../mpxj/mpp/class-use/TimescaleFormat.html | 4 +- .../sf/mpxj/mpp/class-use/TimescaleTier.html | 4 +- .../sf/mpxj/mpp/class-use/TimescaleUnits.html | 4 +- .../mpp/class-use/UserDefinedFieldMap.html | 4 +- .../net/sf/mpxj/mpp/class-use/View8.html | 4 +- .../mpxj/mpp/class-use/ViewStateReader.html | 4 +- .../mpxj/mpp/class-use/ViewStateReader12.html | 4 +- .../mpxj/mpp/class-use/ViewStateReader9.html | 4 +- .../mpxj/mpp/class-use/WorkContourHelper.html | 4 +- .../net/sf/mpxj/mpp/package-frame.html | 2 +- .../net/sf/mpxj/mpp/package-summary.html | 4 +- .../apidocs/net/sf/mpxj/mpp/package-tree.html | 24 +- docs/apidocs/net/sf/mpxj/mpp/package-use.html | 4 +- docs/apidocs/net/sf/mpxj/mpx/LocaleData.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_de.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_en.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_es.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_fr.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_it.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_pt.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_ru.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_sv.html | 4 +- .../net/sf/mpxj/mpx/LocaleData_zh.html | 4 +- docs/apidocs/net/sf/mpxj/mpx/MPXJFormats.html | 4 +- .../net/sf/mpxj/mpx/MPXJNumberFormat.html | 4 +- .../mpx/MPXReader.DeferredRelationship.html | 4 +- docs/apidocs/net/sf/mpxj/mpx/MPXReader.html | 4 +- docs/apidocs/net/sf/mpxj/mpx/MPXWriter.html | 4 +- .../net/sf/mpxj/mpx/class-use/LocaleData.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_de.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_en.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_es.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_fr.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_it.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_pt.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_ru.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_sv.html | 4 +- .../sf/mpxj/mpx/class-use/LocaleData_zh.html | 4 +- .../sf/mpxj/mpx/class-use/MPXJFormats.html | 4 +- .../mpxj/mpx/class-use/MPXJNumberFormat.html | 4 +- .../MPXReader.DeferredRelationship.html | 4 +- .../net/sf/mpxj/mpx/class-use/MPXReader.html | 4 +- .../net/sf/mpxj/mpx/class-use/MPXWriter.html | 4 +- .../net/sf/mpxj/mpx/package-frame.html | 2 +- .../net/sf/mpxj/mpx/package-summary.html | 4 +- .../apidocs/net/sf/mpxj/mpx/package-tree.html | 4 +- docs/apidocs/net/sf/mpxj/mpx/package-use.html | 4 +- .../net/sf/mpxj/mspdi/DatatypeConverter.html | 4 +- .../net/sf/mpxj/mspdi/MSPDIReader.html | 4 +- .../mspdi/MSPDITimephasedWorkNormaliser.html | 4 +- .../net/sf/mpxj/mspdi/MSPDIWriter.html | 4 +- .../net/sf/mpxj/mspdi/SaveVersion.html | 4 +- .../mspdi/class-use/DatatypeConverter.html | 4 +- .../sf/mpxj/mspdi/class-use/MSPDIReader.html | 4 +- .../MSPDITimephasedWorkNormaliser.html | 4 +- .../sf/mpxj/mspdi/class-use/MSPDIWriter.html | 4 +- .../sf/mpxj/mspdi/class-use/SaveVersion.html | 4 +- .../net/sf/mpxj/mspdi/package-frame.html | 2 +- .../net/sf/mpxj/mspdi/package-summary.html | 4 +- .../net/sf/mpxj/mspdi/package-tree.html | 4 +- .../net/sf/mpxj/mspdi/package-use.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter1.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter10.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter11.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter12.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter13.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter14.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter15.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter16.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter17.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter18.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter19.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter2.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter20.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter21.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter22.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter23.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter24.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter25.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter26.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter27.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter28.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter29.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter3.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter30.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter31.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter32.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter33.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter4.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter5.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter6.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter7.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter8.html | 4 +- .../net/sf/mpxj/mspdi/schema/Adapter9.html | 4 +- .../sf/mpxj/mspdi/schema/ObjectFactory.html | 4 +- ...oject.Assignments.Assignment.Baseline.html | 4 +- ...ignments.Assignment.ExtendedAttribute.html | 4 +- .../Project.Assignments.Assignment.html | 4 +- .../mspdi/schema/Project.Assignments.html | 4 +- ...endar.Exceptions.Exception.TimePeriod.html | 4 +- ...ns.Exception.WorkingTimes.WorkingTime.html | 4 +- ...dar.Exceptions.Exception.WorkingTimes.html | 4 +- ...lendars.Calendar.Exceptions.Exception.html | 4 +- ...Project.Calendars.Calendar.Exceptions.html | 4 +- ....Calendar.WeekDays.WeekDay.TimePeriod.html | 4 +- ...Days.WeekDay.WorkingTimes.WorkingTime.html | 4 +- ...alendar.WeekDays.WeekDay.WorkingTimes.html | 4 +- ...t.Calendars.Calendar.WeekDays.WeekDay.html | 4 +- .../Project.Calendars.Calendar.WeekDays.html | 4 +- ...alendar.WorkWeeks.WorkWeek.TimePeriod.html | 4 +- ...Days.WeekDay.WorkingTimes.WorkingTime.html | 4 +- ...orkWeek.WeekDays.WeekDay.WorkingTimes.html | 4 +- ...r.WorkWeeks.WorkWeek.WeekDays.WeekDay.html | 4 +- ....Calendar.WorkWeeks.WorkWeek.WeekDays.html | 4 +- ...Calendars.Calendar.WorkWeeks.WorkWeek.html | 4 +- .../Project.Calendars.Calendar.WorkWeeks.html | 4 +- .../schema/Project.Calendars.Calendar.html | 4 +- .../mpxj/mspdi/schema/Project.Calendars.html | 4 +- ...tes.ExtendedAttribute.ValueList.Value.html | 4 +- ...ttributes.ExtendedAttribute.ValueList.html | 4 +- ....ExtendedAttributes.ExtendedAttribute.html | 4 +- .../schema/Project.ExtendedAttributes.html | 4 +- ...t.OutlineCodes.OutlineCode.Masks.Mask.html | 4 +- ...roject.OutlineCodes.OutlineCode.Masks.html | 4 +- ...OutlineCodes.OutlineCode.Values.Value.html | 4 +- ...oject.OutlineCodes.OutlineCode.Values.html | 4 +- .../Project.OutlineCodes.OutlineCode.html | 4 +- .../mspdi/schema/Project.OutlineCodes.html | 4 +- ...vailabilityPeriods.AvailabilityPeriod.html | 4 +- ...esources.Resource.AvailabilityPeriods.html | 4 +- .../Project.Resources.Resource.Baseline.html | 4 +- ....Resources.Resource.ExtendedAttribute.html | 4 +- ...roject.Resources.Resource.OutlineCode.html | 4 +- ...Project.Resources.Resource.Rates.Rate.html | 4 +- .../Project.Resources.Resource.Rates.html | 4 +- .../schema/Project.Resources.Resource.html | 4 +- .../mpxj/mspdi/schema/Project.Resources.html | 4 +- .../schema/Project.Tasks.Task.Baseline.html | 4 +- .../Project.Tasks.Task.ExtendedAttribute.html | 4 +- .../Project.Tasks.Task.OutlineCode.html | 4 +- .../Project.Tasks.Task.PredecessorLink.html | 4 +- .../mpxj/mspdi/schema/Project.Tasks.Task.html | 4 +- .../sf/mpxj/mspdi/schema/Project.Tasks.html | 4 +- .../schema/Project.WBSMasks.WBSMask.html | 4 +- .../mpxj/mspdi/schema/Project.WBSMasks.html | 4 +- .../net/sf/mpxj/mspdi/schema/Project.html | 4 +- .../mpxj/mspdi/schema/TimephasedDataType.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter1.html | 4 +- .../mspdi/schema/class-use/Adapter10.html | 4 +- .../mspdi/schema/class-use/Adapter11.html | 4 +- .../mspdi/schema/class-use/Adapter12.html | 4 +- .../mspdi/schema/class-use/Adapter13.html | 4 +- .../mspdi/schema/class-use/Adapter14.html | 4 +- .../mspdi/schema/class-use/Adapter15.html | 4 +- .../mspdi/schema/class-use/Adapter16.html | 4 +- .../mspdi/schema/class-use/Adapter17.html | 4 +- .../mspdi/schema/class-use/Adapter18.html | 4 +- .../mspdi/schema/class-use/Adapter19.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter2.html | 4 +- .../mspdi/schema/class-use/Adapter20.html | 4 +- .../mspdi/schema/class-use/Adapter21.html | 4 +- .../mspdi/schema/class-use/Adapter22.html | 4 +- .../mspdi/schema/class-use/Adapter23.html | 4 +- .../mspdi/schema/class-use/Adapter24.html | 4 +- .../mspdi/schema/class-use/Adapter25.html | 4 +- .../mspdi/schema/class-use/Adapter26.html | 4 +- .../mspdi/schema/class-use/Adapter27.html | 4 +- .../mspdi/schema/class-use/Adapter28.html | 4 +- .../mspdi/schema/class-use/Adapter29.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter3.html | 4 +- .../mspdi/schema/class-use/Adapter30.html | 4 +- .../mspdi/schema/class-use/Adapter31.html | 4 +- .../mspdi/schema/class-use/Adapter32.html | 4 +- .../mspdi/schema/class-use/Adapter33.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter4.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter5.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter6.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter7.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter8.html | 4 +- .../mpxj/mspdi/schema/class-use/Adapter9.html | 4 +- .../mspdi/schema/class-use/ObjectFactory.html | 4 +- ...oject.Assignments.Assignment.Baseline.html | 4 +- ...ignments.Assignment.ExtendedAttribute.html | 4 +- .../Project.Assignments.Assignment.html | 4 +- .../schema/class-use/Project.Assignments.html | 4 +- ...endar.Exceptions.Exception.TimePeriod.html | 4 +- ...ns.Exception.WorkingTimes.WorkingTime.html | 4 +- ...dar.Exceptions.Exception.WorkingTimes.html | 4 +- ...lendars.Calendar.Exceptions.Exception.html | 4 +- ...Project.Calendars.Calendar.Exceptions.html | 4 +- ....Calendar.WeekDays.WeekDay.TimePeriod.html | 4 +- ...Days.WeekDay.WorkingTimes.WorkingTime.html | 4 +- ...alendar.WeekDays.WeekDay.WorkingTimes.html | 4 +- ...t.Calendars.Calendar.WeekDays.WeekDay.html | 4 +- .../Project.Calendars.Calendar.WeekDays.html | 4 +- ...alendar.WorkWeeks.WorkWeek.TimePeriod.html | 4 +- ...Days.WeekDay.WorkingTimes.WorkingTime.html | 4 +- ...orkWeek.WeekDays.WeekDay.WorkingTimes.html | 4 +- ...r.WorkWeeks.WorkWeek.WeekDays.WeekDay.html | 4 +- ....Calendar.WorkWeeks.WorkWeek.WeekDays.html | 4 +- ...Calendars.Calendar.WorkWeeks.WorkWeek.html | 4 +- .../Project.Calendars.Calendar.WorkWeeks.html | 4 +- .../class-use/Project.Calendars.Calendar.html | 4 +- .../schema/class-use/Project.Calendars.html | 4 +- ...tes.ExtendedAttribute.ValueList.Value.html | 4 +- ...ttributes.ExtendedAttribute.ValueList.html | 4 +- ....ExtendedAttributes.ExtendedAttribute.html | 4 +- .../class-use/Project.ExtendedAttributes.html | 4 +- ...t.OutlineCodes.OutlineCode.Masks.Mask.html | 4 +- ...roject.OutlineCodes.OutlineCode.Masks.html | 4 +- ...OutlineCodes.OutlineCode.Values.Value.html | 4 +- ...oject.OutlineCodes.OutlineCode.Values.html | 4 +- .../Project.OutlineCodes.OutlineCode.html | 4 +- .../class-use/Project.OutlineCodes.html | 4 +- ...vailabilityPeriods.AvailabilityPeriod.html | 4 +- ...esources.Resource.AvailabilityPeriods.html | 4 +- .../Project.Resources.Resource.Baseline.html | 4 +- ....Resources.Resource.ExtendedAttribute.html | 4 +- ...roject.Resources.Resource.OutlineCode.html | 4 +- ...Project.Resources.Resource.Rates.Rate.html | 4 +- .../Project.Resources.Resource.Rates.html | 4 +- .../class-use/Project.Resources.Resource.html | 4 +- .../schema/class-use/Project.Resources.html | 4 +- .../Project.Tasks.Task.Baseline.html | 4 +- .../Project.Tasks.Task.ExtendedAttribute.html | 4 +- .../Project.Tasks.Task.OutlineCode.html | 4 +- .../Project.Tasks.Task.PredecessorLink.html | 4 +- .../schema/class-use/Project.Tasks.Task.html | 4 +- .../mspdi/schema/class-use/Project.Tasks.html | 4 +- .../class-use/Project.WBSMasks.WBSMask.html | 4 +- .../schema/class-use/Project.WBSMasks.html | 4 +- .../mpxj/mspdi/schema/class-use/Project.html | 4 +- .../schema/class-use/TimephasedDataType.html | 4 +- .../sf/mpxj/mspdi/schema/package-frame.html | 2 +- .../sf/mpxj/mspdi/schema/package-summary.html | 4 +- .../sf/mpxj/mspdi/schema/package-tree.html | 4 +- .../net/sf/mpxj/mspdi/schema/package-use.html | 4 +- .../net/sf/mpxj/openplan/CodeValue.html | 4 +- .../sf/mpxj/openplan/DependenciesReader.html | 4 +- .../net/sf/mpxj/openplan/OpenPlanReader.html | 4 +- .../sf/mpxj/openplan/class-use/CodeValue.html | 4 +- .../class-use/DependenciesReader.html | 4 +- .../openplan/class-use/OpenPlanReader.html | 4 +- .../net/sf/mpxj/openplan/package-frame.html | 2 +- .../net/sf/mpxj/openplan/package-summary.html | 4 +- .../net/sf/mpxj/openplan/package-tree.html | 4 +- .../net/sf/mpxj/openplan/package-use.html | 4 +- docs/apidocs/net/sf/mpxj/package-frame.html | 2 +- docs/apidocs/net/sf/mpxj/package-summary.html | 4 +- docs/apidocs/net/sf/mpxj/package-tree.html | 64 +- docs/apidocs/net/sf/mpxj/package-use.html | 11 +- .../sf/mpxj/phoenix/DatatypeConverter.html | 4 +- .../sf/mpxj/phoenix/PhoenixInputStream.html | 4 +- .../net/sf/mpxj/phoenix/PhoenixReader.html | 4 +- .../sf/mpxj/phoenix/SkipNulInputStream.html | 4 +- .../phoenix/class-use/DatatypeConverter.html | 4 +- .../phoenix/class-use/PhoenixInputStream.html | 4 +- .../mpxj/phoenix/class-use/PhoenixReader.html | 4 +- .../phoenix/class-use/SkipNulInputStream.html | 4 +- .../net/sf/mpxj/phoenix/package-frame.html | 2 +- .../net/sf/mpxj/phoenix/package-summary.html | 4 +- .../net/sf/mpxj/phoenix/package-tree.html | 4 +- .../net/sf/mpxj/phoenix/package-use.html | 4 +- .../sf/mpxj/planner/DatatypeConverter.html | 4 +- .../net/sf/mpxj/planner/PlannerReader.html | 4 +- .../net/sf/mpxj/planner/PlannerWriter.html | 4 +- .../apidocs/net/sf/mpxj/planner/Sequence.html | 4 +- .../planner/class-use/DatatypeConverter.html | 4 +- .../mpxj/planner/class-use/PlannerReader.html | 4 +- .../mpxj/planner/class-use/PlannerWriter.html | 4 +- .../sf/mpxj/planner/class-use/Sequence.html | 4 +- .../net/sf/mpxj/planner/package-frame.html | 2 +- .../net/sf/mpxj/planner/package-summary.html | 4 +- .../net/sf/mpxj/planner/package-tree.html | 4 +- .../net/sf/mpxj/planner/package-use.html | 4 +- .../net/sf/mpxj/planner/schema/Adapter1.html | 4 +- .../sf/mpxj/planner/schema/Allocation.html | 4 +- .../sf/mpxj/planner/schema/Allocations.html | 4 +- .../net/sf/mpxj/planner/schema/Calendar.html | 4 +- .../net/sf/mpxj/planner/schema/Calendars.html | 4 +- .../sf/mpxj/planner/schema/Constraint.html | 4 +- .../net/sf/mpxj/planner/schema/Day.html | 4 +- .../net/sf/mpxj/planner/schema/DayType.html | 4 +- .../net/sf/mpxj/planner/schema/DayTypes.html | 4 +- .../net/sf/mpxj/planner/schema/Days.html | 4 +- .../sf/mpxj/planner/schema/DefaultWeek.html | 4 +- .../net/sf/mpxj/planner/schema/Group.html | 4 +- .../net/sf/mpxj/planner/schema/Interval.html | 4 +- .../net/sf/mpxj/planner/schema/ListItem.html | 4 +- .../sf/mpxj/planner/schema/ObjectFactory.html | 4 +- .../planner/schema/OverriddenDayType.html | 4 +- .../planner/schema/OverriddenDayTypes.html | 4 +- .../net/sf/mpxj/planner/schema/Phase.html | 4 +- .../net/sf/mpxj/planner/schema/Phases.html | 4 +- .../sf/mpxj/planner/schema/Predecessor.html | 4 +- .../sf/mpxj/planner/schema/Predecessors.html | 4 +- .../net/sf/mpxj/planner/schema/Project.html | 4 +- .../sf/mpxj/planner/schema/Properties.html | 4 +- .../net/sf/mpxj/planner/schema/Property.html | 4 +- .../net/sf/mpxj/planner/schema/Resource.html | 4 +- .../mpxj/planner/schema/ResourceGroups.html | 4 +- .../net/sf/mpxj/planner/schema/Resources.html | 4 +- .../net/sf/mpxj/planner/schema/Task.html | 4 +- .../net/sf/mpxj/planner/schema/Tasks.html | 4 +- .../planner/schema/class-use/Adapter1.html | 4 +- .../planner/schema/class-use/Allocation.html | 4 +- .../planner/schema/class-use/Allocations.html | 4 +- .../planner/schema/class-use/Calendar.html | 4 +- .../planner/schema/class-use/Calendars.html | 4 +- .../planner/schema/class-use/Constraint.html | 4 +- .../sf/mpxj/planner/schema/class-use/Day.html | 4 +- .../planner/schema/class-use/DayType.html | 4 +- .../planner/schema/class-use/DayTypes.html | 4 +- .../mpxj/planner/schema/class-use/Days.html | 4 +- .../planner/schema/class-use/DefaultWeek.html | 4 +- .../mpxj/planner/schema/class-use/Group.html | 4 +- .../planner/schema/class-use/Interval.html | 4 +- .../planner/schema/class-use/ListItem.html | 4 +- .../schema/class-use/ObjectFactory.html | 4 +- .../schema/class-use/OverriddenDayType.html | 4 +- .../schema/class-use/OverriddenDayTypes.html | 4 +- .../mpxj/planner/schema/class-use/Phase.html | 4 +- .../mpxj/planner/schema/class-use/Phases.html | 4 +- .../planner/schema/class-use/Predecessor.html | 4 +- .../schema/class-use/Predecessors.html | 4 +- .../planner/schema/class-use/Project.html | 4 +- .../planner/schema/class-use/Properties.html | 4 +- .../planner/schema/class-use/Property.html | 4 +- .../planner/schema/class-use/Resource.html | 4 +- .../schema/class-use/ResourceGroups.html | 4 +- .../planner/schema/class-use/Resources.html | 4 +- .../mpxj/planner/schema/class-use/Task.html | 4 +- .../mpxj/planner/schema/class-use/Tasks.html | 4 +- .../sf/mpxj/planner/schema/package-frame.html | 2 +- .../mpxj/planner/schema/package-summary.html | 4 +- .../sf/mpxj/planner/schema/package-tree.html | 4 +- .../sf/mpxj/planner/schema/package-use.html | 4 +- .../sf/mpxj/primavera/DatatypeConverter.html | 4 +- .../sf/mpxj/primavera/ExternalRelation.html | 4 +- .../primavera/PrimaveraBaselineStrategy.html | 4 +- .../PrimaveraDatabaseFileReader.html | 4 +- .../primavera/PrimaveraDatabaseReader.html | 4 +- .../mpxj/primavera/PrimaveraPMFileReader.html | 4 +- .../mpxj/primavera/PrimaveraPMFileWriter.html | 4 +- .../primavera/PrimaveraXERFileReader.html | 4 +- .../primavera/PrimaveraXERFileWriter.html | 27 +- .../StructuredTextParseException.html | 4 +- .../mpxj/primavera/StructuredTextParser.html | 4 +- .../mpxj/primavera/StructuredTextRecord.html | 4 +- .../mpxj/primavera/StructuredTextWriter.html | 4 +- .../class-use/DatatypeConverter.html | 4 +- .../primavera/class-use/ExternalRelation.html | 4 +- .../class-use/PrimaveraBaselineStrategy.html | 4 +- .../PrimaveraDatabaseFileReader.html | 4 +- .../class-use/PrimaveraDatabaseReader.html | 4 +- .../class-use/PrimaveraPMFileReader.html | 4 +- .../class-use/PrimaveraPMFileWriter.html | 4 +- .../class-use/PrimaveraXERFileReader.html | 4 +- .../class-use/PrimaveraXERFileWriter.html | 4 +- .../StructuredTextParseException.html | 4 +- .../class-use/StructuredTextParser.html | 4 +- .../class-use/StructuredTextRecord.html | 4 +- .../class-use/StructuredTextWriter.html | 4 +- .../mpxj/primavera/common/AbstractColumn.html | 4 +- .../primavera/common/AbstractIntColumn.html | 4 +- .../primavera/common/AbstractShortColumn.html | 4 +- .../primavera/common/AbstractWbsFormat.html | 4 +- .../net/sf/mpxj/primavera/common/Blast.html | 4 +- .../sf/mpxj/primavera/common/ByteColumn.html | 4 +- .../primavera/common/ColumnDefinition.html | 4 +- .../sf/mpxj/primavera/common/IntColumn.html | 4 +- .../net/sf/mpxj/primavera/common/MapRow.html | 4 +- .../mpxj/primavera/common/RowValidator.html | 4 +- .../sf/mpxj/primavera/common/ShortColumn.html | 4 +- .../mpxj/primavera/common/StringColumn.html | 4 +- .../net/sf/mpxj/primavera/common/Table.html | 4 +- .../primavera/common/TableDefinition.html | 4 +- .../common/class-use/AbstractColumn.html | 4 +- .../common/class-use/AbstractIntColumn.html | 4 +- .../common/class-use/AbstractShortColumn.html | 4 +- .../common/class-use/AbstractWbsFormat.html | 4 +- .../primavera/common/class-use/Blast.html | 4 +- .../common/class-use/ByteColumn.html | 4 +- .../common/class-use/ColumnDefinition.html | 4 +- .../primavera/common/class-use/IntColumn.html | 4 +- .../primavera/common/class-use/MapRow.html | 4 +- .../common/class-use/RowValidator.html | 4 +- .../common/class-use/ShortColumn.html | 4 +- .../common/class-use/StringColumn.html | 4 +- .../primavera/common/class-use/Table.html | 4 +- .../common/class-use/TableDefinition.html | 4 +- .../mpxj/primavera/common/package-frame.html | 2 +- .../primavera/common/package-summary.html | 4 +- .../mpxj/primavera/common/package-tree.html | 4 +- .../sf/mpxj/primavera/common/package-use.html | 4 +- .../mpxj/primavera/p3/P3DatabaseReader.html | 4 +- .../sf/mpxj/primavera/p3/P3PRXFileReader.html | 4 +- .../p3/class-use/P3DatabaseReader.html | 4 +- .../p3/class-use/P3PRXFileReader.html | 4 +- .../sf/mpxj/primavera/p3/package-frame.html | 2 +- .../sf/mpxj/primavera/p3/package-summary.html | 4 +- .../sf/mpxj/primavera/p3/package-tree.html | 4 +- .../net/sf/mpxj/primavera/p3/package-use.html | 4 +- .../net/sf/mpxj/primavera/package-frame.html | 2 +- .../sf/mpxj/primavera/package-summary.html | 4 +- .../net/sf/mpxj/primavera/package-tree.html | 4 +- .../net/sf/mpxj/primavera/package-use.html | 4 +- .../primavera/schema/APIBusinessObjects.html | 4 +- .../schema/ActivityCodeAssignmentType.html | 4 +- .../primavera/schema/ActivityCodeType.html | 4 +- .../schema/ActivityCodeTypeType.html | 4 +- .../schema/ActivityCodeUpdateType.html | 4 +- .../primavera/schema/ActivityCommentType.html | 4 +- .../primavera/schema/ActivityExpenseType.html | 4 +- .../primavera/schema/ActivityFilterType.html | 4 +- .../primavera/schema/ActivityNoteType.html | 4 +- .../schema/ActivityNoteUpdateType.html | 4 +- .../primavera/schema/ActivityOwnerType.html | 4 +- .../schema/ActivityPeriodActualType.html | 4 +- .../primavera/schema/ActivityRiskType.html | 4 +- .../schema/ActivitySpreadType.Period.html | 4 +- .../primavera/schema/ActivitySpreadType.html | 4 +- .../schema/ActivityStepCreateType.html | 4 +- .../schema/ActivityStepDeleteType.html | 4 +- .../schema/ActivityStepTemplateItemType.html | 4 +- .../schema/ActivityStepTemplateType.html | 4 +- .../primavera/schema/ActivityStepType.html | 4 +- .../schema/ActivityStepUpdateType.html | 4 +- .../mpxj/primavera/schema/ActivityType.html | 4 +- .../primavera/schema/ActivityUpdateType.html | 4 +- .../sf/mpxj/primavera/schema/Adapter1.html | 4 +- .../sf/mpxj/primavera/schema/Adapter2.html | 4 +- .../sf/mpxj/primavera/schema/Adapter3.html | 4 +- .../sf/mpxj/primavera/schema/Adapter4.html | 4 +- .../sf/mpxj/primavera/schema/Adapter5.html | 4 +- .../sf/mpxj/primavera/schema/AlertType.html | 4 +- .../primavera/schema/AutovueAttrType.html | 4 +- .../primavera/schema/BaselineProjectType.html | 4 +- .../primavera/schema/BaselineTypeType.html | 4 +- .../schema/CBSDurationSummaryType.html | 4 +- .../net/sf/mpxj/primavera/schema/CBSType.html | 4 +- ...olidayOrExceptions.HolidayOrException.html | 4 +- .../CalendarType.HolidayOrExceptions.html | 4 +- ...pe.StandardWorkWeek.StandardWorkHours.html | 4 +- .../schema/CalendarType.StandardWorkWeek.html | 4 +- .../mpxj/primavera/schema/CalendarType.html | 4 +- .../mpxj/primavera/schema/ChangeSetType.html | 4 +- .../primavera/schema/CodeAssignmentType.html | 4 +- .../primavera/schema/CostAccountType.html | 4 +- .../mpxj/primavera/schema/CurrencyType.html | 4 +- .../primavera/schema/DisplayCurrencyType.html | 4 +- .../schema/DocumentCategoryType.html | 4 +- .../schema/DocumentStatusCodeType.html | 4 +- .../mpxj/primavera/schema/DocumentType.html | 4 +- .../schema/EPSBudgetChangeLogType.html | 4 +- .../mpxj/primavera/schema/EPSFundingType.html | 4 +- .../sf/mpxj/primavera/schema/EPSNoteType.html | 4 +- .../EPSProjectWBSSpreadType.Period.html | 4 +- .../schema/EPSProjectWBSSpreadType.html | 4 +- .../primavera/schema/EPSSpendingPlanType.html | 4 +- .../net/sf/mpxj/primavera/schema/EPSType.html | 4 +- .../primavera/schema/ExpenseCategoryType.html | 4 +- .../schema/FinancialPeriodTemplateType.html | 4 +- .../primavera/schema/FinancialPeriodType.html | 4 +- .../primavera/schema/FundingSourceType.html | 4 +- .../schema/GatewayDeploymentType.html | 4 +- .../schema/GlobalPreferencesType.html | 4 +- .../schema/GlobalPrivilegesType.html | 4 +- .../primavera/schema/GlobalProfileType.html | 4 +- .../primavera/schema/GlobalReplaceType.html | 4 +- .../schema/ImportOptionsTemplateType.html | 4 +- .../primavera/schema/IssueHistoryType.html | 4 +- .../mpxj/primavera/schema/JobServiceType.html | 4 +- .../mpxj/primavera/schema/LeanTaskType.html | 4 +- .../mpxj/primavera/schema/LocationType.html | 4 +- .../primavera/schema/MSPTemplateType.html | 4 +- .../primavera/schema/NotebookTopicType.html | 4 +- .../net/sf/mpxj/primavera/schema/OBSType.html | 4 +- .../mpxj/primavera/schema/ObjectFactory.html | 4 +- .../primavera/schema/OverheadCodeType.html | 4 +- .../schema/PortfolioTeamMemberType.html | 4 +- .../sf/mpxj/primavera/schema/ProfileType.html | 4 +- .../schema/ProjectBudgetChangeLogType.html | 4 +- .../schema/ProjectCodeAssignmentType.html | 4 +- .../primavera/schema/ProjectCodeType.html | 4 +- .../primavera/schema/ProjectCodeTypeType.html | 4 +- .../schema/ProjectDeploymentType.html | 4 +- .../primavera/schema/ProjectDocumentType.html | 4 +- .../primavera/schema/ProjectFundingType.html | 4 +- .../primavera/schema/ProjectIssueType.html | 4 +- ...ojectListType.Project.BaselineProject.html | 4 +- .../schema/ProjectListType.Project.html | 4 +- .../primavera/schema/ProjectListType.html | 4 +- .../primavera/schema/ProjectNoteType.html | 4 +- .../schema/ProjectPortfolioType.html | 4 +- .../schema/ProjectPrivilegesType.html | 4 +- .../primavera/schema/ProjectProfileType.html | 4 +- .../schema/ProjectResourceCategoryType.html | 4 +- .../schema/ProjectResourceQuantityType.html | 4 +- .../ProjectResourceSpreadType.Period.html | 4 +- .../schema/ProjectResourceSpreadType.html | 4 +- .../primavera/schema/ProjectResourceType.html | 4 +- .../schema/ProjectRoleSpreadType.Period.html | 4 +- .../schema/ProjectRoleSpreadType.html | 4 +- .../schema/ProjectSpendingPlanType.html | 4 +- .../schema/ProjectThresholdType.html | 4 +- .../sf/mpxj/primavera/schema/ProjectType.html | 4 +- .../primavera/schema/RelationshipType.html | 4 +- .../primavera/schema/ResourceAccessType.html | 4 +- .../ResourceAssignmentCodeAssignmentType.html | 4 +- .../schema/ResourceAssignmentCodeType.html | 4 +- .../ResourceAssignmentCodeTypeType.html | 4 +- .../schema/ResourceAssignmentCreateType.html | 4 +- .../ResourceAssignmentPeriodActualType.html | 4 +- .../ResourceAssignmentSpreadType.Period.html | 4 +- .../schema/ResourceAssignmentSpreadType.html | 4 +- .../schema/ResourceAssignmentType.html | 4 +- .../schema/ResourceAssignmentUpdateType.html | 4 +- .../schema/ResourceCodeAssignmentType.html | 4 +- .../primavera/schema/ResourceCodeType.html | 4 +- .../schema/ResourceCodeTypeType.html | 4 +- .../primavera/schema/ResourceCurveType.html | 4 +- .../schema/ResourceCurveValuesType.html | 4 +- .../primavera/schema/ResourceHourType.html | 4 +- .../schema/ResourceLocationType.html | 4 +- .../primavera/schema/ResourceRateType.html | 4 +- ...eRequestType.ResourceRequestCriterion.html | 4 +- .../primavera/schema/ResourceRequestType.html | 4 +- .../primavera/schema/ResourceRoleType.html | 4 +- .../primavera/schema/ResourceTeamType.html | 4 +- .../mpxj/primavera/schema/ResourceType.html | 4 +- .../primavera/schema/RiskCategoryType.html | 4 +- .../mpxj/primavera/schema/RiskImpactType.html | 4 +- .../primavera/schema/RiskMatrixScoreType.html | 4 +- .../schema/RiskMatrixThresholdType.html | 4 +- .../mpxj/primavera/schema/RiskMatrixType.html | 4 +- .../schema/RiskResponseActionImpactType.html | 4 +- .../schema/RiskResponseActionType.html | 4 +- .../schema/RiskResponsePlanType.html | 4 +- .../schema/RiskThresholdLevelType.html | 4 +- .../primavera/schema/RiskThresholdType.html | 4 +- .../sf/mpxj/primavera/schema/RiskType.html | 4 +- .../schema/RoleCodeAssignmentType.html | 4 +- .../mpxj/primavera/schema/RoleCodeType.html | 4 +- .../primavera/schema/RoleCodeTypeType.html | 4 +- .../mpxj/primavera/schema/RoleLimitType.html | 4 +- .../mpxj/primavera/schema/RoleRateType.html | 4 +- .../mpxj/primavera/schema/RoleTeamType.html | 4 +- .../sf/mpxj/primavera/schema/RoleType.html | 4 +- .../schema/ScheduleCheckOptionType.html | 4 +- .../primavera/schema/ScheduleOptionsType.html | 4 +- .../primavera/schema/ShiftPeriodType.html | 4 +- .../sf/mpxj/primavera/schema/ShiftType.html | 4 +- .../StepUserDefinedValueUpdateType.html | 4 +- .../schema/ThresholdParameterType.html | 4 +- .../primavera/schema/TimesheetAuditType.html | 4 +- .../schema/TimesheetDelegateType.html | 4 +- .../primavera/schema/TimesheetPeriodType.html | 4 +- .../mpxj/primavera/schema/TimesheetType.html | 4 +- .../primavera/schema/UDFAssignmentType.html | 4 +- .../sf/mpxj/primavera/schema/UDFCodeType.html | 4 +- .../sf/mpxj/primavera/schema/UDFTypeType.html | 4 +- .../mpxj/primavera/schema/UDFValueType.html | 4 +- .../primavera/schema/UnitOfMeasureType.html | 4 +- .../schema/UpdateBaselineOptionType.html | 4 +- .../primavera/schema/UserConsentType.html | 4 +- .../schema/UserDefinedValueUpdateType.html | 4 +- .../primavera/schema/UserFieldTitleType.html | 4 +- .../schema/UserInterfaceViewType.html | 4 +- .../primavera/schema/UserLicenseType.html | 4 +- .../sf/mpxj/primavera/schema/UserOBSType.html | 4 +- .../schema/UserType.ResourceRequests.html | 4 +- .../sf/mpxj/primavera/schema/UserType.html | 4 +- .../primavera/schema/WBSCategoryType.html | 4 +- .../primavera/schema/WBSMilestoneType.html | 4 +- .../net/sf/mpxj/primavera/schema/WBSType.html | 4 +- .../primavera/schema/WbsReviewersType.html | 4 +- .../mpxj/primavera/schema/WorkTimeType.html | 4 +- .../schema/class-use/APIBusinessObjects.html | 4 +- .../class-use/ActivityCodeAssignmentType.html | 4 +- .../schema/class-use/ActivityCodeType.html | 4 +- .../class-use/ActivityCodeTypeType.html | 4 +- .../class-use/ActivityCodeUpdateType.html | 4 +- .../schema/class-use/ActivityCommentType.html | 4 +- .../schema/class-use/ActivityExpenseType.html | 4 +- .../schema/class-use/ActivityFilterType.html | 4 +- .../schema/class-use/ActivityNoteType.html | 4 +- .../class-use/ActivityNoteUpdateType.html | 4 +- .../schema/class-use/ActivityOwnerType.html | 4 +- .../class-use/ActivityPeriodActualType.html | 4 +- .../schema/class-use/ActivityRiskType.html | 4 +- .../class-use/ActivitySpreadType.Period.html | 4 +- .../schema/class-use/ActivitySpreadType.html | 4 +- .../class-use/ActivityStepCreateType.html | 4 +- .../class-use/ActivityStepDeleteType.html | 4 +- .../ActivityStepTemplateItemType.html | 4 +- .../class-use/ActivityStepTemplateType.html | 4 +- .../schema/class-use/ActivityStepType.html | 4 +- .../class-use/ActivityStepUpdateType.html | 4 +- .../schema/class-use/ActivityType.html | 4 +- .../schema/class-use/ActivityUpdateType.html | 4 +- .../primavera/schema/class-use/Adapter1.html | 4 +- .../primavera/schema/class-use/Adapter2.html | 4 +- .../primavera/schema/class-use/Adapter3.html | 4 +- .../primavera/schema/class-use/Adapter4.html | 4 +- .../primavera/schema/class-use/Adapter5.html | 4 +- .../primavera/schema/class-use/AlertType.html | 4 +- .../schema/class-use/AutovueAttrType.html | 4 +- .../schema/class-use/BaselineProjectType.html | 4 +- .../schema/class-use/BaselineTypeType.html | 4 +- .../class-use/CBSDurationSummaryType.html | 4 +- .../primavera/schema/class-use/CBSType.html | 4 +- ...olidayOrExceptions.HolidayOrException.html | 4 +- .../CalendarType.HolidayOrExceptions.html | 4 +- ...pe.StandardWorkWeek.StandardWorkHours.html | 4 +- .../CalendarType.StandardWorkWeek.html | 4 +- .../schema/class-use/CalendarType.html | 4 +- .../schema/class-use/ChangeSetType.html | 4 +- .../schema/class-use/CodeAssignmentType.html | 4 +- .../schema/class-use/CostAccountType.html | 4 +- .../schema/class-use/CurrencyType.html | 4 +- .../schema/class-use/DisplayCurrencyType.html | 4 +- .../class-use/DocumentCategoryType.html | 4 +- .../class-use/DocumentStatusCodeType.html | 4 +- .../schema/class-use/DocumentType.html | 4 +- .../class-use/EPSBudgetChangeLogType.html | 4 +- .../schema/class-use/EPSFundingType.html | 4 +- .../schema/class-use/EPSNoteType.html | 4 +- .../EPSProjectWBSSpreadType.Period.html | 4 +- .../class-use/EPSProjectWBSSpreadType.html | 4 +- .../schema/class-use/EPSSpendingPlanType.html | 4 +- .../primavera/schema/class-use/EPSType.html | 4 +- .../schema/class-use/ExpenseCategoryType.html | 4 +- .../FinancialPeriodTemplateType.html | 4 +- .../schema/class-use/FinancialPeriodType.html | 4 +- .../schema/class-use/FundingSourceType.html | 4 +- .../class-use/GatewayDeploymentType.html | 4 +- .../class-use/GlobalPreferencesType.html | 4 +- .../class-use/GlobalPrivilegesType.html | 4 +- .../schema/class-use/GlobalProfileType.html | 4 +- .../schema/class-use/GlobalReplaceType.html | 4 +- .../class-use/ImportOptionsTemplateType.html | 4 +- .../schema/class-use/IssueHistoryType.html | 4 +- .../schema/class-use/JobServiceType.html | 4 +- .../schema/class-use/LeanTaskType.html | 4 +- .../schema/class-use/LocationType.html | 4 +- .../schema/class-use/MSPTemplateType.html | 4 +- .../schema/class-use/NotebookTopicType.html | 4 +- .../primavera/schema/class-use/OBSType.html | 4 +- .../schema/class-use/ObjectFactory.html | 4 +- .../schema/class-use/OverheadCodeType.html | 4 +- .../class-use/PortfolioTeamMemberType.html | 4 +- .../schema/class-use/ProfileType.html | 4 +- .../class-use/ProjectBudgetChangeLogType.html | 4 +- .../class-use/ProjectCodeAssignmentType.html | 4 +- .../schema/class-use/ProjectCodeType.html | 4 +- .../schema/class-use/ProjectCodeTypeType.html | 4 +- .../class-use/ProjectDeploymentType.html | 4 +- .../schema/class-use/ProjectDocumentType.html | 4 +- .../schema/class-use/ProjectFundingType.html | 4 +- .../schema/class-use/ProjectIssueType.html | 4 +- ...ojectListType.Project.BaselineProject.html | 4 +- .../class-use/ProjectListType.Project.html | 4 +- .../schema/class-use/ProjectListType.html | 4 +- .../schema/class-use/ProjectNoteType.html | 4 +- .../class-use/ProjectPortfolioType.html | 4 +- .../class-use/ProjectPrivilegesType.html | 4 +- .../schema/class-use/ProjectProfileType.html | 4 +- .../ProjectResourceCategoryType.html | 4 +- .../ProjectResourceQuantityType.html | 4 +- .../ProjectResourceSpreadType.Period.html | 4 +- .../class-use/ProjectResourceSpreadType.html | 4 +- .../schema/class-use/ProjectResourceType.html | 4 +- .../ProjectRoleSpreadType.Period.html | 4 +- .../class-use/ProjectRoleSpreadType.html | 4 +- .../class-use/ProjectSpendingPlanType.html | 4 +- .../class-use/ProjectThresholdType.html | 4 +- .../schema/class-use/ProjectType.html | 4 +- .../schema/class-use/RelationshipType.html | 4 +- .../schema/class-use/ResourceAccessType.html | 4 +- .../ResourceAssignmentCodeAssignmentType.html | 4 +- .../class-use/ResourceAssignmentCodeType.html | 4 +- .../ResourceAssignmentCodeTypeType.html | 4 +- .../ResourceAssignmentCreateType.html | 4 +- .../ResourceAssignmentPeriodActualType.html | 4 +- .../ResourceAssignmentSpreadType.Period.html | 4 +- .../ResourceAssignmentSpreadType.html | 4 +- .../class-use/ResourceAssignmentType.html | 4 +- .../ResourceAssignmentUpdateType.html | 4 +- .../class-use/ResourceCodeAssignmentType.html | 4 +- .../schema/class-use/ResourceCodeType.html | 4 +- .../class-use/ResourceCodeTypeType.html | 4 +- .../schema/class-use/ResourceCurveType.html | 4 +- .../class-use/ResourceCurveValuesType.html | 4 +- .../schema/class-use/ResourceHourType.html | 4 +- .../class-use/ResourceLocationType.html | 4 +- .../schema/class-use/ResourceRateType.html | 4 +- ...eRequestType.ResourceRequestCriterion.html | 4 +- .../schema/class-use/ResourceRequestType.html | 4 +- .../schema/class-use/ResourceRoleType.html | 4 +- .../schema/class-use/ResourceTeamType.html | 4 +- .../schema/class-use/ResourceType.html | 4 +- .../schema/class-use/RiskCategoryType.html | 4 +- .../schema/class-use/RiskImpactType.html | 4 +- .../schema/class-use/RiskMatrixScoreType.html | 4 +- .../class-use/RiskMatrixThresholdType.html | 4 +- .../schema/class-use/RiskMatrixType.html | 4 +- .../RiskResponseActionImpactType.html | 4 +- .../class-use/RiskResponseActionType.html | 4 +- .../class-use/RiskResponsePlanType.html | 4 +- .../class-use/RiskThresholdLevelType.html | 4 +- .../schema/class-use/RiskThresholdType.html | 4 +- .../primavera/schema/class-use/RiskType.html | 4 +- .../class-use/RoleCodeAssignmentType.html | 4 +- .../schema/class-use/RoleCodeType.html | 4 +- .../schema/class-use/RoleCodeTypeType.html | 4 +- .../schema/class-use/RoleLimitType.html | 4 +- .../schema/class-use/RoleRateType.html | 4 +- .../schema/class-use/RoleTeamType.html | 4 +- .../primavera/schema/class-use/RoleType.html | 4 +- .../class-use/ScheduleCheckOptionType.html | 4 +- .../schema/class-use/ScheduleOptionsType.html | 4 +- .../schema/class-use/ShiftPeriodType.html | 4 +- .../primavera/schema/class-use/ShiftType.html | 4 +- .../StepUserDefinedValueUpdateType.html | 4 +- .../class-use/ThresholdParameterType.html | 4 +- .../schema/class-use/TimesheetAuditType.html | 4 +- .../class-use/TimesheetDelegateType.html | 4 +- .../schema/class-use/TimesheetPeriodType.html | 4 +- .../schema/class-use/TimesheetType.html | 4 +- .../schema/class-use/UDFAssignmentType.html | 4 +- .../schema/class-use/UDFCodeType.html | 4 +- .../schema/class-use/UDFTypeType.html | 4 +- .../schema/class-use/UDFValueType.html | 4 +- .../schema/class-use/UnitOfMeasureType.html | 4 +- .../class-use/UpdateBaselineOptionType.html | 4 +- .../schema/class-use/UserConsentType.html | 4 +- .../class-use/UserDefinedValueUpdateType.html | 4 +- .../schema/class-use/UserFieldTitleType.html | 4 +- .../class-use/UserInterfaceViewType.html | 4 +- .../schema/class-use/UserLicenseType.html | 4 +- .../schema/class-use/UserOBSType.html | 4 +- .../class-use/UserType.ResourceRequests.html | 4 +- .../primavera/schema/class-use/UserType.html | 4 +- .../schema/class-use/WBSCategoryType.html | 4 +- .../schema/class-use/WBSMilestoneType.html | 4 +- .../primavera/schema/class-use/WBSType.html | 4 +- .../schema/class-use/WbsReviewersType.html | 4 +- .../schema/class-use/WorkTimeType.html | 4 +- .../mpxj/primavera/schema/package-frame.html | 2 +- .../primavera/schema/package-summary.html | 4 +- .../mpxj/primavera/schema/package-tree.html | 4 +- .../sf/mpxj/primavera/schema/package-use.html | 4 +- .../suretrak/SureTrakDatabaseReader.html | 4 +- .../suretrak/SureTrakSTXFileReader.html | 4 +- .../primavera/suretrak/SureTrakWbsFormat.html | 4 +- .../class-use/SureTrakDatabaseReader.html | 4 +- .../class-use/SureTrakSTXFileReader.html | 4 +- .../suretrak/class-use/SureTrakWbsFormat.html | 4 +- .../primavera/suretrak/package-frame.html | 2 +- .../primavera/suretrak/package-summary.html | 4 +- .../mpxj/primavera/suretrak/package-tree.html | 4 +- .../mpxj/primavera/suretrak/package-use.html | 4 +- .../ProjectCommanderReader.html | 4 +- .../class-use/ProjectCommanderReader.html | 4 +- .../mpxj/projectcommander/package-frame.html | 2 +- .../projectcommander/package-summary.html | 4 +- .../mpxj/projectcommander/package-tree.html | 4 +- .../sf/mpxj/projectcommander/package-use.html | 4 +- .../mpxj/projectlibre/ProjectLibreReader.html | 4 +- .../projectlibre/SearchableInputStream.html | 4 +- .../class-use/ProjectLibreReader.html | 4 +- .../class-use/SearchableInputStream.html | 4 +- .../sf/mpxj/projectlibre/package-frame.html | 2 +- .../sf/mpxj/projectlibre/package-summary.html | 4 +- .../sf/mpxj/projectlibre/package-tree.html | 4 +- .../net/sf/mpxj/projectlibre/package-use.html | 4 +- .../reader/AbstractProjectFileReader.html | 4 +- .../sf/mpxj/reader/AbstractProjectReader.html | 4 +- .../reader/AbstractProjectStreamReader.html | 4 +- .../net/sf/mpxj/reader/ProjectReader.html | 4 +- .../sf/mpxj/reader/ProjectReaderUtility.html | 4 +- ...ersalProjectReader.ProjectReaderProxy.html | 4 +- .../mpxj/reader/UniversalProjectReader.html | 4 +- .../class-use/AbstractProjectFileReader.html | 4 +- .../class-use/AbstractProjectReader.html | 4 +- .../AbstractProjectStreamReader.html | 4 +- .../mpxj/reader/class-use/ProjectReader.html | 4 +- .../class-use/ProjectReaderUtility.html | 4 +- ...ersalProjectReader.ProjectReaderProxy.html | 4 +- .../class-use/UniversalProjectReader.html | 4 +- .../net/sf/mpxj/reader/package-frame.html | 2 +- .../net/sf/mpxj/reader/package-summary.html | 4 +- .../net/sf/mpxj/reader/package-tree.html | 4 +- .../net/sf/mpxj/reader/package-use.html | 4 +- .../net/sf/mpxj/ruby/GenerateJson.html | 4 +- .../net/sf/mpxj/ruby/MethodGenerator.html | 4 +- .../sf/mpxj/ruby/class-use/GenerateJson.html | 4 +- .../mpxj/ruby/class-use/MethodGenerator.html | 4 +- .../net/sf/mpxj/ruby/package-frame.html | 2 +- .../net/sf/mpxj/ruby/package-summary.html | 4 +- .../net/sf/mpxj/ruby/package-tree.html | 4 +- .../apidocs/net/sf/mpxj/ruby/package-use.html | 4 +- docs/apidocs/net/sf/mpxj/sage/SageReader.html | 4 +- .../sf/mpxj/sage/class-use/SageReader.html | 4 +- .../net/sf/mpxj/sage/package-frame.html | 2 +- .../net/sf/mpxj/sage/package-summary.html | 4 +- .../net/sf/mpxj/sage/package-tree.html | 4 +- .../apidocs/net/sf/mpxj/sage/package-use.html | 4 +- docs/apidocs/net/sf/mpxj/sample/HexDump.html | 4 +- docs/apidocs/net/sf/mpxj/sample/MppDump.html | 4 +- .../net/sf/mpxj/sample/MpxjBatchConvert.html | 4 +- .../net/sf/mpxj/sample/MpxjConvert.html | 4 +- .../net/sf/mpxj/sample/MpxjCreate.html | 4 +- .../sf/mpxj/sample/MpxjCreateTimephased.html | 4 +- .../net/sf/mpxj/sample/MpxjFilter.html | 4 +- .../apidocs/net/sf/mpxj/sample/MpxjQuery.html | 4 +- .../net/sf/mpxj/sample/PrimaveraConvert.html | 4 +- .../sf/mpxj/sample/ReadFileForProfiling.html | 4 +- .../net/sf/mpxj/sample/TaskDateDump.html | 4 +- .../net/sf/mpxj/sample/class-use/HexDump.html | 4 +- .../net/sf/mpxj/sample/class-use/MppDump.html | 4 +- .../sample/class-use/MpxjBatchConvert.html | 4 +- .../sf/mpxj/sample/class-use/MpxjConvert.html | 4 +- .../sf/mpxj/sample/class-use/MpxjCreate.html | 4 +- .../class-use/MpxjCreateTimephased.html | 4 +- .../sf/mpxj/sample/class-use/MpxjFilter.html | 4 +- .../sf/mpxj/sample/class-use/MpxjQuery.html | 4 +- .../sample/class-use/PrimaveraConvert.html | 4 +- .../class-use/ReadFileForProfiling.html | 4 +- .../mpxj/sample/class-use/TaskDateDump.html | 4 +- .../net/sf/mpxj/sample/package-frame.html | 2 +- .../net/sf/mpxj/sample/package-summary.html | 4 +- .../net/sf/mpxj/sample/package-tree.html | 4 +- .../net/sf/mpxj/sample/package-use.html | 4 +- docs/apidocs/net/sf/mpxj/sdef/SDEFReader.html | 4 +- docs/apidocs/net/sf/mpxj/sdef/SDEFWriter.html | 4 +- .../sf/mpxj/sdef/class-use/SDEFReader.html | 4 +- .../sf/mpxj/sdef/class-use/SDEFWriter.html | 4 +- .../net/sf/mpxj/sdef/package-frame.html | 2 +- .../net/sf/mpxj/sdef/package-summary.html | 4 +- .../net/sf/mpxj/sdef/package-tree.html | 4 +- .../apidocs/net/sf/mpxj/sdef/package-use.html | 4 +- .../net/sf/mpxj/synchro/SynchroReader.html | 4 +- .../mpxj/synchro/class-use/SynchroReader.html | 4 +- .../net/sf/mpxj/synchro/package-frame.html | 2 +- .../net/sf/mpxj/synchro/package-summary.html | 4 +- .../net/sf/mpxj/synchro/package-tree.html | 4 +- .../net/sf/mpxj/synchro/package-use.html | 4 +- .../mpxj/turboproject/TurboProjectReader.html | 4 +- .../class-use/TurboProjectReader.html | 4 +- .../sf/mpxj/turboproject/package-frame.html | 2 +- .../sf/mpxj/turboproject/package-summary.html | 4 +- .../sf/mpxj/turboproject/package-tree.html | 4 +- .../net/sf/mpxj/turboproject/package-use.html | 4 +- .../sf/mpxj/utility/DataExportUtility.html | 4 +- .../sf/mpxj/utility/ProjectCleanUtility.html | 4 +- .../sf/mpxj/utility/TimephasedUtility.html | 4 +- .../net/sf/mpxj/utility/TimescaleUtility.html | 4 +- .../utility/class-use/DataExportUtility.html | 4 +- .../class-use/ProjectCleanUtility.html | 4 +- .../utility/class-use/TimephasedUtility.html | 4 +- .../utility/class-use/TimescaleUtility.html | 4 +- .../utility/clean/CleanByRedactStrategy.html | 4 +- .../clean/CleanByReplacementStrategy.html | 4 +- .../sf/mpxj/utility/clean/CleanStrategy.html | 4 +- .../class-use/CleanByRedactStrategy.html | 4 +- .../class-use/CleanByReplacementStrategy.html | 4 +- .../clean/class-use/CleanStrategy.html | 4 +- .../sf/mpxj/utility/clean/package-frame.html | 2 +- .../mpxj/utility/clean/package-summary.html | 4 +- .../sf/mpxj/utility/clean/package-tree.html | 4 +- .../sf/mpxj/utility/clean/package-use.html | 4 +- .../net/sf/mpxj/utility/package-frame.html | 2 +- .../net/sf/mpxj/utility/package-summary.html | 4 +- .../net/sf/mpxj/utility/package-tree.html | 4 +- .../net/sf/mpxj/utility/package-use.html | 4 +- .../sf/mpxj/writer/AbstractProjectWriter.html | 4 +- .../net/sf/mpxj/writer/FileFormat.html | 4 +- .../net/sf/mpxj/writer/ProjectWriter.html | 4 +- .../mpxj/writer/UniversalProjectWriter.html | 4 +- .../class-use/AbstractProjectWriter.html | 4 +- .../sf/mpxj/writer/class-use/FileFormat.html | 4 +- .../mpxj/writer/class-use/ProjectWriter.html | 4 +- .../class-use/UniversalProjectWriter.html | 4 +- .../net/sf/mpxj/writer/package-frame.html | 2 +- .../net/sf/mpxj/writer/package-summary.html | 4 +- .../net/sf/mpxj/writer/package-tree.html | 4 +- .../net/sf/mpxj/writer/package-use.html | 4 +- docs/apidocs/overview-frame.html | 2 +- docs/apidocs/overview-summary.html | 6 +- docs/apidocs/overview-tree.html | 4 +- docs/apidocs/serialized-form.html | 4 +- docs/changes-report.html | 3908 +++++++++-------- docs/changes.rss | 16 +- docs/dependency-updates-report.html | 2 +- docs/field-guide/index.html | 81 + docs/issue-management.html | 2 +- docs/mailing-lists.html | 2 +- docs/mpp-field-guide/index.html | 21 + docs/plugin-updates-report.html | 2 +- docs/project-info.html | 2 +- docs/project-reports.html | 2 +- docs/scm.html | 2 +- docs/search/search_index.json | 2 +- docs/summary.html | 4 +- docs/team.html | 2 +- docs/testapidocs/allclasses-frame.html | 2 +- docs/testapidocs/allclasses-noframe.html | 2 +- docs/testapidocs/constant-values.html | 4 +- docs/testapidocs/deprecated-list.html | 4 +- docs/testapidocs/help-doc.html | 4 +- docs/testapidocs/index-all.html | 4 +- docs/testapidocs/index.html | 2 +- .../sf/mpxj/junit/AvailabilityTableTest.html | 4 +- .../net/sf/mpxj/junit/AvailabilityTest.html | 4 +- .../CalendarExceptionPrecedenceTest.html | 4 +- .../sf/mpxj/junit/CombinedCalendarTest.html | 4 +- .../net/sf/mpxj/junit/CostRateTableTest.html | 4 +- .../net/sf/mpxj/junit/CustomerDataTest.html | 4 +- .../net/sf/mpxj/junit/DateUtilityTest.html | 4 +- .../net/sf/mpxj/junit/DurationTest.html | 4 +- .../net/sf/mpxj/junit/FieldReporter.html | 4 +- .../net/sf/mpxj/junit/FileUtility.html | 4 +- .../net/sf/mpxj/junit/LocaleDataTest.html | 4 +- .../net/sf/mpxj/junit/LocaleTest.html | 4 +- .../net/sf/mpxj/junit/MppAssignmentTest.html | 4 +- .../net/sf/mpxj/junit/MppAutoFilterTest.html | 4 +- .../net/sf/mpxj/junit/MppBarStyleTest.html | 4 +- .../net/sf/mpxj/junit/MppBaselineTest.html | 4 +- .../net/sf/mpxj/junit/MppCalendarTest.html | 4 +- .../net/sf/mpxj/junit/MppColumnsTest.html | 4 +- .../net/sf/mpxj/junit/MppEmbeddedTest.html | 4 +- .../net/sf/mpxj/junit/MppEnterpriseTest.html | 4 +- .../net/sf/mpxj/junit/MppFilterLogicTest.html | 4 +- .../net/sf/mpxj/junit/MppFilterTest.html | 4 +- .../net/sf/mpxj/junit/MppGanttTest.html | 4 +- .../net/sf/mpxj/junit/MppGraphIndTest.html | 4 +- .../net/sf/mpxj/junit/MppGroupTest.html | 4 +- .../net/sf/mpxj/junit/MppNullTaskTest.html | 4 +- .../net/sf/mpxj/junit/MppPasswordTest.html | 4 +- .../mpxj/junit/MppProjectPropertiesTest.html | 4 +- .../net/sf/mpxj/junit/MppRecurringTest.html | 4 +- .../sf/mpxj/junit/MppResourceFlagsTest.html | 4 +- .../net/sf/mpxj/junit/MppResourceTest.html | 4 +- .../net/sf/mpxj/junit/MppSubprojectTest.html | 4 +- .../net/sf/mpxj/junit/MppTaskFlagsTest.html | 4 +- .../net/sf/mpxj/junit/MppTaskTest.html | 4 +- .../net/sf/mpxj/junit/MppViewStateTest.html | 4 +- .../net/sf/mpxj/junit/MppViewTest.html | 4 +- .../net/sf/mpxj/junit/MppXmlCompare.html | 4 +- .../net/sf/mpxj/junit/MpxjAssert.html | 4 +- .../net/sf/mpxj/junit/MpxjTestData.html | 4 +- .../net/sf/mpxj/junit/MpxjTestSuite.html | 4 +- .../sf/mpxj/junit/PlannerCalendarTest.html | 4 +- .../sf/mpxj/junit/PlannerResourceTest.html | 4 +- .../junit/ProjectCalendarExceptionTest.html | 4 +- .../sf/mpxj/junit/ProjectCalendarTest.html | 4 +- .../net/sf/mpxj/junit/ProjectUtility.html | 4 +- .../net/sf/mpxj/junit/RateHelperTest.html | 4 +- .../net/sf/mpxj/junit/RecurringDataTest.html | 4 +- .../sf/mpxj/junit/ResourceHierarchyTest.html | 4 +- .../net/sf/mpxj/junit/SemVerTest.html | 4 +- .../net/sf/mpxj/junit/SlackTest.html | 4 +- .../net/sf/mpxj/junit/SplitTaskTest.html | 4 +- .../net/sf/mpxj/junit/TimephasedTest.html | 4 +- .../junit/TimephasedWorkCostSegmentTest.html | 4 +- ...TimephasedWorkSegmentManualOffsetTest.html | 4 +- .../TimephasedWorkSegmentManualTest.html | 4 +- .../mpxj/junit/TimephasedWorkSegmentTest.html | 4 +- .../sf/mpxj/junit/TimescaleUtilityTest.html | 4 +- .../junit/XerRelationshipLagCalendarTest.html | 4 +- .../junit/XmlRelationshipLagCalendarTest.html | 4 +- .../assignment/AssignmentAssignmentsTest.html | 4 +- .../junit/assignment/AssignmentFlagsTest.html | 4 +- .../junit/assignment/AssignmentTextTest.html | 4 +- .../assignment/DeletedAssignmentTest.html | 4 +- .../junit/assignment/EffectiveRateTest.html | 4 +- .../class-use/AssignmentAssignmentsTest.html | 4 +- .../class-use/AssignmentFlagsTest.html | 4 +- .../class-use/AssignmentTextTest.html | 4 +- .../class-use/DeletedAssignmentTest.html | 4 +- .../class-use/EffectiveRateTest.html | 4 +- .../mpxj/junit/assignment/package-frame.html | 2 +- .../junit/assignment/package-summary.html | 4 +- .../mpxj/junit/assignment/package-tree.html | 4 +- .../sf/mpxj/junit/assignment/package-use.html | 4 +- .../junit/calendar/CalendarCalendarsTest.html | 4 +- .../junit/calendar/InvalidCalendarTest.html | 4 +- .../calendar/MultiDayExceptionsTest.html | 4 +- .../calendar/RecurringExceptionsTest.html | 4 +- .../class-use/CalendarCalendarsTest.html | 4 +- .../class-use/InvalidCalendarTest.html | 4 +- .../class-use/MultiDayExceptionsTest.html | 4 +- .../class-use/RecurringExceptionsTest.html | 4 +- .../sf/mpxj/junit/calendar/package-frame.html | 2 +- .../mpxj/junit/calendar/package-summary.html | 4 +- .../sf/mpxj/junit/calendar/package-tree.html | 4 +- .../sf/mpxj/junit/calendar/package-use.html | 4 +- .../class-use/AvailabilityTableTest.html | 4 +- .../junit/class-use/AvailabilityTest.html | 4 +- .../CalendarExceptionPrecedenceTest.html | 4 +- .../junit/class-use/CombinedCalendarTest.html | 4 +- .../junit/class-use/CostRateTableTest.html | 4 +- .../junit/class-use/CustomerDataTest.html | 4 +- .../mpxj/junit/class-use/DateUtilityTest.html | 4 +- .../sf/mpxj/junit/class-use/DurationTest.html | 4 +- .../mpxj/junit/class-use/FieldReporter.html | 4 +- .../sf/mpxj/junit/class-use/FileUtility.html | 4 +- .../mpxj/junit/class-use/LocaleDataTest.html | 4 +- .../sf/mpxj/junit/class-use/LocaleTest.html | 4 +- .../junit/class-use/MppAssignmentTest.html | 4 +- .../junit/class-use/MppAutoFilterTest.html | 4 +- .../mpxj/junit/class-use/MppBarStyleTest.html | 4 +- .../mpxj/junit/class-use/MppBaselineTest.html | 4 +- .../mpxj/junit/class-use/MppCalendarTest.html | 4 +- .../mpxj/junit/class-use/MppColumnsTest.html | 4 +- .../mpxj/junit/class-use/MppEmbeddedTest.html | 4 +- .../junit/class-use/MppEnterpriseTest.html | 4 +- .../junit/class-use/MppFilterLogicTest.html | 4 +- .../mpxj/junit/class-use/MppFilterTest.html | 4 +- .../sf/mpxj/junit/class-use/MppGanttTest.html | 4 +- .../mpxj/junit/class-use/MppGraphIndTest.html | 4 +- .../sf/mpxj/junit/class-use/MppGroupTest.html | 4 +- .../mpxj/junit/class-use/MppNullTaskTest.html | 4 +- .../mpxj/junit/class-use/MppPasswordTest.html | 4 +- .../class-use/MppProjectPropertiesTest.html | 4 +- .../junit/class-use/MppRecurringTest.html | 4 +- .../junit/class-use/MppResourceFlagsTest.html | 4 +- .../mpxj/junit/class-use/MppResourceTest.html | 4 +- .../junit/class-use/MppSubprojectTest.html | 4 +- .../junit/class-use/MppTaskFlagsTest.html | 4 +- .../sf/mpxj/junit/class-use/MppTaskTest.html | 4 +- .../junit/class-use/MppViewStateTest.html | 4 +- .../sf/mpxj/junit/class-use/MppViewTest.html | 4 +- .../mpxj/junit/class-use/MppXmlCompare.html | 4 +- .../sf/mpxj/junit/class-use/MpxjAssert.html | 4 +- .../sf/mpxj/junit/class-use/MpxjTestData.html | 4 +- .../mpxj/junit/class-use/MpxjTestSuite.html | 4 +- .../junit/class-use/PlannerCalendarTest.html | 4 +- .../junit/class-use/PlannerResourceTest.html | 4 +- .../ProjectCalendarExceptionTest.html | 4 +- .../junit/class-use/ProjectCalendarTest.html | 4 +- .../mpxj/junit/class-use/ProjectUtility.html | 4 +- .../mpxj/junit/class-use/RateHelperTest.html | 4 +- .../junit/class-use/RecurringDataTest.html | 4 +- .../class-use/ResourceHierarchyTest.html | 4 +- .../sf/mpxj/junit/class-use/SemVerTest.html | 4 +- .../sf/mpxj/junit/class-use/SlackTest.html | 4 +- .../mpxj/junit/class-use/SplitTaskTest.html | 4 +- .../mpxj/junit/class-use/TimephasedTest.html | 4 +- .../TimephasedWorkCostSegmentTest.html | 4 +- ...TimephasedWorkSegmentManualOffsetTest.html | 4 +- .../TimephasedWorkSegmentManualTest.html | 4 +- .../class-use/TimephasedWorkSegmentTest.html | 4 +- .../junit/class-use/TimescaleUtilityTest.html | 4 +- .../XerRelationshipLagCalendarTest.html | 4 +- .../XmlRelationshipLagCalendarTest.html | 4 +- .../net/sf/mpxj/junit/legacy/BasicTest.html | 4 +- .../junit/legacy/class-use/BasicTest.html | 4 +- .../sf/mpxj/junit/legacy/package-frame.html | 2 +- .../sf/mpxj/junit/legacy/package-summary.html | 4 +- .../sf/mpxj/junit/legacy/package-tree.html | 4 +- .../net/sf/mpxj/junit/legacy/package-use.html | 4 +- .../net/sf/mpxj/junit/package-frame.html | 2 +- .../net/sf/mpxj/junit/package-summary.html | 4 +- .../net/sf/mpxj/junit/package-tree.html | 4 +- .../net/sf/mpxj/junit/package-use.html | 4 +- .../PrimaveraDatabaseReaderTest.html | 4 +- .../PrimaveraDatabaseReaderTest.html | 4 +- .../mpxj/junit/primavera/package-frame.html | 2 +- .../mpxj/junit/primavera/package-summary.html | 4 +- .../sf/mpxj/junit/primavera/package-tree.html | 4 +- .../sf/mpxj/junit/primavera/package-use.html | 4 +- .../sf/mpxj/junit/project/DataLinksTest.html | 4 +- .../project/DefaultDurationFormatTest.html | 4 +- .../project/ProjectPropertiesOnlyTest.html | 4 +- .../junit/project/ProjectPropertiesTest.html | 4 +- .../junit/project/ProjectValueListsTest.html | 4 +- .../mpxj/junit/project/TaskContainerTest.html | 4 +- .../project/class-use/DataLinksTest.html | 4 +- .../class-use/DefaultDurationFormatTest.html | 4 +- .../class-use/ProjectPropertiesOnlyTest.html | 4 +- .../class-use/ProjectPropertiesTest.html | 4 +- .../class-use/ProjectValueListsTest.html | 4 +- .../project/class-use/TaskContainerTest.html | 4 +- .../sf/mpxj/junit/project/package-frame.html | 2 +- .../mpxj/junit/project/package-summary.html | 4 +- .../sf/mpxj/junit/project/package-tree.html | 4 +- .../sf/mpxj/junit/project/package-use.html | 4 +- .../junit/resource/MppResourceTypeTest.html | 4 +- .../junit/resource/ResourceFlagsTest.html | 4 +- .../mpxj/junit/resource/ResourceMiscTest.html | 4 +- .../junit/resource/ResourceNumbersTest.html | 4 +- .../mpxj/junit/resource/ResourceTextTest.html | 4 +- .../mpxj/junit/resource/ResourceTypeTest.html | 4 +- .../class-use/MppResourceTypeTest.html | 4 +- .../resource/class-use/ResourceFlagsTest.html | 4 +- .../resource/class-use/ResourceMiscTest.html | 4 +- .../class-use/ResourceNumbersTest.html | 4 +- .../resource/class-use/ResourceTextTest.html | 4 +- .../resource/class-use/ResourceTypeTest.html | 4 +- .../sf/mpxj/junit/resource/package-frame.html | 2 +- .../mpxj/junit/resource/package-summary.html | 4 +- .../sf/mpxj/junit/resource/package-tree.html | 4 +- .../sf/mpxj/junit/resource/package-use.html | 4 +- .../sf/mpxj/junit/task/TaskBaselinesTest.html | 4 +- .../net/sf/mpxj/junit/task/TaskCostsTest.html | 4 +- .../net/sf/mpxj/junit/task/TaskDatesTest.html | 4 +- .../sf/mpxj/junit/task/TaskDeletionTest.html | 4 +- .../sf/mpxj/junit/task/TaskDurationsTest.html | 4 +- .../sf/mpxj/junit/task/TaskFinishesTest.html | 4 +- .../net/sf/mpxj/junit/task/TaskFlagsTest.html | 4 +- .../net/sf/mpxj/junit/task/TaskLinksTest.html | 4 +- .../sf/mpxj/junit/task/TaskNumbersTest.html | 4 +- .../mpxj/junit/task/TaskOutlineCodesTest.html | 4 +- .../junit/task/TaskPercentCompleteTest.html | 4 +- .../sf/mpxj/junit/task/TaskStartsTest.html | 4 +- .../net/sf/mpxj/junit/task/TaskTextTest.html | 4 +- .../mpxj/junit/task/TaskTextValuesTest.html | 4 +- .../task/class-use/TaskBaselinesTest.html | 4 +- .../junit/task/class-use/TaskCostsTest.html | 4 +- .../junit/task/class-use/TaskDatesTest.html | 4 +- .../task/class-use/TaskDeletionTest.html | 4 +- .../task/class-use/TaskDurationsTest.html | 4 +- .../task/class-use/TaskFinishesTest.html | 4 +- .../junit/task/class-use/TaskFlagsTest.html | 4 +- .../junit/task/class-use/TaskLinksTest.html | 4 +- .../junit/task/class-use/TaskNumbersTest.html | 4 +- .../task/class-use/TaskOutlineCodesTest.html | 4 +- .../class-use/TaskPercentCompleteTest.html | 4 +- .../junit/task/class-use/TaskStartsTest.html | 4 +- .../junit/task/class-use/TaskTextTest.html | 4 +- .../task/class-use/TaskTextValuesTest.html | 4 +- .../net/sf/mpxj/junit/task/package-frame.html | 2 +- .../sf/mpxj/junit/task/package-summary.html | 4 +- .../net/sf/mpxj/junit/task/package-tree.html | 4 +- .../net/sf/mpxj/junit/task/package-use.html | 4 +- .../net/sf/mpxj/mspdi/XsdDurationTest.html | 4 +- .../mpxj/mspdi/class-use/XsdDurationTest.html | 4 +- .../net/sf/mpxj/mspdi/package-frame.html | 2 +- .../net/sf/mpxj/mspdi/package-summary.html | 4 +- .../net/sf/mpxj/mspdi/package-tree.html | 4 +- .../net/sf/mpxj/mspdi/package-use.html | 4 +- docs/testapidocs/overview-frame.html | 2 +- docs/testapidocs/overview-summary.html | 6 +- docs/testapidocs/overview-tree.html | 4 +- 2162 files changed, 6856 insertions(+), 6648 deletions(-) diff --git a/docs/CHANGELOG/index.html b/docs/CHANGELOG/index.html index ffd64654b7..d32acffc28 100644 --- a/docs/CHANGELOG/index.html +++ b/docs/CHANGELOG/index.html @@ -291,9 +291,18 @@
  • - + - 13.5.0 (unreleased) + 13.5.1 (unreleased) + + + +
  • + +
  • + + + 13.5.0 (2024-10-17) @@ -3966,9 +3975,18 @@
    • - + + + 13.5.1 (unreleased) + + + +
    • + +
    • + - 13.5.0 (unreleased) + 13.5.0 (2024-10-17) @@ -6285,10 +6303,13 @@

      Changelog

      -

      13.5.0 (unreleased)

      +

      13.5.1 (unreleased)

      +

      13.5.0 (2024-10-17)

      • Added support for reading and writing Resource Role Assignments for Primavera schedules. The Resource.getRoleAssignments() method retrieves a map representing the roles a resource is assigned to, along with the skill level for each assignment. The Resource.addRoleAssignment() and Resource.removeRoleAssignment() methods allow role assignments to be added and removed.
      • Added support for the Resource Primary Role attribute, which is read from and written to Primavera schedules.
      • +
      • Improve handling Boolean attributes with default values when reading XER files.
      • +
      • Added the getShowStartText, getShowFinishText and getShowDurationText methods to the Task class. When working with manually scheduled tasks in Microsoft Project, users can potentially supply arbitrary text for the Start, Finish and Duration attributes. Microsoft Project still stores appropriate values for these attributes, which can be accessed in MPXJ as Start, Finish and Duration, but where the user has supplied text, these attributes are available as Start Text, Finish Text, and Duration Text. The methods added by this change allow the caller to determine which version of each attribute should be shown to the user in order to replicate what they see in Microsoft Project.

      13.4.2 (2024-10-08)

        diff --git a/docs/apidocs/allclasses-frame.html b/docs/apidocs/allclasses-frame.html index e2889ebb83..8a16e15aab 100644 --- a/docs/apidocs/allclasses-frame.html +++ b/docs/apidocs/allclasses-frame.html @@ -4,7 +4,7 @@ -All Classes (MPXJ 13.4.2 API) +All Classes (MPXJ 13.5.0 API) diff --git a/docs/apidocs/allclasses-noframe.html b/docs/apidocs/allclasses-noframe.html index 9577aba947..0693570a37 100644 --- a/docs/apidocs/allclasses-noframe.html +++ b/docs/apidocs/allclasses-noframe.html @@ -4,7 +4,7 @@ -All Classes (MPXJ 13.4.2 API) +All Classes (MPXJ 13.5.0 API) diff --git a/docs/apidocs/constant-values.html b/docs/apidocs/constant-values.html index c62d7b84b2..9a4544782d 100644 --- a/docs/apidocs/constant-values.html +++ b/docs/apidocs/constant-values.html @@ -4,7 +4,7 @@ -Constant Field Values (MPXJ 13.4.2 API) +Constant Field Values (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,13 +19,13 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/asta/package-summary.html b/docs/apidocs/net/sf/mpxj/asta/package-summary.html index 69dde24b21..30322a9dbe 100644 --- a/docs/apidocs/net/sf/mpxj/asta/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/asta/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.asta (MPXJ 13.4.2 API) +net.sf.mpxj.asta (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/common/package-summary.html b/docs/apidocs/net/sf/mpxj/common/package-summary.html index b0e748ee56..a42721d2f0 100644 --- a/docs/apidocs/net/sf/mpxj/common/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/common/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.common (MPXJ 13.4.2 API) +net.sf.mpxj.common (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/conceptdraw/package-summary.html b/docs/apidocs/net/sf/mpxj/conceptdraw/package-summary.html index b9fa4cda6f..84e0b97093 100644 --- a/docs/apidocs/net/sf/mpxj/conceptdraw/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/conceptdraw/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.conceptdraw (MPXJ 13.4.2 API) +net.sf.mpxj.conceptdraw (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/conceptdraw/schema/package-summary.html b/docs/apidocs/net/sf/mpxj/conceptdraw/schema/package-summary.html index f4be8a61b0..3175bfa4d6 100644 --- a/docs/apidocs/net/sf/mpxj/conceptdraw/schema/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/conceptdraw/schema/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.conceptdraw.schema (MPXJ 13.4.2 API) +net.sf.mpxj.conceptdraw.schema (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/explorer/package-summary.html b/docs/apidocs/net/sf/mpxj/explorer/package-summary.html index 97460aaf90..d913cd166d 100644 --- a/docs/apidocs/net/sf/mpxj/explorer/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/explorer/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.explorer (MPXJ 13.4.2 API) +net.sf.mpxj.explorer (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/fasttrack/package-summary.html b/docs/apidocs/net/sf/mpxj/fasttrack/package-summary.html index 564a7e8e7b..96742bf0bb 100644 --- a/docs/apidocs/net/sf/mpxj/fasttrack/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/fasttrack/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.fasttrack (MPXJ 13.4.2 API) +net.sf.mpxj.fasttrack (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/ganttdesigner/package-summary.html b/docs/apidocs/net/sf/mpxj/ganttdesigner/package-summary.html index 884b96f7bd..ead10ead7d 100644 --- a/docs/apidocs/net/sf/mpxj/ganttdesigner/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/ganttdesigner/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.ganttdesigner (MPXJ 13.4.2 API) +net.sf.mpxj.ganttdesigner (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/ganttdesigner/schema/package-summary.html b/docs/apidocs/net/sf/mpxj/ganttdesigner/schema/package-summary.html index f12cfa510a..a36b0198ba 100644 --- a/docs/apidocs/net/sf/mpxj/ganttdesigner/schema/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/ganttdesigner/schema/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.ganttdesigner.schema (MPXJ 13.4.2 API) +net.sf.mpxj.ganttdesigner.schema (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/ganttproject/package-summary.html b/docs/apidocs/net/sf/mpxj/ganttproject/package-summary.html index d5deb6eee2..94a4d6b8fb 100644 --- a/docs/apidocs/net/sf/mpxj/ganttproject/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/ganttproject/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.ganttproject (MPXJ 13.4.2 API) +net.sf.mpxj.ganttproject (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/ganttproject/schema/package-summary.html b/docs/apidocs/net/sf/mpxj/ganttproject/schema/package-summary.html index 67da1ea396..63d6c336aa 100644 --- a/docs/apidocs/net/sf/mpxj/ganttproject/schema/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/ganttproject/schema/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.ganttproject.schema (MPXJ 13.4.2 API) +net.sf.mpxj.ganttproject.schema (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/ikvm/package-summary.html b/docs/apidocs/net/sf/mpxj/ikvm/package-summary.html index 35279eed53..1138866f49 100644 --- a/docs/apidocs/net/sf/mpxj/ikvm/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/ikvm/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.ikvm (MPXJ 13.4.2 API) +net.sf.mpxj.ikvm (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/json/package-summary.html b/docs/apidocs/net/sf/mpxj/json/package-summary.html index 2030665815..dd94ab01db 100644 --- a/docs/apidocs/net/sf/mpxj/json/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/json/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.json (MPXJ 13.4.2 API) +net.sf.mpxj.json (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/listener/package-summary.html b/docs/apidocs/net/sf/mpxj/listener/package-summary.html index a9eb436907..b4935f84b3 100644 --- a/docs/apidocs/net/sf/mpxj/listener/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/listener/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.listener (MPXJ 13.4.2 API) +net.sf.mpxj.listener (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/merlin/package-summary.html b/docs/apidocs/net/sf/mpxj/merlin/package-summary.html index a16597b378..5bef638d2c 100644 --- a/docs/apidocs/net/sf/mpxj/merlin/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/merlin/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.merlin (MPXJ 13.4.2 API) +net.sf.mpxj.merlin (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/mpd/package-summary.html b/docs/apidocs/net/sf/mpxj/mpd/package-summary.html index 96e3759c75..455e1104be 100644 --- a/docs/apidocs/net/sf/mpxj/mpd/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/mpd/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.mpd (MPXJ 13.4.2 API) +net.sf.mpxj.mpd (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/mpp/package-summary.html b/docs/apidocs/net/sf/mpxj/mpp/package-summary.html index df6be5fcab..9e6ee55b6c 100644 --- a/docs/apidocs/net/sf/mpxj/mpp/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/mpp/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.mpp (MPXJ 13.4.2 API) +net.sf.mpxj.mpp (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/mpx/package-summary.html b/docs/apidocs/net/sf/mpxj/mpx/package-summary.html index d9c8cb1bf6..da60444763 100644 --- a/docs/apidocs/net/sf/mpxj/mpx/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/mpx/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.mpx (MPXJ 13.4.2 API) +net.sf.mpxj.mpx (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/mspdi/package-summary.html b/docs/apidocs/net/sf/mpxj/mspdi/package-summary.html index 74516579e5..d661418352 100644 --- a/docs/apidocs/net/sf/mpxj/mspdi/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/mspdi/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.mspdi (MPXJ 13.4.2 API) +net.sf.mpxj.mspdi (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/mspdi/schema/package-summary.html b/docs/apidocs/net/sf/mpxj/mspdi/schema/package-summary.html index fe9eea49f1..ae06b7e3a0 100644 --- a/docs/apidocs/net/sf/mpxj/mspdi/schema/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/mspdi/schema/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.mspdi.schema (MPXJ 13.4.2 API) +net.sf.mpxj.mspdi.schema (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/openplan/package-summary.html b/docs/apidocs/net/sf/mpxj/openplan/package-summary.html index 35a58af0f2..bac86adc45 100644 --- a/docs/apidocs/net/sf/mpxj/openplan/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/openplan/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.openplan (MPXJ 13.4.2 API) +net.sf.mpxj.openplan (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/package-summary.html b/docs/apidocs/net/sf/mpxj/package-summary.html index 72f4addc05..763cbe21ed 100644 --- a/docs/apidocs/net/sf/mpxj/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj (MPXJ 13.4.2 API) +net.sf.mpxj (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/phoenix/package-summary.html b/docs/apidocs/net/sf/mpxj/phoenix/package-summary.html index 3707337bd1..bf36ad714b 100644 --- a/docs/apidocs/net/sf/mpxj/phoenix/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/phoenix/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.phoenix (MPXJ 13.4.2 API) +net.sf.mpxj.phoenix (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/planner/package-summary.html b/docs/apidocs/net/sf/mpxj/planner/package-summary.html index b200ef8dbc..275590c538 100644 --- a/docs/apidocs/net/sf/mpxj/planner/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/planner/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.planner (MPXJ 13.4.2 API) +net.sf.mpxj.planner (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/planner/schema/package-summary.html b/docs/apidocs/net/sf/mpxj/planner/schema/package-summary.html index b3bbf1c6fc..019e521d06 100644 --- a/docs/apidocs/net/sf/mpxj/planner/schema/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/planner/schema/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.planner.schema (MPXJ 13.4.2 API) +net.sf.mpxj.planner.schema (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,14 +19,14 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/primavera/common/package-summary.html b/docs/apidocs/net/sf/mpxj/primavera/common/package-summary.html index bb947568e0..3c4e408494 100644 --- a/docs/apidocs/net/sf/mpxj/primavera/common/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/primavera/common/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.primavera.common (MPXJ 13.4.2 API) +net.sf.mpxj.primavera.common (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/primavera/p3/package-summary.html b/docs/apidocs/net/sf/mpxj/primavera/p3/package-summary.html index 71df54f984..426aa79f53 100644 --- a/docs/apidocs/net/sf/mpxj/primavera/p3/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/primavera/p3/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.primavera.p3 (MPXJ 13.4.2 API) +net.sf.mpxj.primavera.p3 (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/primavera/package-summary.html b/docs/apidocs/net/sf/mpxj/primavera/package-summary.html index 6d6071f1f7..bbe19a506c 100644 --- a/docs/apidocs/net/sf/mpxj/primavera/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/primavera/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.primavera (MPXJ 13.4.2 API) +net.sf.mpxj.primavera (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/primavera/schema/package-summary.html b/docs/apidocs/net/sf/mpxj/primavera/schema/package-summary.html index 91c5543da8..a1bcfe3918 100644 --- a/docs/apidocs/net/sf/mpxj/primavera/schema/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/primavera/schema/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.primavera.schema (MPXJ 13.4.2 API) +net.sf.mpxj.primavera.schema (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/primavera/suretrak/package-summary.html b/docs/apidocs/net/sf/mpxj/primavera/suretrak/package-summary.html index ab4aed5b3a..5e2d274469 100644 --- a/docs/apidocs/net/sf/mpxj/primavera/suretrak/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/primavera/suretrak/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.primavera.suretrak (MPXJ 13.4.2 API) +net.sf.mpxj.primavera.suretrak (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/projectcommander/package-summary.html b/docs/apidocs/net/sf/mpxj/projectcommander/package-summary.html index 2d882b20b6..5627e20d5a 100644 --- a/docs/apidocs/net/sf/mpxj/projectcommander/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/projectcommander/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.projectcommander (MPXJ 13.4.2 API) +net.sf.mpxj.projectcommander (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/projectlibre/package-summary.html b/docs/apidocs/net/sf/mpxj/projectlibre/package-summary.html index 9e0fe19d22..9e328a0ea6 100644 --- a/docs/apidocs/net/sf/mpxj/projectlibre/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/projectlibre/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.projectlibre (MPXJ 13.4.2 API) +net.sf.mpxj.projectlibre (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/reader/package-summary.html b/docs/apidocs/net/sf/mpxj/reader/package-summary.html index 53b9f0c96d..20463ac857 100644 --- a/docs/apidocs/net/sf/mpxj/reader/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/reader/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.reader (MPXJ 13.4.2 API) +net.sf.mpxj.reader (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/ruby/package-summary.html b/docs/apidocs/net/sf/mpxj/ruby/package-summary.html index d8596249b3..0579b51a93 100644 --- a/docs/apidocs/net/sf/mpxj/ruby/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/ruby/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.ruby (MPXJ 13.4.2 API) +net.sf.mpxj.ruby (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/sage/package-summary.html b/docs/apidocs/net/sf/mpxj/sage/package-summary.html index 0f720cce6e..6de7368510 100644 --- a/docs/apidocs/net/sf/mpxj/sage/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/sage/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.sage (MPXJ 13.4.2 API) +net.sf.mpxj.sage (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/sample/package-summary.html b/docs/apidocs/net/sf/mpxj/sample/package-summary.html index 8b9664f17a..f49ad775d1 100644 --- a/docs/apidocs/net/sf/mpxj/sample/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/sample/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.sample (MPXJ 13.4.2 API) +net.sf.mpxj.sample (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/sdef/package-summary.html b/docs/apidocs/net/sf/mpxj/sdef/package-summary.html index 22998f4b06..7410cb4411 100644 --- a/docs/apidocs/net/sf/mpxj/sdef/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/sdef/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.sdef (MPXJ 13.4.2 API) +net.sf.mpxj.sdef (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/synchro/package-summary.html b/docs/apidocs/net/sf/mpxj/synchro/package-summary.html index d74408703e..816cb242d7 100644 --- a/docs/apidocs/net/sf/mpxj/synchro/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/synchro/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.synchro (MPXJ 13.4.2 API) +net.sf.mpxj.synchro (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/turboproject/package-summary.html b/docs/apidocs/net/sf/mpxj/turboproject/package-summary.html index 9224500465..d1754e8028 100644 --- a/docs/apidocs/net/sf/mpxj/turboproject/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/turboproject/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.turboproject (MPXJ 13.4.2 API) +net.sf.mpxj.turboproject (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/utility/clean/package-summary.html b/docs/apidocs/net/sf/mpxj/utility/clean/package-summary.html index e845745b60..086c545840 100644 --- a/docs/apidocs/net/sf/mpxj/utility/clean/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/utility/clean/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.utility.clean (MPXJ 13.4.2 API) +net.sf.mpxj.utility.clean (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/utility/package-summary.html b/docs/apidocs/net/sf/mpxj/utility/package-summary.html index 58ad737b35..5d2417c42b 100644 --- a/docs/apidocs/net/sf/mpxj/utility/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/utility/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.utility (MPXJ 13.4.2 API) +net.sf.mpxj.utility (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/net/sf/mpxj/writer/package-summary.html b/docs/apidocs/net/sf/mpxj/writer/package-summary.html index 6512dcd364..8c8e4d7fba 100644 --- a/docs/apidocs/net/sf/mpxj/writer/package-summary.html +++ b/docs/apidocs/net/sf/mpxj/writer/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.writer (MPXJ 13.4.2 API) +net.sf.mpxj.writer (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/apidocs/overview-summary.html b/docs/apidocs/overview-summary.html index c0c659f4e6..3c3ba927e5 100644 --- a/docs/apidocs/overview-summary.html +++ b/docs/apidocs/overview-summary.html @@ -4,7 +4,7 @@ -Overview (MPXJ 13.4.2 API) +Overview (MPXJ 13.5.0 API) @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@ diff --git a/docs/testapidocs/allclasses-noframe.html b/docs/testapidocs/allclasses-noframe.html index 6481f2215a..f3a8c7de76 100644 --- a/docs/testapidocs/allclasses-noframe.html +++ b/docs/testapidocs/allclasses-noframe.html @@ -4,7 +4,7 @@ -All Classes (MPXJ 13.4.2 Test API) +All Classes (MPXJ 13.5.0 Test API) diff --git a/docs/testapidocs/constant-values.html b/docs/testapidocs/constant-values.html index e1a1197999..1179f98eb7 100644 --- a/docs/testapidocs/constant-values.html +++ b/docs/testapidocs/constant-values.html @@ -4,7 +4,7 @@ -Constant Field Values (MPXJ 13.4.2 Test API) +Constant Field Values (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/assignment/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/assignment/package-summary.html index 6d18a7cd71..1b3ab329b3 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/assignment/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/assignment/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit.assignment (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit.assignment (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/calendar/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/calendar/package-summary.html index d72dc9e97d..8c0ca2608a 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/calendar/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/calendar/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit.calendar (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit.calendar (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/legacy/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/legacy/package-summary.html index 7982b70127..d1a1445d45 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/legacy/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/legacy/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit.legacy (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit.legacy (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/package-summary.html index 1fa92e7db1..2f98b80780 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/primavera/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/primavera/package-summary.html index 6f0dcb1597..8c7dc423f5 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/primavera/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/primavera/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit.primavera (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit.primavera (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/project/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/project/package-summary.html index 2a6b379ce9..317c5422a3 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/project/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/project/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit.project (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit.project (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/resource/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/resource/package-summary.html index eacfbd70b9..c3c6a6a715 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/resource/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/resource/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit.resource (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit.resource (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/junit/task/package-summary.html b/docs/testapidocs/net/sf/mpxj/junit/task/package-summary.html index d3ac1485ac..916b9e71e8 100644 --- a/docs/testapidocs/net/sf/mpxj/junit/task/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/junit/task/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.junit.task (MPXJ 13.4.2 Test API) +net.sf.mpxj.junit.task (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/net/sf/mpxj/mspdi/package-summary.html b/docs/testapidocs/net/sf/mpxj/mspdi/package-summary.html index 88a7c8ad4c..94bb16fc08 100644 --- a/docs/testapidocs/net/sf/mpxj/mspdi/package-summary.html +++ b/docs/testapidocs/net/sf/mpxj/mspdi/package-summary.html @@ -4,7 +4,7 @@ -net.sf.mpxj.mspdi (MPXJ 13.4.2 Test API) +net.sf.mpxj.mspdi (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/testapidocs/overview-summary.html b/docs/testapidocs/overview-summary.html index dd86642d38..2a50b3069a 100644 --- a/docs/testapidocs/overview-summary.html +++ b/docs/testapidocs/overview-summary.html @@ -4,7 +4,7 @@ -Overview (MPXJ 13.4.2 Test API) +Overview (MPXJ 13.5.0 Test API) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@