GanttTXTOpen.java

Index Score
net.sourceforge.ganttproject.io
GanttProject

View: Reasons, Metrics, Source Code

These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.

MetricDescription
/*************************************************************************** GanttTXTOpen - A class for open a list of task from a txt file ------------------- begin : jun 2004 copyright : (C) 2004 by Thomas Alexandre email : alexthomas(at)ganttproject.org ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ package net.sourceforge.ganttproject.io; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.InputStreamReader; import net.sourceforge.ganttproject.GanttGraphicArea; import net.sourceforge.ganttproject.GanttProject; import net.sourceforge.ganttproject.GanttTask; import net.sourceforge.ganttproject.GanttTree2; import net.sourceforge.ganttproject.task.TaskManager; /** * @author athomas This class allo to open a list of task from a simple txt * file. Each line of the file are insert as a new task with the name as * text of the line. */ public class GanttTXTOpen { /** The tree that contains data */ GanttTree2 treePanel; /** The main frame */ GanttProject prj; /** The graphic area */ GanttGraphicArea area; private final TaskManager myTaskManager; /** Constructor. */ public GanttTXTOpen(GanttTree2 tree, GanttProject appli, GanttGraphicArea gra, TaskManager taskManager) { // Affect fields of the class this(taskManager); this.treePanel = tree; this.prj = appli; this.area = gra; } /** Constructor with a task manager. */ public GanttTXTOpen(TaskManager taskManager) { myTaskManager = taskManager; } /** Load tasks list from a text file. */ public boolean load(File f) { try { // Open a stream BufferedReader br = new BufferedReader(new InputStreamReader( new FileInputStream(f))); while (br.ready()) { // Read each lines String sTaskName = br.readLine(); // The test is used to skip the white line (with no text) if (!sTaskName.equals("")) { // Create the task GanttTask task = myTaskManager.createTask(); task.setColor(area.getTaskColor()); task.setName(sTaskName); task.setLength(1); myTaskManager.registerTask(task); treePanel.addObject(task, null, -1); } } } catch (Exception e) { return false; } return true; } }

The table below shows all metrics for GanttTXTOpen.java.

MetricValueDescription