Package net.sourceforge.ganttproject.gui

Examples of net.sourceforge.ganttproject.gui.ResourceDialogCustomColumn


    /* creates a custom property column in the datamodel and on the screen */
    public void addCustomColumn(ResourceColumn column) {
      if (column == null) {
        /* create dialog and create column */
        column = newResourceColumn();
        ResourceDialogCustomColumn d = new ResourceDialogCustomColumn(Mediator
                    .getGanttProjectSingleton().getUIFacade(), column);
        d.setVisible(true);
        if (!d.isOk()) {
          return;
        }
        column = d.getColumn();
      }
     
      if (column.getTitle() != null) {
        /* adding the column into the datamodel */
        try {
View Full Code Here

TOP

Related Classes of net.sourceforge.ganttproject.gui.ResourceDialogCustomColumn

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.