diff --git a/src/main/java/net/sf/mpxj/ActivityCode.java b/src/main/java/net/sf/mpxj/ActivityCode.java index 91dee5f81e..3f3dc7502b 100644 --- a/src/main/java/net/sf/mpxj/ActivityCode.java +++ b/src/main/java/net/sf/mpxj/ActivityCode.java @@ -95,7 +95,7 @@ public Integer getScopeEpsUniqueID() * * @return sequence number */ - public Integer getSequenceNumber() + @Override public Integer getSequenceNumber() { return m_sequenceNumber; } @@ -105,7 +105,7 @@ public Integer getSequenceNumber() * * @return name */ - public String getName() + @Override public String getName() { return m_name; } @@ -115,7 +115,7 @@ public String getName() * * @return secure flag */ - public boolean getSecure() + @Override public boolean getSecure() { return m_secure; } @@ -125,7 +125,7 @@ public boolean getSecure() * * @return max length */ - public Integer getMaxLength() + @Override public Integer getMaxLength() { return m_maxLength; } @@ -136,7 +136,7 @@ public Integer getMaxLength() * * @return list of ActivityCodeValue instances */ - public List getValues() + @Override public List getValues() { return m_values; } @@ -148,7 +148,7 @@ public List getValues() * * @return list of ActivityCodeValue instances */ - public List getChildValues() + @Override public List getChildValues() { return m_values.stream().filter(v -> v.getParentValue() == null).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/ActivityCodeValue.java b/src/main/java/net/sf/mpxj/ActivityCodeValue.java index 4a07da5421..116ef94e22 100644 --- a/src/main/java/net/sf/mpxj/ActivityCodeValue.java +++ b/src/main/java/net/sf/mpxj/ActivityCodeValue.java @@ -84,7 +84,7 @@ public Integer getActivityCodeUniqueID() * * @return unique ID */ - public Integer getUniqueID() + @Override public Integer getUniqueID() { return m_uniqueID; } @@ -94,7 +94,7 @@ public Integer getUniqueID() * * @return sequence number */ - public Integer getSequenceNumber() + @Override public Integer getSequenceNumber() { return m_sequenceNumber; } @@ -104,7 +104,7 @@ public Integer getSequenceNumber() * * @return value name */ - public String getName() + @Override public String getName() { return m_name; } @@ -114,7 +114,7 @@ public String getName() * * @return value description */ - public String getDescription() + @Override public String getDescription() { return m_description; } @@ -166,7 +166,7 @@ public ActivityCodeValue getParentValue() * * @return parent ActivityCodeValue unique ID */ - public Integer getParentValueUniqueID() + @Override public Integer getParentValueUniqueID() { return m_parentValue == null ? null : m_parentValue.getUniqueID(); } @@ -176,7 +176,7 @@ public Integer getParentValueUniqueID() * * @return list of ActivityCodeValue instances */ - public List getChildValues() + @Override public List getChildValues() { return m_activityCode.getValues().stream().filter(a -> a.m_parentValue == this).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/Code.java b/src/main/java/net/sf/mpxj/Code.java index 014f652935..e349d51eb5 100644 --- a/src/main/java/net/sf/mpxj/Code.java +++ b/src/main/java/net/sf/mpxj/Code.java @@ -20,7 +20,6 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ - package net.sf.mpxj; import java.util.List; diff --git a/src/main/java/net/sf/mpxj/ProjectCode.java b/src/main/java/net/sf/mpxj/ProjectCode.java index c458a83e4b..5991ce7438 100644 --- a/src/main/java/net/sf/mpxj/ProjectCode.java +++ b/src/main/java/net/sf/mpxj/ProjectCode.java @@ -71,12 +71,12 @@ private ProjectCode(Builder builder) return m_maxLength; } - public List getValues() + @Override public List getValues() { return m_values; } - public List getChildValues() + @Override public List getChildValues() { return m_values.stream().filter(v -> v.getParentValue() == null).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/ProjectCodeValue.java b/src/main/java/net/sf/mpxj/ProjectCodeValue.java index fc41266448..ac3dce8f50 100644 --- a/src/main/java/net/sf/mpxj/ProjectCodeValue.java +++ b/src/main/java/net/sf/mpxj/ProjectCodeValue.java @@ -84,7 +84,7 @@ public Integer getProjectCodeUniqueID() { return m_description; } - + /** * Retrieve the parent ProjectCodeValue. * @@ -100,7 +100,7 @@ public ProjectCodeValue getParentValue() * * @return parent ProjectCodeValue unique ID */ - public Integer getParentValueUniqueID() + @Override public Integer getParentValueUniqueID() { return m_parentValue == null ? null : m_parentValue.getUniqueID(); } @@ -110,7 +110,7 @@ public Integer getParentValueUniqueID() * * @return list of ProjectCodeValue instances */ - public List getChildValues() + @Override public List getChildValues() { return m_projectCode.getValues().stream().filter(a -> a.m_parentValue == this).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/ResourceCode.java b/src/main/java/net/sf/mpxj/ResourceCode.java index a36fc4c698..2e158842de 100644 --- a/src/main/java/net/sf/mpxj/ResourceCode.java +++ b/src/main/java/net/sf/mpxj/ResourceCode.java @@ -71,12 +71,12 @@ private ResourceCode(Builder builder) return m_maxLength; } - public List getValues() + @Override public List getValues() { return m_values; } - public List getChildValues() + @Override public List getChildValues() { return m_values.stream().filter(v -> v.getParentValue() == null).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/ResourceCodeValue.java b/src/main/java/net/sf/mpxj/ResourceCodeValue.java index b5a91b507a..c49318e590 100644 --- a/src/main/java/net/sf/mpxj/ResourceCodeValue.java +++ b/src/main/java/net/sf/mpxj/ResourceCodeValue.java @@ -84,7 +84,7 @@ public Integer getResourceCodeUniqueID() { return m_description; } - + /** * Retrieve the parent ResourceCodeValue. * @@ -100,7 +100,7 @@ public ResourceCodeValue getParentValue() * * @return parent ResourceCodeValue unique ID */ - public Integer getParentValueUniqueID() + @Override public Integer getParentValueUniqueID() { return m_parentValue == null ? null : m_parentValue.getUniqueID(); } @@ -110,7 +110,7 @@ public Integer getParentValueUniqueID() * * @return list of ResourceCodeValue instances */ - public List getChildValues() + @Override public List getChildValues() { return m_resourceCode.getValues().stream().filter(a -> a.m_parentValue == this).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/RoleCode.java b/src/main/java/net/sf/mpxj/RoleCode.java index b4cb1d7542..9757fe142d 100644 --- a/src/main/java/net/sf/mpxj/RoleCode.java +++ b/src/main/java/net/sf/mpxj/RoleCode.java @@ -71,12 +71,12 @@ private RoleCode(Builder builder) return m_maxLength; } - public List getValues() + @Override public List getValues() { return m_values; } - public List getChildValues() + @Override public List getChildValues() { return m_values.stream().filter(v -> v.getParentValue() == null).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/RoleCodeValue.java b/src/main/java/net/sf/mpxj/RoleCodeValue.java index d53cea0f71..be56f15ed5 100644 --- a/src/main/java/net/sf/mpxj/RoleCodeValue.java +++ b/src/main/java/net/sf/mpxj/RoleCodeValue.java @@ -84,7 +84,7 @@ public Integer getRoleCodeUniqueID() { return m_description; } - + /** * Retrieve the parent RoleCodeValue. * @@ -100,7 +100,7 @@ public RoleCodeValue getParentValue() * * @return parent RoleCodeValue unique ID */ - public Integer getParentValueUniqueID() + @Override public Integer getParentValueUniqueID() { return m_parentValue == null ? null : m_parentValue.getUniqueID(); } @@ -110,7 +110,7 @@ public Integer getParentValueUniqueID() * * @return list of RoleCodeValue instances */ - public List getChildValues() + @Override public List getChildValues() { return m_roleCode.getValues().stream().filter(a -> a.m_parentValue == this).collect(Collectors.toList()); } diff --git a/src/main/java/net/sf/mpxj/Task.java b/src/main/java/net/sf/mpxj/Task.java index 394f3ab6ea..6ffe471f2e 100644 --- a/src/main/java/net/sf/mpxj/Task.java +++ b/src/main/java/net/sf/mpxj/Task.java @@ -4866,7 +4866,7 @@ public void setPrimaryResource(Resource resource) { setPrimaryResourceUniqueID(resource == null ? null : resource.getUniqueID()); } - + /** * Set the activity ID. * diff --git a/src/main/java/net/sf/mpxj/explorer/ProjectTreeController.java b/src/main/java/net/sf/mpxj/explorer/ProjectTreeController.java index bdcd318171..69ef1bd0fd 100644 --- a/src/main/java/net/sf/mpxj/explorer/ProjectTreeController.java +++ b/src/main/java/net/sf/mpxj/explorer/ProjectTreeController.java @@ -213,7 +213,7 @@ public void loadFile(File file, ProjectFile projectFile) MpxjTreeNode projectCodesFolder = new MpxjTreeNode("Project Codes"); projectNode.add(projectCodesFolder); - addCodes(projectCodesFolder,m_projectFile.getProjectCodes()); + addCodes(projectCodesFolder, m_projectFile.getProjectCodes()); m_model.setRoot(projectNode); } diff --git a/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileReader.java b/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileReader.java index 6314a28a42..c26480bdd2 100644 --- a/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileReader.java +++ b/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileReader.java @@ -441,7 +441,6 @@ private void processProjectProperties() rows = getRows("projpcat", "proj_id", m_projectID); m_reader.processProjectCodeAssignments(rows); - // // Process XER-specific attributes // diff --git a/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java b/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java index 9e896e5b45..cf29ec2a2f 100644 --- a/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java +++ b/src/main/java/net/sf/mpxj/primavera/PrimaveraXERFileWriter.java @@ -850,7 +850,7 @@ private void writeResourceCodeValues() */ private void writeResourceCodeAssignments() { - List> assignments = m_file.getResources().stream() + List> assignments = m_file.getResources().stream() .sorted(Comparator.comparing(Resource::getUniqueID)) .map(r -> r.getResourceCodeValues().values().stream().sorted(Comparator.comparing(ResourceCodeValue::getResourceCodeUniqueID)) .map(v -> populateResourceCodeAssignment(r.getUniqueID(), v)).collect(Collectors.toList())) @@ -1874,7 +1874,7 @@ interface ExportFunction private static final Map>> PROJECT_CODE_ASSIGNMENT_COLUMNS = new LinkedHashMap<>(); static { - PROJECT_CODE_ASSIGNMENT_COLUMNS.put("proj_id", v -> v.get("proj_id")) ; + PROJECT_CODE_ASSIGNMENT_COLUMNS.put("proj_id", v -> v.get("proj_id")); PROJECT_CODE_ASSIGNMENT_COLUMNS.put("proj_catg_type_id", v -> v.get("proj_catg_type_id")); PROJECT_CODE_ASSIGNMENT_COLUMNS.put("proj_catg_id", v -> v.get("proj_catg_id")); } @@ -1902,7 +1902,7 @@ interface ExportFunction private static final Map>> RESOURCE_CODE_ASSIGNMENT_COLUMNS = new LinkedHashMap<>(); static { - RESOURCE_CODE_ASSIGNMENT_COLUMNS.put("rsrc_id", v -> v.get("rsrc_id")) ; + RESOURCE_CODE_ASSIGNMENT_COLUMNS.put("rsrc_id", v -> v.get("rsrc_id")); RESOURCE_CODE_ASSIGNMENT_COLUMNS.put("rsrc_catg_type_id", v -> v.get("rsrc_catg_type_id")); RESOURCE_CODE_ASSIGNMENT_COLUMNS.put("rsrc_catg_id", v -> v.get("rsrc_catg_id")); } diff --git a/src/main/java/net/sf/mpxj/primavera/schema/APIBusinessObjects.java b/src/main/java/net/sf/mpxj/primavera/schema/APIBusinessObjects.java index 11b99baf03..6c58a0ed2b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/APIBusinessObjects.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/APIBusinessObjects.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeAssignmentType.java index 3d556ac1e9..3d3b8e218d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeType.java index adbd8ceb63..02fba999d8 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeTypeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeTypeType.java index 3bdeb8f5d5..7bc0c743fb 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeTypeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeTypeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeUpdateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeUpdateType.java index 3b65a02c11..29e05b1ebb 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeUpdateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCodeUpdateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCommentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCommentType.java index b81ae1b1dd..057f4e9d5a 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityCommentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityCommentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityExpenseType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityExpenseType.java index de091e9635..65d96d3348 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityExpenseType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityExpenseType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityFilterType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityFilterType.java index c1c90c164c..f8ef8af3e4 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityFilterType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityFilterType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteType.java index 535c3150bb..6e3b1b6587 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteUpdateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteUpdateType.java index 5a80b99532..83a450bd10 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteUpdateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityNoteUpdateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityOwnerType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityOwnerType.java index 78c2e873c0..fbbdc135ce 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityOwnerType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityOwnerType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityPeriodActualType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityPeriodActualType.java index c10f995d45..51f4d02fb5 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityPeriodActualType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityPeriodActualType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityRiskType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityRiskType.java index cf3c180531..aa9633e72c 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityRiskType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityRiskType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivitySpreadType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivitySpreadType.java index 0cb7333b99..2c648fc657 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivitySpreadType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivitySpreadType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepCreateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepCreateType.java index 324a512af6..904e54d982 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepCreateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepCreateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepDeleteType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepDeleteType.java index 77bd1d572d..5434bfc6c9 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepDeleteType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepDeleteType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateItemType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateItemType.java index cb60a06fd7..b983b9f3f7 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateItemType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateItemType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateType.java index 22f81e93da..7ef7fdcd7b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepTemplateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepType.java index b67270f789..0202d572f1 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepUpdateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepUpdateType.java index c2fbdd23c5..0d5a67fcb8 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepUpdateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityStepUpdateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityType.java index ad8fab27b3..f44ef621c9 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ActivityUpdateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ActivityUpdateType.java index f85327c2cd..262f06ee67 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ActivityUpdateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ActivityUpdateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/Adapter1.java b/src/main/java/net/sf/mpxj/primavera/schema/Adapter1.java index eea4bf549f..af9a0bb4f9 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/Adapter1.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/Adapter1.java @@ -2,14 +2,16 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; import jakarta.xml.bind.annotation.adapters.XmlAdapter; -public class Adapter1 extends XmlAdapter +public class Adapter1 + extends + XmlAdapter { @Override public String unmarshal(String value) diff --git a/src/main/java/net/sf/mpxj/primavera/schema/Adapter2.java b/src/main/java/net/sf/mpxj/primavera/schema/Adapter2.java index e779e2fd6e..0fb72a28e3 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/Adapter2.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/Adapter2.java @@ -2,14 +2,16 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; import jakarta.xml.bind.annotation.adapters.XmlAdapter; -public class Adapter2 extends XmlAdapter +public class Adapter2 + extends + XmlAdapter { @Override public Boolean unmarshal(String value) diff --git a/src/main/java/net/sf/mpxj/primavera/schema/Adapter3.java b/src/main/java/net/sf/mpxj/primavera/schema/Adapter3.java index 130d2041e2..c18211545c 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/Adapter3.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/Adapter3.java @@ -2,14 +2,16 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; import jakarta.xml.bind.annotation.adapters.XmlAdapter; -public class Adapter3 extends XmlAdapter +public class Adapter3 + extends + XmlAdapter { @Override public Double unmarshal(String value) diff --git a/src/main/java/net/sf/mpxj/primavera/schema/Adapter4.java b/src/main/java/net/sf/mpxj/primavera/schema/Adapter4.java index 308182b69d..ae50bf10d2 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/Adapter4.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/Adapter4.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; @@ -10,7 +10,9 @@ import java.time.LocalDateTime; import jakarta.xml.bind.annotation.adapters.XmlAdapter; -public class Adapter4 extends XmlAdapter +public class Adapter4 + extends + XmlAdapter { @Override public LocalDateTime unmarshal(String value) diff --git a/src/main/java/net/sf/mpxj/primavera/schema/Adapter5.java b/src/main/java/net/sf/mpxj/primavera/schema/Adapter5.java index 4a07723155..f8e157d4c1 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/Adapter5.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/Adapter5.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; @@ -10,7 +10,9 @@ import java.time.LocalTime; import jakarta.xml.bind.annotation.adapters.XmlAdapter; -public class Adapter5 extends XmlAdapter +public class Adapter5 + extends + XmlAdapter { @Override public LocalTime unmarshal(String value) diff --git a/src/main/java/net/sf/mpxj/primavera/schema/AlertType.java b/src/main/java/net/sf/mpxj/primavera/schema/AlertType.java index 194435047e..064236284e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/AlertType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/AlertType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/AutovueAttrType.java b/src/main/java/net/sf/mpxj/primavera/schema/AutovueAttrType.java index 59817c1bdd..7112b34762 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/AutovueAttrType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/AutovueAttrType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/BaselineProjectType.java b/src/main/java/net/sf/mpxj/primavera/schema/BaselineProjectType.java index 4daa2985e1..f1cb7c3464 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/BaselineProjectType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/BaselineProjectType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/BaselineTypeType.java b/src/main/java/net/sf/mpxj/primavera/schema/BaselineTypeType.java index 0b67dfc011..312e540427 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/BaselineTypeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/BaselineTypeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/CBSDurationSummaryType.java b/src/main/java/net/sf/mpxj/primavera/schema/CBSDurationSummaryType.java index cd0fff7c1f..95f0c4c67f 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/CBSDurationSummaryType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/CBSDurationSummaryType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/CBSType.java b/src/main/java/net/sf/mpxj/primavera/schema/CBSType.java index f91758c7f0..c6cd4d81eb 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/CBSType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/CBSType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/CalendarType.java b/src/main/java/net/sf/mpxj/primavera/schema/CalendarType.java index 2a8ab9ef0d..1e553d8356 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/CalendarType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/CalendarType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ChangeSetType.java b/src/main/java/net/sf/mpxj/primavera/schema/ChangeSetType.java index fee7db6e96..4683d8f93d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ChangeSetType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ChangeSetType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/CodeAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/CodeAssignmentType.java index a925ca244f..f420ce0207 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/CodeAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/CodeAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/CostAccountType.java b/src/main/java/net/sf/mpxj/primavera/schema/CostAccountType.java index a481612550..b3651093d0 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/CostAccountType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/CostAccountType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/CurrencyType.java b/src/main/java/net/sf/mpxj/primavera/schema/CurrencyType.java index f4462ffe3b..f262797745 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/CurrencyType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/CurrencyType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/DisplayCurrencyType.java b/src/main/java/net/sf/mpxj/primavera/schema/DisplayCurrencyType.java index 8ac8049e86..f22d0e951e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/DisplayCurrencyType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/DisplayCurrencyType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/DocumentCategoryType.java b/src/main/java/net/sf/mpxj/primavera/schema/DocumentCategoryType.java index babf3ba890..3ab4b8795e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/DocumentCategoryType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/DocumentCategoryType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/DocumentStatusCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/DocumentStatusCodeType.java index 43f90a58a0..d6560e74b9 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/DocumentStatusCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/DocumentStatusCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/DocumentType.java b/src/main/java/net/sf/mpxj/primavera/schema/DocumentType.java index bc7bcee378..551f421e9b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/DocumentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/DocumentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/EPSBudgetChangeLogType.java b/src/main/java/net/sf/mpxj/primavera/schema/EPSBudgetChangeLogType.java index a99e346410..d849fbd867 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/EPSBudgetChangeLogType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/EPSBudgetChangeLogType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/EPSFundingType.java b/src/main/java/net/sf/mpxj/primavera/schema/EPSFundingType.java index 6be9927c7c..cb8029c8fb 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/EPSFundingType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/EPSFundingType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/EPSNoteType.java b/src/main/java/net/sf/mpxj/primavera/schema/EPSNoteType.java index 21518e98a1..61fc12ca9a 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/EPSNoteType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/EPSNoteType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/EPSProjectWBSSpreadType.java b/src/main/java/net/sf/mpxj/primavera/schema/EPSProjectWBSSpreadType.java index 46d9226ec9..016bdc91ab 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/EPSProjectWBSSpreadType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/EPSProjectWBSSpreadType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/EPSSpendingPlanType.java b/src/main/java/net/sf/mpxj/primavera/schema/EPSSpendingPlanType.java index 6af671a98c..f4b5e82441 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/EPSSpendingPlanType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/EPSSpendingPlanType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/EPSType.java b/src/main/java/net/sf/mpxj/primavera/schema/EPSType.java index 9fa34d916e..3ff349c967 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/EPSType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/EPSType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ExpenseCategoryType.java b/src/main/java/net/sf/mpxj/primavera/schema/ExpenseCategoryType.java index aa3e6e73bb..e0758ad6f4 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ExpenseCategoryType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ExpenseCategoryType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodTemplateType.java b/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodTemplateType.java index b1fa26dbc2..b82e81689e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodTemplateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodTemplateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodType.java b/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodType.java index 3446dc638c..a6677745fd 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/FinancialPeriodType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/FundingSourceType.java b/src/main/java/net/sf/mpxj/primavera/schema/FundingSourceType.java index bca5f95a2e..06d526eade 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/FundingSourceType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/FundingSourceType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/GatewayDeploymentType.java b/src/main/java/net/sf/mpxj/primavera/schema/GatewayDeploymentType.java index a5529359e7..0c625dcdd6 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/GatewayDeploymentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/GatewayDeploymentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/GlobalPreferencesType.java b/src/main/java/net/sf/mpxj/primavera/schema/GlobalPreferencesType.java index 0223ec0045..472baa9621 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/GlobalPreferencesType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/GlobalPreferencesType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/GlobalPrivilegesType.java b/src/main/java/net/sf/mpxj/primavera/schema/GlobalPrivilegesType.java index 4de2cc4094..a90d7c5a84 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/GlobalPrivilegesType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/GlobalPrivilegesType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/GlobalProfileType.java b/src/main/java/net/sf/mpxj/primavera/schema/GlobalProfileType.java index 6a061669f6..ade18047ba 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/GlobalProfileType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/GlobalProfileType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/GlobalReplaceType.java b/src/main/java/net/sf/mpxj/primavera/schema/GlobalReplaceType.java index 154ec3d2d9..21129fcd2e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/GlobalReplaceType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/GlobalReplaceType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ImportOptionsTemplateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ImportOptionsTemplateType.java index f0a619e947..6252cbd202 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ImportOptionsTemplateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ImportOptionsTemplateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/IssueHistoryType.java b/src/main/java/net/sf/mpxj/primavera/schema/IssueHistoryType.java index f58f1e26d4..a6450d6603 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/IssueHistoryType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/IssueHistoryType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/JobServiceType.java b/src/main/java/net/sf/mpxj/primavera/schema/JobServiceType.java index 6452d2efa8..434baf71fe 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/JobServiceType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/JobServiceType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/LeanTaskType.java b/src/main/java/net/sf/mpxj/primavera/schema/LeanTaskType.java index 54106cfeaf..a984a274df 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/LeanTaskType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/LeanTaskType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/LocationType.java b/src/main/java/net/sf/mpxj/primavera/schema/LocationType.java index 22d304f9d9..f18bc3736b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/LocationType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/LocationType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/MSPTemplateType.java b/src/main/java/net/sf/mpxj/primavera/schema/MSPTemplateType.java index 94047d4653..02fe075d77 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/MSPTemplateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/MSPTemplateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/NotebookTopicType.java b/src/main/java/net/sf/mpxj/primavera/schema/NotebookTopicType.java index ab8bcdf9e2..1869abbb7e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/NotebookTopicType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/NotebookTopicType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/OBSType.java b/src/main/java/net/sf/mpxj/primavera/schema/OBSType.java index a0a3847366..f9be90e7e1 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/OBSType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/OBSType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ObjectFactory.java b/src/main/java/net/sf/mpxj/primavera/schema/ObjectFactory.java index c6f9fef124..a3f7b522ba 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ObjectFactory.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ObjectFactory.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/OverheadCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/OverheadCodeType.java index fb32a0ae58..4b4fcc6bfb 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/OverheadCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/OverheadCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/PortfolioTeamMemberType.java b/src/main/java/net/sf/mpxj/primavera/schema/PortfolioTeamMemberType.java index bf866aedfa..761811a457 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/PortfolioTeamMemberType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/PortfolioTeamMemberType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProfileType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProfileType.java index 110d143678..8a1fcc3edd 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProfileType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProfileType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectBudgetChangeLogType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectBudgetChangeLogType.java index c8b989653f..ca94995065 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectBudgetChangeLogType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectBudgetChangeLogType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeAssignmentType.java index 6b7c4bb756..b9b09924ad 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeType.java index 6968a4f7c4..c1f0fa40c5 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeTypeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeTypeType.java index 60972043d2..abbce123f4 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeTypeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectCodeTypeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectDeploymentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectDeploymentType.java index 0c97eb1a62..5c1640610d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectDeploymentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectDeploymentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectDocumentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectDocumentType.java index 2dac8e29f1..18ed8aa5cd 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectDocumentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectDocumentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectFundingType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectFundingType.java index 769efab1f6..be14dd688d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectFundingType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectFundingType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectIssueType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectIssueType.java index 95a4cde6a0..a1084c452b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectIssueType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectIssueType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectListType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectListType.java index a874c9b049..f0dc768962 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectListType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectListType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectNoteType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectNoteType.java index 5072c71071..648f409195 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectNoteType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectNoteType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectPortfolioType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectPortfolioType.java index 32085b0361..e0c0e9070e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectPortfolioType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectPortfolioType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectPrivilegesType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectPrivilegesType.java index 00e2885ec1..3ec9ccefab 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectPrivilegesType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectPrivilegesType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectProfileType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectProfileType.java index 86c74b57ef..dd0936fc5d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectProfileType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectProfileType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceCategoryType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceCategoryType.java index 9f87382afd..3e9cb9ef28 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceCategoryType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceCategoryType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceQuantityType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceQuantityType.java index a4eacdd86c..2d22c079f6 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceQuantityType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceQuantityType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceSpreadType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceSpreadType.java index 5a50f83366..5ba69b78a2 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceSpreadType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceSpreadType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceType.java index 49962a0218..cfff540b9a 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectResourceType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectRoleSpreadType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectRoleSpreadType.java index 2ba275e654..5bb9bf3bb3 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectRoleSpreadType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectRoleSpreadType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectSpendingPlanType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectSpendingPlanType.java index 89a679433e..66dbb9c07d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectSpendingPlanType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectSpendingPlanType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectThresholdType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectThresholdType.java index 2088d2b954..e3df7d8aee 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectThresholdType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectThresholdType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ProjectType.java b/src/main/java/net/sf/mpxj/primavera/schema/ProjectType.java index 02243f4e91..eaa64e848a 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ProjectType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ProjectType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RelationshipType.java b/src/main/java/net/sf/mpxj/primavera/schema/RelationshipType.java index 4f32e1b2ea..ddb645f56e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RelationshipType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RelationshipType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAccessType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAccessType.java index e72a07ebee..fb92653d26 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAccessType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAccessType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeAssignmentType.java index 8f75dab992..4507de0199 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeType.java index 7a0bafc1b5..a78190bb76 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeTypeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeTypeType.java index 22391f1511..a194d3f31c 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeTypeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCodeTypeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCreateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCreateType.java index 8a17148313..d09060a699 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCreateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentCreateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentPeriodActualType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentPeriodActualType.java index 11ccdc6f8e..5643ba274f 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentPeriodActualType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentPeriodActualType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentSpreadType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentSpreadType.java index 8687cfd14d..c32df5c22e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentSpreadType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentSpreadType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentType.java index 31fa3bf273..fb9cce886b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentUpdateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentUpdateType.java index 3aa12cde31..73aeaac41a 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentUpdateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceAssignmentUpdateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeAssignmentType.java index a9ed50f146..f1268a903d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeType.java index d54605e87e..ea17fa1aa8 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeTypeType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeTypeType.java index 4ade07ac3c..fc6987b266 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeTypeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCodeTypeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveType.java index 9f8117e39b..8c8fe33430 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveValuesType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveValuesType.java index 0db16d1471..a21b779d88 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveValuesType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceCurveValuesType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceHourType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceHourType.java index 3cefe8344e..73fca324cb 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceHourType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceHourType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceLocationType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceLocationType.java index 6bb2d53a31..d66b077961 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceLocationType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceLocationType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceRateType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceRateType.java index 7e4405fd2f..f61cb492b7 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceRateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceRateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceRequestType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceRequestType.java index b89e501aa0..fe6d9c979c 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceRequestType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceRequestType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceRoleType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceRoleType.java index 52c4db9a48..d629101d66 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceRoleType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceRoleType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceTeamType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceTeamType.java index 3f0b3170de..5c4ec02829 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceTeamType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceTeamType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ResourceType.java b/src/main/java/net/sf/mpxj/primavera/schema/ResourceType.java index 2018e07d21..5af9a440f3 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ResourceType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ResourceType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskCategoryType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskCategoryType.java index 7117a41f43..805a483241 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskCategoryType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskCategoryType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskImpactType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskImpactType.java index f1b2d2e651..555aa334d2 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskImpactType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskImpactType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixScoreType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixScoreType.java index 81e9c718ce..57bfd66db1 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixScoreType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixScoreType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixThresholdType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixThresholdType.java index 28bd2cc12c..1f684722b6 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixThresholdType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixThresholdType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixType.java index 81b1004021..efd5ee716f 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskMatrixType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionImpactType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionImpactType.java index ddfa5b5645..27d9375e3e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionImpactType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionImpactType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionType.java index 1f2981e152..f081ee58d8 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskResponseActionType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskResponsePlanType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskResponsePlanType.java index 56a7589e3d..1f18c7b6c5 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskResponsePlanType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskResponsePlanType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdLevelType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdLevelType.java index cdd3608430..35ee59129e 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdLevelType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdLevelType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdType.java index 961a7c56ae..067a33362c 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskThresholdType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RiskType.java b/src/main/java/net/sf/mpxj/primavera/schema/RiskType.java index 470b33d246..6729ca64a7 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RiskType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RiskType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeAssignmentType.java index 1c7417c2e4..b7308a8adc 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeType.java index 510bf59722..06f91217bd 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeTypeType.java b/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeTypeType.java index f38224f2d9..7768a88ac0 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeTypeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RoleCodeTypeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RoleLimitType.java b/src/main/java/net/sf/mpxj/primavera/schema/RoleLimitType.java index 2215befbec..120eec2e6f 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RoleLimitType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RoleLimitType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RoleRateType.java b/src/main/java/net/sf/mpxj/primavera/schema/RoleRateType.java index 2b067d5d04..8783acf5d3 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RoleRateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RoleRateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RoleTeamType.java b/src/main/java/net/sf/mpxj/primavera/schema/RoleTeamType.java index 1113ab6a47..fb4c2a7413 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RoleTeamType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RoleTeamType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/RoleType.java b/src/main/java/net/sf/mpxj/primavera/schema/RoleType.java index 0ffaf2d707..efb7dc363c 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/RoleType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/RoleType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; @@ -63,6 +63,7 @@ * <element name="Responsibilities" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="SequenceNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ProjectRoleSpread" type="{http://xmlns.oracle.com/Primavera/P6/V23.12/API/BusinessObjects}ProjectRoleSpreadType" maxOccurs="unbounded" minOccurs="0"/> + * <element name="Code" type="{http://xmlns.oracle.com/Primavera/P6/V23.12/API/BusinessObjects}CodeAssignmentType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> @@ -84,7 +85,8 @@ "parentObjectId", "responsibilities", "sequenceNumber", - "projectRoleSpread" + "projectRoleSpread", + "code" }) public class RoleType { @@ -100,6 +102,7 @@ @XmlElement(name = "Responsibilities") @XmlJavaTypeAdapter(Adapter1.class) protected String responsibilities; @XmlElement(name = "SequenceNumber") protected Integer sequenceNumber; @XmlElement(name = "ProjectRoleSpread") protected List projectRoleSpread; + @XmlElement(name = "Code") protected List code; /** * Gets the value of the calculateCostFromUnits property. @@ -418,4 +421,35 @@ public List getProjectRoleSpread() return this.projectRoleSpread; } + /** + * Gets the value of the code property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the Jakarta XML Binding object. + * This is why there is not a set method for the code property. + * + *

+ * For example, to add a new item, do as follows: + *

+    *    getCode().add(newItem);
+    * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CodeAssignmentType } + * + * + */ + public List getCode() + { + if (code == null) + { + code = new ArrayList<>(); + } + return this.code; + } + } diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ScheduleCheckOptionType.java b/src/main/java/net/sf/mpxj/primavera/schema/ScheduleCheckOptionType.java index 23dc730e0f..4ba16dd08b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ScheduleCheckOptionType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ScheduleCheckOptionType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ScheduleOptionsType.java b/src/main/java/net/sf/mpxj/primavera/schema/ScheduleOptionsType.java index b6d9523a16..2308494f70 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ScheduleOptionsType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ScheduleOptionsType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ShiftPeriodType.java b/src/main/java/net/sf/mpxj/primavera/schema/ShiftPeriodType.java index 03d5e277f8..62146376f4 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ShiftPeriodType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ShiftPeriodType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ShiftType.java b/src/main/java/net/sf/mpxj/primavera/schema/ShiftType.java index bb9f33225f..978470a65f 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ShiftType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ShiftType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/StepUserDefinedValueUpdateType.java b/src/main/java/net/sf/mpxj/primavera/schema/StepUserDefinedValueUpdateType.java index b6035a3624..4a7b7ec186 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/StepUserDefinedValueUpdateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/StepUserDefinedValueUpdateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/ThresholdParameterType.java b/src/main/java/net/sf/mpxj/primavera/schema/ThresholdParameterType.java index 9f293b67d2..0144114d9b 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/ThresholdParameterType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/ThresholdParameterType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetAuditType.java b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetAuditType.java index 4fa0e80dd8..40aa73c574 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetAuditType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetAuditType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetDelegateType.java b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetDelegateType.java index 8bd8582145..543d1ee754 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetDelegateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetDelegateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetPeriodType.java b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetPeriodType.java index a30a5f47c4..8803fad819 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetPeriodType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetPeriodType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetType.java b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetType.java index 8498247f9c..82be2c50c0 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/TimesheetType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/TimesheetType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UDFAssignmentType.java b/src/main/java/net/sf/mpxj/primavera/schema/UDFAssignmentType.java index 5dfe42972e..070ffe0968 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UDFAssignmentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UDFAssignmentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UDFCodeType.java b/src/main/java/net/sf/mpxj/primavera/schema/UDFCodeType.java index 3b6c824184..6d2280a6b6 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UDFCodeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UDFCodeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UDFTypeType.java b/src/main/java/net/sf/mpxj/primavera/schema/UDFTypeType.java index 0112e1a532..ae1a1e90b6 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UDFTypeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UDFTypeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UDFValueType.java b/src/main/java/net/sf/mpxj/primavera/schema/UDFValueType.java index 453a94f630..0444245e9f 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UDFValueType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UDFValueType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UnitOfMeasureType.java b/src/main/java/net/sf/mpxj/primavera/schema/UnitOfMeasureType.java index 3b34b2b555..02d212b0e2 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UnitOfMeasureType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UnitOfMeasureType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UpdateBaselineOptionType.java b/src/main/java/net/sf/mpxj/primavera/schema/UpdateBaselineOptionType.java index 63f2593093..01b270ef92 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UpdateBaselineOptionType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UpdateBaselineOptionType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UserConsentType.java b/src/main/java/net/sf/mpxj/primavera/schema/UserConsentType.java index bf06e020d0..dd4791f8d7 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UserConsentType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UserConsentType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UserDefinedValueUpdateType.java b/src/main/java/net/sf/mpxj/primavera/schema/UserDefinedValueUpdateType.java index 6d28866f06..d5d051ddd2 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UserDefinedValueUpdateType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UserDefinedValueUpdateType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UserFieldTitleType.java b/src/main/java/net/sf/mpxj/primavera/schema/UserFieldTitleType.java index e685b8a418..e2311fd61a 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UserFieldTitleType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UserFieldTitleType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UserInterfaceViewType.java b/src/main/java/net/sf/mpxj/primavera/schema/UserInterfaceViewType.java index 1e58ba269e..4d59190e04 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UserInterfaceViewType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UserInterfaceViewType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UserLicenseType.java b/src/main/java/net/sf/mpxj/primavera/schema/UserLicenseType.java index cd18813a89..05094d2c8d 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UserLicenseType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UserLicenseType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UserOBSType.java b/src/main/java/net/sf/mpxj/primavera/schema/UserOBSType.java index be4a0b3df8..32c3e49591 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UserOBSType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UserOBSType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/UserType.java b/src/main/java/net/sf/mpxj/primavera/schema/UserType.java index cab03be6df..f23e6e0df4 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/UserType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/UserType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/WBSCategoryType.java b/src/main/java/net/sf/mpxj/primavera/schema/WBSCategoryType.java index a6ed982044..60dd5a7670 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/WBSCategoryType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/WBSCategoryType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/WBSMilestoneType.java b/src/main/java/net/sf/mpxj/primavera/schema/WBSMilestoneType.java index a9f919e687..cd10f2cf2f 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/WBSMilestoneType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/WBSMilestoneType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/WBSType.java b/src/main/java/net/sf/mpxj/primavera/schema/WBSType.java index 63c16ccbf7..120c0d6dcf 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/WBSType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/WBSType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/WbsReviewersType.java b/src/main/java/net/sf/mpxj/primavera/schema/WbsReviewersType.java index b0a7fcdde0..5a1e179103 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/WbsReviewersType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/WbsReviewersType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/WorkTimeType.java b/src/main/java/net/sf/mpxj/primavera/schema/WorkTimeType.java index 01b030d12c..5110e3a6e7 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/WorkTimeType.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/WorkTimeType.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // package net.sf.mpxj.primavera.schema; diff --git a/src/main/java/net/sf/mpxj/primavera/schema/package-info.java b/src/main/java/net/sf/mpxj/primavera/schema/package-info.java index 62e3a2f014..0f675586f1 100644 --- a/src/main/java/net/sf/mpxj/primavera/schema/package-info.java +++ b/src/main/java/net/sf/mpxj/primavera/schema/package-info.java @@ -2,7 +2,7 @@ // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 // See https://eclipse-ee4j.github.io/jaxb-ri // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2024.04.25 at 10:03:41 AM BST +// Generated on: 2024.12.12 at 03:09:49 PM GMT // @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://xmlns.oracle.com/Primavera/P6/V23.12/API/BusinessObjects", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED) package net.sf.mpxj.primavera.schema;