// SetHierarchicalTasks:


// To show a task hierarchy in the task axis, each tasks "parent" must be
// identified in the data. You can then call GanttChartModel.setParentVariable()
// to assign the Parent variable role to the variable that identifies the
// parent tasks.

   import com.sas.graphics.components.ganttchart.GanttChart;
   import com.sas.graphics.components.GraphStyle;
   import com.sas.graphics.components.ganttchart.GanttChartModel;
   import com.sas.graphics.components.TableAxisModel;
   import com.sas.graphics.components.TableAxisColumn;
   import com.sas.measures.BaseLength;
   import com.sas.graphics.components.ganttchart.GanttChartTableDataModel;
   import com.sas.graphics.components.CompoundTimeAxisModel;
   import com.sas.graphics.components.TimePeriodModel;
   import com.sas.graphics.components.TimeLength;
   import com.sas.graphics.components.GraphConstants;
   import com.sas.graphics.components.Variable;
   import javax.swing.table.DefaultTableModel;
   import java.awt.BorderLayout;
   import java.awt.Color;
   import java.awt.Container;
   import java.awt.event.WindowAdapter;
   import java.awt.event.WindowEvent;
   import javax.swing.JFrame;
   import javax.swing.JPanel;

   public class SetHierarchicalTasks extends JPanel  {
     private SetHierarchicalTasks  theApp;
     public SetHierarchicalTasks () {
        setLayout(new BorderLayout());

     // Create a data source for schedule data
        ScheduleData dataTable=new ScheduleData();  // defined below

     // Construct a data model that uses the schedule data
        GanttChartTableDataModel dataModel=
          new GanttChartTableDataModel(dataTable);

     // Construct a GanttChart using the data model and assigning the GANTTCHART graph style
        GanttChart ganttChart=new GanttChart(dataModel, new GraphStyle(GraphStyle.STYLE_GANTTCHART));

     // Get the task axis and change its characteristics
        GanttChartModel ganttChartModel = ganttChart.getGraphModel();
        TableAxisModel tableAxisModel = ganttChartModel.getTableAxisModel();
         TableAxisColumn tac[] = new TableAxisColumn[3];
           tac[0] = new TableAxisColumn(new Variable("Task"));
           tac[0].setWidth(new BaseLength(2, "in"));
           tac[1] = new TableAxisColumn(new Variable("EarlyStart"));
           tac[2] = new TableAxisColumn(new Variable("LateStart"));
         tableAxisModel.setColumns(tac);

     // Assign the Task and date variable roles to the data model
        String format = "DATE5.";
        String informat = "DATE5.";         	
        dataModel.setTaskVariable(new Variable("Task"));
        dataModel.setParentVariable(new Variable("Parent"));
        dataModel.setEarlyStartVariable(new Variable("EarlyStart", format, informat, "Early Start"));
        dataModel.setEarlyFinishVariable(new Variable("EarlyFinish", format, informat, "Early Finish"));
        dataModel.setLateStartVariable(new Variable("LateStart", format, informat, "Late Start"));
        dataModel.setLateFinishVariable(new Variable("LateFinish", format, informat, "Late Finish"));

     // Get the Date axis and change its characteristics
        CompoundTimeAxisModel dateAxis = ganttChartModel.getDateAxisModel();
        TimePeriodModel period1 = dateAxis.getTimePeriodModel1();
        period1.setTimeLength(new TimeLength(1, GraphConstants.TIME_INTERVAL_DAY));
        dateAxis.getTimePeriodModel2().setVisible(false);
        dateAxis.getTimePeriodModel3().setVisible(false);

     // Set a graph title
        ganttChart.getTitle1().setText("Preliminary Schedule");
        add(ganttChart, BorderLayout.CENTER);
      }
  // Create the data source
     static private class ScheduleData extends DefaultTableModel {
       private static Class  columnClass[]={
                   String.class, String.class, String.class, String.class, String.class, String.class};
       private static String columnNames[]={
                  "Task", "EarlyStart", "LateStart", "EarlyFinish", "LateFinish", "Parent"};
         public ScheduleData() {
	   super();
           Object data[][] = {
             {new String("Project Summary")   , new String("01NOV"), new String("02NOV"), new String("09NOV"), new String("11NOV"), null }, 
             {new String("Manufacturer Demos"), new String("03NOV"), new String("05NOV"), new String("12NOV"), new String("12NOV"), new String("Project Summary") }, 
             {new String("Needs Assessment")  , new String("06NOV"), new String("08NOV"), new String("07NOV"), new String("11NOV"), new String("Project Summary") }, 
             {new String("Market Survey")     , new String("04NOV"), new String("06NOV"), new String("08NOV"), new String("11NOV"), new String("Needs Assessment") }, 
             {new String("Determine Users")   , new String("02NOV"), new String("06NOV"), new String("07NOV"), new String("09NOV"), new String("Needs Assessment") }
           };
           setDataVector(data, columnNames);
         }
         public Class getColumnClass(int column) {
           return columnClass[column];
         }
       }
       public static void main(String[] args) {
      	  JFrame frame = new JFrame("BIP Graph Sample");
      	  Container container = frame.getContentPane();
          container.setLayout(new BorderLayout());
          container.setBackground(Color.white);

          JPanel bipPanel = new JPanel();
          bipPanel.setLayout(new BorderLayout());
          SetHierarchicalTasks  bipGraphSample = new SetHierarchicalTasks();

          bipPanel.add(bipGraphSample, BorderLayout.CENTER);
          container.add(bipPanel, BorderLayout.CENTER);

          frame.setSize(600,450);
          frame.addWindowListener(new WindowAdapter() {
              public void windowClosing(WindowEvent e) {
                     System.exit(0);
              }
          } );
          frame.setVisible(true);
       }
     }