net.sf.mpxj.sdef.ActivityRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mpxj Show documentation
Show all versions of mpxj Show documentation
Library that provides facilities to allow project information to be manipulated in Java and .Net. Supports a range of data formats: Microsoft Project Exchange (MPX), Microsoft Project (MPP,MPT), Microsoft Project Data Interchange (MSPDI XML), Microsoft Project Database (MPD), Planner (XML), Primavera (PM XML, XER, and database), Asta Powerproject (PP, MDB), Asta Easyplan (PP), Phoenix Project Manager (PPX), FastTrack Schedule (FTS), and the Standard Data Exchange Format (SDEF).
/*
* file: ActivityRecord.java
* author: Jon Iles
* copyright: (c) Packwood Software 2019
* date: 01/07/2019
*/
/*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
package net.sf.mpxj.sdef;
import java.util.UUID;
import net.sf.mpxj.Task;
/**
* SDEF Activity record.
*/
class ActivityRecord extends AbstractSDEFRecord
{
@Override protected SDEFField[] getFieldDefinitions()
{
return FIELDS;
}
@Override public void process(Context context)
{
String activityID = getString(0);
Task task = context.addTask(activityID);
task.setActivityID(activityID);
task.setName(getString(1));
task.setDuration(getDuration(2));
task.setConstraintDate(getDate(3));
task.setConstraintType(getConstraintType(4));
task.setCalendar(context.getCalendar(getString(5)));
task.setHammockCode("Y".equals(getString(6)));
task.setWorkersPerDay(getInteger(7));
task.setResponsibilityCode(getString(8));
task.setWorkAreaCode(getString(9));
task.setModOrClaimNumber(getString(10));
task.setBidItem(getString(11));
task.setPhaseOfWork(getString(12));
task.setCategoryOfWork(getString(13));
task.setFeatureOfWork(getString(14));
task.setGUID(UUID.nameUUIDFromBytes(activityID.getBytes()));
task.setMilestone(task.getDuration() != null && task.getDuration().getDuration() == 0);
context.getEventManager().fireTaskReadEvent(task);
}
private static final SDEFField[] FIELDS = new SDEFField[]
{
new StringField("Activity ID", 10),
new StringField("Activity Description", 30),
new DurationField("Activity Duration", 3),
new DateField("Constraint Date"),
new ConstraintTypeField("Constraint Type"),
new StringField("Calendar Code", 1),
new StringField("Hammock Code", 1),
new IntegerField("Workers Per Day", 3),
new StringField("Responsibility Code", 4),
new StringField("Work Area Code", 4),
new StringField("Mod of Claim No", 6),
new StringField("Bid Item", 6),
new StringField("Phase of Work", 2),
new StringField("Category of Work", 1),
new StringField("Feature of Work", 10)
};
}