Author: kono
Date: 2010-02-16 15:59:36 -0800 (Tue, 16 Feb 2010)
New Revision: 19342
Modified:
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/ActiveModulesUI.java
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/dialogs/ActivePathsParameterPanel.java
Log:
Unnecessary parameters removed. It was used when this plugin did not use
CytoPanels.
Modified:
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/ActiveModulesUI.java
===================================================================
---
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/ActiveModulesUI.java
2010-02-16 23:56:21 UTC (rev 19341)
+++
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/ActiveModulesUI.java
2010-02-16 23:59:36 UTC (rev 19342)
@@ -94,8 +94,7 @@
final CytoPanel cytoPanel =
Cytoscape.getDesktop().getCytoPanel(
SwingConstants.WEST);
if (paramsDialog == null) {
- paramsDialog = new
ActivePathsParameterPanel(Cytoscape
- .getDesktop(), "Find Active
Modules Parameters",
+ paramsDialog = new ActivePathsParameterPanel(
apfParams,
ActiveModulesUI.this);
paramsDialog.setVisible(true);
}
Modified:
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/dialogs/ActivePathsParameterPanel.java
===================================================================
---
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/dialogs/ActivePathsParameterPanel.java
2010-02-16 23:56:21 UTC (rev 19341)
+++
csplugins/trunk/ucsd/pwang/jActiveModules3/src/csplugins/jActiveModules/dialogs/ActivePathsParameterPanel.java
2010-02-16 23:59:36 UTC (rev 19342)
@@ -63,6 +63,7 @@
JTextField readout;
ActivePathFinderParameters apfParams;
+
static String NONRANDOM = "Non-Random Starting Graph";
static String ANNEAL = "Anneal";
static String SEARCH = "Search";
@@ -132,14 +133,11 @@
JDialog helpDialog;
//
-----------------------------------------------------------------------------
- public ActivePathsParameterPanel(//
ActivePathsParametersPopupDialogListener
- // listener,
- Frame parentFrame, String title,
+ public ActivePathsParameterPanel(
ActivePathFinderParameters incomingApfParams,
ActiveModulesUI parentUI) {
// uses copy constructor so that changes aren't committed if you
// dismiss.
- // apfParams = new
ActivePathFinderParameters(incomingApfParams);
apfParams = incomingApfParams;
this.parentUI = parentUI;
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.