Package com.projity.pm.graphic.frames

Examples of com.projity.pm.graphic.frames.GraphicManager$TransformAction


  /**
   * Creates, intializes and configures the UI components. Real applications
   * may further bind the components to underlying models.
   */
  protected void initControls() {
        GraphicManager mf = documentFrame.getGraphicManager();
        spreadSheetPane = new AssignmentEntryPane(this,documentFrame.getProject(),this,false,mf.setAssignmentDialogTransformerInitializationClosure());
//        projectName = new JLabel();
        taskNames = new JLabel();
        Project project=documentFrame.getProject();
    spreadSheetPane.setProject(project); //init content of spreadsheet
    setSelectedTasks(mf.getCurrentFrame().getTopSpreadSheet().getSelectedNodes()); //update
       
//        projectName.setAlignmentX(JLabel.LEFT_ALIGNMENT);
//        projectName.setText(project == null ? "" : "Resources from: " + project.getName());
        AbstractAction assignAction = new AbstractAction(Messages.getString("Text.Assign")) { //$NON-NLS-1$
        private static final long serialVersionUID = 1L;
View Full Code Here

TOP

Related Classes of com.projity.pm.graphic.frames.GraphicManager$TransformAction

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.