/**
* 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;