Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchan2006-02-03 21:39:31 +0000
committerkchan2006-02-03 21:39:31 +0000
commit3e12c4338b0d5ddb27a6259c10eea1fd181308d5 (patch)
treeaadf2ae329b4e376d4ac5d37dbc2ee74bb3bfedc
parentccdd6a005f59b7290d1a7db37ffde6043ea1aeb2 (diff)
downloadwebtools.webservices-3e12c4338b0d5ddb27a6259c10eea1fd181308d5.tar.gz
webtools.webservices-3e12c4338b0d5ddb27a6259c10eea1fd181308d5.tar.xz
webtools.webservices-3e12c4338b0d5ddb27a6259c10eea1fd181308d5.zip
[119780] Initial client project type preference settings are not configurable.
-rw-r--r--bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/preferences/PersistentProjectTopologyContext.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/preferences/PersistentProjectTopologyContext.java b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/preferences/PersistentProjectTopologyContext.java
index 774c1dea0..1e83b5a5e 100644
--- a/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/preferences/PersistentProjectTopologyContext.java
+++ b/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/preferences/PersistentProjectTopologyContext.java
@@ -1,12 +1,15 @@
/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
- * IBM Corporation - initial API and implementation
+ * IBM Corporation - initial API and implementation
+ * yyyymmdd bug Email and other contact information
+ * -------- -------- -----------------------------------------------------------
+ * 20060202 119780 pmoogk@ca.ibm.com - Peter Moogk
*******************************************************************************/
package org.eclipse.jst.ws.internal.consumption.ui.preferences;
@@ -34,7 +37,7 @@ public class PersistentProjectTopologyContext extends PersistentContext implemen
sb.append(" ");
sb.append(ids[i]);
}
- setDefault(PREFERENCE_CLIENT_TYPES, sb.toString());
+ setDefaultStringIfNoDefault(PREFERENCE_CLIENT_TYPES, sb.toString());
setDefault(PREFERENCE_USE_TWO_EARS, ProjectTopologyDefaults.isUseTwoEARs());
}

Back to the top