code
stringlengths
73
34.1k
label
stringclasses
1 value
private List<MapRow> sort(List<MapRow> rows, final String attribute) { Collections.sort(rows, new Comparator<MapRow>() { @Override public int compare(MapRow o1, MapRow o2) { String value1 = o1.getString(attribute); String value2 = o2.getString(attribute); ...
java
private void updateDates(Task parentTask) { if (parentTask.hasChildTasks()) { Date plannedStartDate = null; Date plannedFinishDate = null; for (Task task : parentTask.getChildTasks()) { updateDates(task); plannedStartDate = DateHelper.min(plann...
java
protected Date parseNonNullDate(String str, ParsePosition pos) { Date result = null; for (int index = 0; index < m_formats.length; index++) { result = m_formats[index].parse(str, pos); if (pos.getIndex() != 0) { break; } result = null; ...
java
public void renumberIDs() { if (!isEmpty()) { Collections.sort(this); T firstEntity = get(0); int id = NumberHelper.getInt(firstEntity.getID()); if (id != 0) { id = 1; } for (T entity : this) { entity.setID(I...
java
public static Priority getInstance(int priority) { Priority result; if (priority >= LOWEST && priority <= DO_NOT_LEVEL && (priority % 100 == 0)) { result = VALUE[(priority / 100) - 1]; } else { result = new Priority(priority); } return (result); ...
java
private void processFile(InputStream is) throws MPXJException { try { InputStreamReader reader = new InputStreamReader(is, CharsetHelper.UTF8); Tokenizer tk = new ReaderTokenizer(reader) { @Override protected boolean startQuotedIsValid(StringBuilder buffer) ...
java
private void processFileType(String token) throws MPXJException { String version = token.substring(2).split(" ")[0]; //System.out.println(version); Class<? extends AbstractFileFormat> fileFormatClass = FILE_VERSION_MAP.get(Integer.valueOf(version)); if (fileFormatClass == null) { ...
java
private void processCalendars() throws SQLException { List<Row> rows = getTable("EXCEPTIONN"); Map<Integer, DayType> exceptionMap = m_reader.createExceptionTypeMap(rows); rows = getTable("WORK_PATTERN"); Map<Integer, Row> workPatternMap = m_reader.createWorkPatternMap(rows); rows = ne...
java
private List<Row> join(List<Row> leftRows, String leftColumn, String rightTable, List<Row> rightRows, String rightColumn) { List<Row> result = new LinkedList<Row>(); RowComparator leftComparator = new RowComparator(new String[] { leftColumn }); RowComparator rightComparator = ...
java
private List<Row> getTable(String name) { List<Row> result = m_tables.get(name); if (result == null) { result = Collections.emptyList(); } return result; }
java
private void readProjectProperties(Project ganttProject) { ProjectProperties mpxjProperties = m_projectFile.getProjectProperties(); mpxjProperties.setName(ganttProject.getName()); mpxjProperties.setCompany(ganttProject.getCompany()); mpxjProperties.setDefaultDurationUnits(TimeUnit.DAYS); ...
java
private void readCalendars(Project ganttProject) { m_mpxjCalendar = m_projectFile.addCalendar(); m_mpxjCalendar.setName(ProjectCalendar.DEFAULT_BASE_CALENDAR_NAME); Calendars gpCalendar = ganttProject.getCalendars(); setWorkingDays(m_mpxjCalendar, gpCalendar); setExceptions(m_mpxjCalen...
java
private void setWorkingDays(ProjectCalendar mpxjCalendar, Calendars gpCalendar) { DayTypes dayTypes = gpCalendar.getDayTypes(); DefaultWeek defaultWeek = dayTypes.getDefaultWeek(); if (defaultWeek == null) { mpxjCalendar.setWorkingDay(Day.SUNDAY, false); mpxjCalendar.setWork...
java
private void setExceptions(ProjectCalendar mpxjCalendar, Calendars gpCalendar) { List<net.sf.mpxj.ganttproject.schema.Date> dates = gpCalendar.getDate(); for (net.sf.mpxj.ganttproject.schema.Date date : dates) { addException(mpxjCalendar, date); } }
java
private void addException(ProjectCalendar mpxjCalendar, net.sf.mpxj.ganttproject.schema.Date date) { String year = date.getYear(); if (year == null || year.isEmpty()) { // In order to process recurring exceptions using MPXJ, we need a start and end date // to constrain the number ...
java
private void readResources(Project ganttProject) { Resources resources = ganttProject.getResources(); readResourceCustomPropertyDefinitions(resources); readRoleDefinitions(ganttProject); for (net.sf.mpxj.ganttproject.schema.Resource gpResource : resources.getResource()) { read...
java
private void readResourceCustomPropertyDefinitions(Resources gpResources) { CustomField field = m_projectFile.getCustomFields().getCustomField(ResourceField.TEXT1); field.setAlias("Phone"); for (CustomPropertyDefinition definition : gpResources.getCustomPropertyDefinition()) { // ...
java
private void readTaskCustomPropertyDefinitions(Tasks gpTasks) { for (Taskproperty definition : gpTasks.getTaskproperties().getTaskproperty()) { // // Ignore everything but custom values // if (!"custom".equals(definition.getType())) { continue; ...
java
private void readRoleDefinitions(Project gpProject) { m_roleDefinitions.put("Default:1", "project manager"); for (Roles roles : gpProject.getRoles()) { if ("Default".equals(roles.getRolesetName())) { continue; } for (Role role : roles.getRole()) ...
java
private void readResource(net.sf.mpxj.ganttproject.schema.Resource gpResource) { Resource mpxjResource = m_projectFile.addResource(); mpxjResource.setUniqueID(Integer.valueOf(NumberHelper.getInt(gpResource.getId()) + 1)); mpxjResource.setName(gpResource.getName()); mpxjResource.setEmailAddres...
java
private void readResourceCustomFields(net.sf.mpxj.ganttproject.schema.Resource gpResource, Resource mpxjResource) { // // Populate custom field default values // Map<FieldType, Object> customFields = new HashMap<FieldType, Object>(); for (Pair<FieldType, String> definition : m_resourceP...
java
private void readTaskCustomFields(net.sf.mpxj.ganttproject.schema.Task gpTask, Task mpxjTask) { // // Populate custom field default values // Map<FieldType, Object> customFields = new HashMap<FieldType, Object>(); for (Pair<FieldType, String> definition : m_taskPropertyDefinitions.value...
java
private void readTasks(Project gpProject) { Tasks tasks = gpProject.getTasks(); readTaskCustomPropertyDefinitions(tasks); for (net.sf.mpxj.ganttproject.schema.Task task : tasks.getTask()) { readTask(m_projectFile, task); } }
java
private void readTask(ChildTaskContainer mpxjParent, net.sf.mpxj.ganttproject.schema.Task gpTask) { Task mpxjTask = mpxjParent.addTask(); mpxjTask.setUniqueID(Integer.valueOf(NumberHelper.getInt(gpTask.getId()) + 1)); mpxjTask.setName(gpTask.getName()); mpxjTask.setPercentageComplete(gpTask.g...
java
private Priority getPriority(Integer gpPriority) { int result; if (gpPriority == null) { result = Priority.MEDIUM; } else { int index = gpPriority.intValue(); if (index < 0 || index >= PRIORITY.length) { result = Priority.MEDIUM; ...
java
private void readRelationships(Project gpProject) { for (net.sf.mpxj.ganttproject.schema.Task gpTask : gpProject.getTasks().getTask()) { readRelationships(gpTask); } }
java
private void readRelationships(net.sf.mpxj.ganttproject.schema.Task gpTask) { for (Depend depend : gpTask.getDepend()) { Task task1 = m_projectFile.getTaskByUniqueID(Integer.valueOf(NumberHelper.getInt(gpTask.getId()) + 1)); Task task2 = m_projectFile.getTaskByUniqueID(Integer.valueOf(N...
java
private RelationType getRelationType(Integer gpType) { RelationType result = null; if (gpType != null) { int index = NumberHelper.getInt(gpType); if (index > 0 && index < RELATION.length) { result = RELATION[index]; } } if (result == null...
java
private void readResourceAssignments(Project gpProject) { Allocations allocations = gpProject.getAllocations(); if (allocations != null) { for (Allocation allocation : allocations.getAllocation()) { readResourceAssignment(allocation); } } }
java
private void readResourceAssignment(Allocation gpAllocation) { Integer taskID = Integer.valueOf(NumberHelper.getInt(gpAllocation.getTaskId()) + 1); Integer resourceID = Integer.valueOf(NumberHelper.getInt(gpAllocation.getResourceId()) + 1); Task task = m_projectFile.getTaskByUniqueID(taskID); ...
java
private void writeCustomFields() throws IOException { m_writer.writeStartList("custom_fields"); for (CustomField field : m_projectFile.getCustomFields()) { writeCustomField(field); } m_writer.writeEndList(); }
java
private void writeCustomField(CustomField field) throws IOException { if (field.getAlias() != null) { m_writer.writeStartObject(null); m_writer.writeNameValuePair("field_type_class", field.getFieldType().getFieldTypeClass().name().toLowerCase()); m_writer.writeNameValuePair("fi...
java
private void writeProperties() throws IOException { writeAttributeTypes("property_types", ProjectField.values()); writeFields("property_values", m_projectFile.getProjectProperties(), ProjectField.values()); }
java
private void writeResources() throws IOException { writeAttributeTypes("resource_types", ResourceField.values()); m_writer.writeStartList("resources"); for (Resource resource : m_projectFile.getResources()) { writeFields(null, resource, ResourceField.values()); } m_write...
java
private void writeTasks() throws IOException { writeAttributeTypes("task_types", TaskField.values()); m_writer.writeStartList("tasks"); for (Task task : m_projectFile.getChildTasks()) { writeTask(task); } m_writer.writeEndList(); }
java
private void writeTask(Task task) throws IOException { writeFields(null, task, TaskField.values()); for (Task child : task.getChildTasks()) { writeTask(child); } }
java
private void writeAssignments() throws IOException { writeAttributeTypes("assignment_types", AssignmentField.values()); m_writer.writeStartList("assignments"); for (ResourceAssignment assignment : m_projectFile.getResourceAssignments()) { writeFields(null, assignment, AssignmentFiel...
java
private void writeAttributeTypes(String name, FieldType[] types) throws IOException { m_writer.writeStartObject(name); for (FieldType field : types) { m_writer.writeNameValuePair(field.name().toLowerCase(), field.getDataType().getValue()); } m_writer.writeEndObject(); }
java
private void writeFields(String objectName, FieldContainer container, FieldType[] fields) throws IOException { m_writer.writeStartObject(objectName); for (FieldType field : fields) { Object value = container.getCurrentValue(field); if (value != null) { writeFi...
java
private void writeIntegerField(String fieldName, Object value) throws IOException { int val = ((Number) value).intValue(); if (val != 0) { m_writer.writeNameValuePair(fieldName, val); } }
java
private void writeDoubleField(String fieldName, Object value) throws IOException { double val = ((Number) value).doubleValue(); if (val != 0) { m_writer.writeNameValuePair(fieldName, val); } }
java
private void writeBooleanField(String fieldName, Object value) throws IOException { boolean val = ((Boolean) value).booleanValue(); if (val) { m_writer.writeNameValuePair(fieldName, val); } }
java
private void writeDurationField(String fieldName, Object value) throws IOException { if (value instanceof String) { m_writer.writeNameValuePair(fieldName + "_text", (String) value); } else { Duration val = (Duration) value; if (val.getDuration() != 0) ...
java
private void writeDateField(String fieldName, Object value) throws IOException { if (value instanceof String) { m_writer.writeNameValuePair(fieldName + "_text", (String) value); } else { Date val = (Date) value; m_writer.writeNameValuePair(fieldName, val); ...
java
private void writeTimeUnitsField(String fieldName, Object value) throws IOException { TimeUnit val = (TimeUnit) value; if (val != m_projectFile.getProjectProperties().getDefaultDurationUnits()) { m_writer.writeNameValuePair(fieldName, val.toString()); } }
java
private void writePriorityField(String fieldName, Object value) throws IOException { m_writer.writeNameValuePair(fieldName, ((Priority) value).getValue()); }
java
private void writeMap(String fieldName, Object value) throws IOException { @SuppressWarnings("unchecked") Map<String, Object> map = (Map<String, Object>) value; m_writer.writeStartObject(fieldName); for (Map.Entry<String, Object> entry : map.entrySet()) { Object entryValue = en...
java
private void writeStringField(String fieldName, Object value) throws IOException { String val = value.toString(); if (!val.isEmpty()) { m_writer.writeNameValuePair(fieldName, val); } }
java
private void writeRelationList(String fieldName, Object value) throws IOException { @SuppressWarnings("unchecked") List<Relation> list = (List<Relation>) value; if (!list.isEmpty()) { m_writer.writeStartList(fieldName); for (Relation relation : list) { m...
java
public static ResourceField getMpxjField(int value) { ResourceField result = null; if (value >= 0 && value < MPX_MPXJ_ARRAY.length) { result = MPX_MPXJ_ARRAY[value]; } return (result); }
java
public boolean evaluate(FieldContainer container, Map<GenericCriteriaPrompt, Object> promptValues) { boolean result = true; if (m_criteria != null) { result = m_criteria.evaluate(container, promptValues); // // If this row has failed, but it is a summary row, and we are ...
java
public void parseRawValue(String value) { int valueIndex = 0; int elementIndex = 0; m_elements.clear(); while (valueIndex < value.length() && elementIndex < m_elements.size()) { int elementLength = m_lengths.get(elementIndex).intValue(); if (elementIndex > 0) ...
java
public String getFormattedParentValue() { String result = null; if (m_elements.size() > 2) { result = joinElements(m_elements.size() - 2); } return result; }
java
private String joinElements(int length) { StringBuilder sb = new StringBuilder(); for (int index = 0; index < length; index++) { sb.append(m_elements.get(index)); } return sb.toString(); }
java
private void addTasks(MpxjTreeNode parentNode, ChildTaskContainer parent) { for (Task task : parent.getChildTasks()) { final Task t = task; MpxjTreeNode childNode = new MpxjTreeNode(task, TASK_EXCLUDED_METHODS) { @Override public String toString() { ...
java
private void addResources(MpxjTreeNode parentNode, ProjectFile file) { for (Resource resource : file.getResources()) { final Resource r = resource; MpxjTreeNode childNode = new MpxjTreeNode(resource) { @Override public String toString() { ...
java
private void addCalendars(MpxjTreeNode parentNode, ProjectFile file) { for (ProjectCalendar calendar : file.getCalendars()) { addCalendar(parentNode, calendar); } }
java
private void addCalendar(MpxjTreeNode parentNode, final ProjectCalendar calendar) { MpxjTreeNode calendarNode = new MpxjTreeNode(calendar, CALENDAR_EXCLUDED_METHODS) { @Override public String toString() { return calendar.getName(); } }; parentNode.add(ca...
java
private void addCalendarDay(MpxjTreeNode parentNode, ProjectCalendar calendar, final Day day) { MpxjTreeNode dayNode = new MpxjTreeNode(day) { @Override public String toString() { return day.name(); } }; parentNode.add(dayNode); addHours(dayNode, c...
java
private void addHours(MpxjTreeNode parentNode, ProjectCalendarDateRanges hours) { for (DateRange range : hours) { final DateRange r = range; MpxjTreeNode rangeNode = new MpxjTreeNode(range) { @Override public String toString() { return m_t...
java
private void addCalendarException(MpxjTreeNode parentNode, final ProjectCalendarException exception) { MpxjTreeNode exceptionNode = new MpxjTreeNode(exception, CALENDAR_EXCEPTION_EXCLUDED_METHODS) { @Override public String toString() { return m_dateFormat.format(exception.ge...
java
private void addGroups(MpxjTreeNode parentNode, ProjectFile file) { for (Group group : file.getGroups()) { final Group g = group; MpxjTreeNode childNode = new MpxjTreeNode(group) { @Override public String toString() { return g.getName(); ...
java
private void addCustomFields(MpxjTreeNode parentNode, ProjectFile file) { for (CustomField field : file.getCustomFields()) { final CustomField c = field; MpxjTreeNode childNode = new MpxjTreeNode(field) { @Override public String toString() { ...
java
private void addViews(MpxjTreeNode parentNode, ProjectFile file) { for (View view : file.getViews()) { final View v = view; MpxjTreeNode childNode = new MpxjTreeNode(view) { @Override public String toString() { return v.getName(); ...
java
private void addTables(MpxjTreeNode parentNode, ProjectFile file) { for (Table table : file.getTables()) { final Table t = table; MpxjTreeNode childNode = new MpxjTreeNode(table, TABLE_EXCLUDED_METHODS) { @Override public String toString() { ...
java
private void addColumns(MpxjTreeNode parentNode, Table table) { for (Column column : table.getColumns()) { final Column c = column; MpxjTreeNode childNode = new MpxjTreeNode(column) { @Override public String toString() { return c.getTitle(...
java
private void addFilters(MpxjTreeNode parentNode, List<Filter> filters) { for (Filter field : filters) { final Filter f = field; MpxjTreeNode childNode = new MpxjTreeNode(field) { @Override public String toString() { return f.getName(); ...
java
private void addAssignments(MpxjTreeNode parentNode, ProjectFile file) { for (ResourceAssignment assignment : file.getResourceAssignments()) { final ResourceAssignment a = assignment; MpxjTreeNode childNode = new MpxjTreeNode(a) { @Override public String toString() ...
java
public void saveFile(File file, String type) { try { Class<? extends ProjectWriter> fileClass = WRITER_MAP.get(type); if (fileClass == null) { throw new IllegalArgumentException("Cannot write files of type: " + type); } ProjectWriter writer = file...
java
private static Set<String> excludedMethods(String... methodNames) { Set<String> set = new HashSet<String>(MpxjTreeNode.DEFAULT_EXCLUDED_METHODS); set.addAll(Arrays.asList(methodNames)); return set; }
java
@Override public void close() throws IOException { long skippedLast = 0; if (m_remaining > 0) { skippedLast = skip(m_remaining); while (m_remaining > 0 && skippedLast > 0) { skippedLast = skip(m_remaining); } } }
java
public static void setLocale(ProjectProperties properties, Locale locale) { properties.setMpxDelimiter(LocaleData.getChar(locale, LocaleData.FILE_DELIMITER)); properties.setMpxProgramName(LocaleData.getString(locale, LocaleData.PROGRAM_NAME)); properties.setMpxCodePage((CodePage) LocaleData.getObje...
java
public String getTitle(Locale locale) { String result = null; if (m_title != null) { result = m_title; } else { if (m_fieldType != null) { result = m_project.getCustomFields().getCustomField(m_fieldType).getAlias(); if (result ==...
java
public static AccrueType getInstance(String type, Locale locale) { AccrueType result = null; String[] typeNames = LocaleData.getStringArray(locale, LocaleData.ACCRUE_TYPES); for (int loop = 0; loop < typeNames.length; loop++) { if (typeNames[loop].equalsIgnoreCase(type) == true) ...
java
public void process(Connection connection, String directory) throws Exception { connection.setAutoCommit(true); // // Retrieve meta data about the connection // DatabaseMetaData dmd = connection.getMetaData(); String[] types = { "TABLE" }; FileWriter ...
java
private String escapeText(StringBuilder sb, String text) { int length = text.length(); char c; sb.setLength(0); for (int loop = 0; loop < length; loop++) { c = text.charAt(loop); switch (c) { case '<': { sb.append("&lt...
java
public static String rset(String input, int width) { String result; // result to return StringBuilder pad = new StringBuilder(); if (input == null) { for (int i = 0; i < width - 1; i++) { pad.append(' '); // put blanks into buffer } result = " "...
java
public static String workDays(ProjectCalendar input) { StringBuilder result = new StringBuilder(); DayType[] test = input.getDays(); // get the array from MPXJ ProjectCalendar for (DayType i : test) { // go through every day in the given array if (i == DayType.NON_WORKING) {...
java
public static File writeStreamToTempFile(InputStream inputStream, String tempFileSuffix) throws IOException { FileOutputStream outputStream = null; try { File file = File.createTempFile("mpxj", tempFileSuffix); outputStream = new FileOutputStream(file); byte[] buffer = n...
java
public static Record getRecord(String text) { Record root; try { root = new Record(text); } // // I've come across invalid calendar data in an otherwise fine Primavera // database belonging to a customer. We deal with this gracefully here // rather than prop...
java
public Record getChild(String key) { Record result = null; if (key != null) { for (Record record : m_records) { if (key.equals(record.getField())) { result = record; break; } } } return result; ...
java
private int getClosingParenthesisPosition(String text, int opening) { if (text.charAt(opening) != '(') { return -1; } int count = 0; for (int i = opening; i < text.length(); i++) { char c = text.charAt(i); switch (c) { case '(': ...
java
public static final long getLong(byte[] data, int offset) { if (data.length != 8) { throw new UnexpectedStructureException(); } long result = 0; int i = offset; for (int shiftBy = 0; shiftBy < 64; shiftBy += 8) { result |= ((long) (data[i] & 0xff)) << shif...
java
public static final TimeUnit getTimeUnit(int value) { TimeUnit result = null; switch (value) { case 1: { // Appears to mean "use the document format" result = TimeUnit.ELAPSED_DAYS; break; } case 2: { res...
java
public static int skipToNextMatchingShort(byte[] buffer, int offset, int value) { int nextOffset = offset; while (getShort(buffer, nextOffset) != value) { ++nextOffset; } nextOffset += 2; return nextOffset; }
java
public static final String hexdump(byte[] buffer, int offset, int length, boolean ascii, int columns, String prefix) { StringBuilder sb = new StringBuilder(); if (buffer != null) { int index = offset; DecimalFormat df = new DecimalFormat("00000"); while (index < (offset ...
java
public void generateWBS(Task parent) { String wbs; if (parent == null) { if (NumberHelper.getInt(getUniqueID()) == 0) { wbs = "0"; } else { wbs = Integer.toString(getParentFile().getChildTasks().size() + 1); } } ...
java
public void generateOutlineNumber(Task parent) { String outline; if (parent == null) { if (NumberHelper.getInt(getUniqueID()) == 0) { outline = "0"; } else { outline = Integer.toString(getParentFile().getChildTasks().size() + 1);...
java
@Override public Task addTask() { ProjectFile parent = getParentFile(); Task task = new Task(parent, this); m_children.add(task); parent.getTasks().add(task); setSummary(true); return (task); }
java
public void addChildTask(Task child, int childOutlineLevel) { int outlineLevel = NumberHelper.getInt(getOutlineLevel()); if ((outlineLevel + 1) == childOutlineLevel) { m_children.add(child); setSummary(true); } else { if (m_children.isEmpty() == false) ...
java
public void addChildTask(Task child) { child.m_parent = this; m_children.add(child); setSummary(true); if (getParentFile().getProjectConfig().getAutoOutlineLevel() == true) { child.setOutlineLevel(Integer.valueOf(NumberHelper.getInt(getOutlineLevel()) + 1)); } }
java
public void addChildTaskBefore(Task child, Task previousSibling) { int index = m_children.indexOf(previousSibling); if (index == -1) { m_children.add(child); } else { m_children.add(index, child); } child.m_parent = this; setSummary(true); ...
java
public void removeChildTask(Task child) { if (m_children.remove(child)) { child.m_parent = null; } setSummary(!m_children.isEmpty()); }
java
public ResourceAssignment addResourceAssignment(Resource resource) { ResourceAssignment assignment = getExistingResourceAssignment(resource); if (assignment == null) { assignment = new ResourceAssignment(getParentFile(), this); m_assignments.add(assignment); getParentFil...
java
public void addResourceAssignment(ResourceAssignment assignment) { if (getExistingResourceAssignment(assignment.getResource()) == null) { m_assignments.add(assignment); getParentFile().getResourceAssignments().add(assignment); Resource resource = assignment.getResource(); ...
java
private ResourceAssignment getExistingResourceAssignment(Resource resource) { ResourceAssignment assignment = null; Integer resourceUniqueID = null; if (resource != null) { Iterator<ResourceAssignment> iter = m_assignments.iterator(); resourceUniqueID = resource.getUniqueID...
java
@SuppressWarnings("unchecked") public Relation addPredecessor(Task targetTask, RelationType type, Duration lag) { // // Ensure that we have a valid lag duration // if (lag == null) { lag = Duration.getInstance(0, TimeUnit.DAYS); } // // Retrieve the list of p...
java
@Override public void setID(Integer val) { ProjectFile parent = getParentFile(); Integer previous = getID(); if (previous != null) { parent.getTasks().unmapID(previous); } parent.getTasks().mapID(val, this); set(TaskField.ID, val); }
java
public Duration getBaselineDuration() { Object result = getCachedValue(TaskField.BASELINE_DURATION); if (result == null) { result = getCachedValue(TaskField.BASELINE_ESTIMATED_DURATION); } if (!(result instanceof Duration)) { result = null; } return ...
java
public String getBaselineDurationText() { Object result = getCachedValue(TaskField.BASELINE_DURATION); if (result == null) { result = getCachedValue(TaskField.BASELINE_ESTIMATED_DURATION); } if (!(result instanceof String)) { result = null; } return ...
java