Skip to content

Commit

Permalink
Remove ref to protocol/experiment in right-hand panel.
Browse files Browse the repository at this point in the history
  • Loading branch information
jburel committed Oct 18, 2014
1 parent 32f8ce4 commit 2b05e30
Show file tree
Hide file tree
Showing 17 changed files with 6 additions and 560 deletions.
Expand Up @@ -136,13 +136,6 @@ public interface DataBrowser

/** Bound property indicating to reset the password of the selected user.*/
public static final String RESET_PASSWORD_PROPERTY = "resetUserPassword";

/**
* Bound property indicating to launch the editor to create a new
* experiment.
*/
public static final String CREATE_NEW_EXPERIMENT_PROPERTY =
"createNewExperiment";

/** Bound property indicating to tag selected objects. */
public static final String TAG_WIZARD_PROPERTY = "tagWizard";
Expand Down Expand Up @@ -699,9 +692,6 @@ public void setReportData(Map<ImageNode, StructuredDataResults> data,
*/
public void showTagWizard();

/** Posts an event to launch the editor to create a new experiment. */
public void createNewExperiment();

/**
* Sets the selected cell. This method can only be invoked if
* the model is <code>WellsModel</code>.
Expand Down
Expand Up @@ -1500,16 +1500,6 @@ public void showTagWizard()
firePropertyChange(TAG_WIZARD_PROPERTY, Boolean.FALSE, Boolean.TRUE);
}

/**
* Implemented as specified by the {@link DataBrowser} interface.
* @see DataBrowser#createNewExperiment()
*/
public void createNewExperiment()
{
firePropertyChange(CREATE_NEW_EXPERIMENT_PROPERTY, Boolean.FALSE,
Boolean.TRUE);
}

/**
* Implemented as specified by the {@link DataBrowser} interface.
* @see DataBrowser#loadExistingDatasets()
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Expand Up @@ -316,12 +316,6 @@ private JPopupMenu createDocSelectionMenu()
item.addActionListener(controller);
item.setActionCommand(""+EditorControl.ADD_UPLOADED_DOCS);
docSelectionMenu.add(item);
item = new JMenuItem("New Experiment...");
item.setEnabled(controller.isSingleMode());
item.setToolTipText("Create a new experiment.");
item.addActionListener(controller);
item.setActionCommand(""+EditorControl.CREATE_NEW_EXPERIMENT);
docSelectionMenu.add(item);
return docSelectionMenu;
}

Expand Down

0 comments on commit 2b05e30

Please sign in to comment.