Skip to main content
summaryrefslogtreecommitdiffstats
blob: 40fce6525d691920d831e0d818dabab79407e0e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * Copyright (c) 2012 Robert Bosch Engineering and Business Solutions Ltd India. All rights reserved. This program and
 * the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies
 * this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.eclipse.osee.ats.reports.burndown.ui;

import java.util.ArrayList;
import java.util.List;
import org.eclipse.osee.ats.AtsImage;
import org.eclipse.osee.ats.navigate.IAtsNavigateItem;
import org.eclipse.osee.ats.reports.efficiency.ui.EfficiencyItem;
import org.eclipse.osee.ats.reports.split.ui.DistributionItem;
import org.eclipse.osee.framework.ui.plugin.xnavigate.XNavigateItem;

/**
 * Class to create the navigate items
 * 
 * @author Praveen Joseph
 */
public class ProjectModuleReports implements IAtsNavigateItem {

   /**
    * Default Constructor
    */
   public ProjectModuleReports() {
      //
   }

   @Override
   public List<XNavigateItem> getNavigateItems(final XNavigateItem parentItem) {
      List<XNavigateItem> items = new ArrayList<XNavigateItem>();

      XNavigateItem autoseeReportItem = new XNavigateItem(parentItem, "ProjectModule Reports", AtsImage.REPORT);
      new BurndownItem(autoseeReportItem);
      new DistributionItem(autoseeReportItem);
      new EfficiencyItem(autoseeReportItem);
      items.add(autoseeReportItem);
      return items;
   }

}

Back to the top