Author: slotia
Date: 2009-04-17 05:04:18 -0700 (Fri, 17 Apr 2009)
New Revision: 16607
Modified:
core3/core-task-impl/trunk/src/main/java/org/cytoscape/task/internal/proxysettings/ProxySettingsTask.java
Log:
Fixed bug where ProxySettingsTask is not a public class, which prevents
Tunables from working with it
Modified:
core3/core-task-impl/trunk/src/main/java/org/cytoscape/task/internal/proxysettings/ProxySettingsTask.java
===================================================================
---
core3/core-task-impl/trunk/src/main/java/org/cytoscape/task/internal/proxysettings/ProxySettingsTask.java
2009-04-17 11:56:58 UTC (rev 16606)
+++
core3/core-task-impl/trunk/src/main/java/org/cytoscape/task/internal/proxysettings/ProxySettingsTask.java
2009-04-17 12:04:18 UTC (rev 16607)
@@ -26,7 +26,7 @@
* Dialog for assigning proxy settings.
* @author Pasteur
*/
-class ProxySettingsTask implements Task, TunableValidator
+public class ProxySettingsTask implements Task, TunableValidator
{
static final Map<String, Proxy.Type> types = new HashMap<String,
Proxy.Type>(4, 1.0f);
static
@@ -38,6 +38,7 @@
@Tunable(description="Type")
public ListSingleSelection<String> type = new
ListSingleSelection<String>(new ArrayList<String>(types.keySet()));
+ //public ListSingleSelection<String> type = new
ListSingleSelection<String>("direct", "http", "socks");
@Tunable(description="Proxy
Server",group={""},dependsOn="type!=direct",alignment={Param.horizontal})
public String hostname="";
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---