Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jaxb
diff options
context:
space:
mode:
authorBrian Vosburgh2013-04-09 19:40:10 +0000
committerBrian Vosburgh2013-04-16 20:01:18 +0000
commitd6b0965be4efc2ff14caba78d93cd90f00e3efaa (patch)
tree36d22938471540bbbec8e93e5d9a47c54f3eb920 /jaxb
parent86c5afb5db5299f718149c58cd675becaba71bcf (diff)
downloadwebtools.dali-d6b0965be4efc2ff14caba78d93cd90f00e3efaa.tar.gz
webtools.dali-d6b0965be4efc2ff14caba78d93cd90f00e3efaa.tar.xz
webtools.dali-d6b0965be4efc2ff14caba78d93cd90f00e3efaa.zip
rename SWTTools to SWTBindTools
Diffstat (limited to 'jaxb')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbProjectPropertiesPage.java4
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java6
2 files changed, 5 insertions, 5 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbProjectPropertiesPage.java b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbProjectPropertiesPage.java
index 9e38fb0038..ae1dd5aade 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbProjectPropertiesPage.java
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbProjectPropertiesPage.java
@@ -18,7 +18,7 @@ import org.eclipse.core.runtime.IStatus;
import org.eclipse.jpt.common.core.internal.utility.ICUStringCollator;
import org.eclipse.jpt.common.core.internal.utility.PlatformTools;
import org.eclipse.jpt.common.ui.internal.properties.JptProjectPropertiesPage;
-import org.eclipse.jpt.common.ui.internal.swt.bind.SWTTools;
+import org.eclipse.jpt.common.ui.internal.swt.bind.SWTBindTools;
import org.eclipse.jpt.common.utility.internal.iterable.IterableTools;
import org.eclipse.jpt.common.utility.internal.model.value.AspectPropertyValueModelAdapter;
import org.eclipse.jpt.common.utility.internal.model.value.BufferedModifiablePropertyValueModel;
@@ -190,7 +190,7 @@ public class JaxbProjectPropertiesPage
group.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
Combo platformDropDown = this.buildDropDown(group);
- SWTTools.bind(
+ SWTBindTools.bind(
buildPlatformChoicesModel(),
this.platformModel,
platformDropDown,
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java
index 5ae2c7ce6b..e16843e005 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.ui/src/org/eclipse/jpt/jaxb/ui/internal/properties/JaxbSchemasPropertiesPage.java
@@ -49,7 +49,7 @@ import org.eclipse.jface.window.Window;
import org.eclipse.jpt.common.core.internal.utility.PlatformTools;
import org.eclipse.jpt.common.ui.internal.swt.ColumnAdapter;
import org.eclipse.jpt.common.ui.internal.swt.TableModelAdapter;
-import org.eclipse.jpt.common.ui.internal.swt.bind.SWTTools;
+import org.eclipse.jpt.common.ui.internal.swt.bind.SWTBindTools;
import org.eclipse.jpt.common.utility.internal.StringTools;
import org.eclipse.jpt.common.utility.internal.collection.CollectionTools;
import org.eclipse.jpt.common.utility.internal.iterable.SingleElementIterable;
@@ -258,7 +258,7 @@ public class JaxbSchemasPropertiesPage
editSelectedSchema();
}
});
- SWTTools.controlEnabledState(buildEditEnabledModel(), editButton);
+ SWTBindTools.controlEnabledState(buildEditEnabledModel(), editButton);
setButtonLayoutData(editButton);
Button removeButton = new Button(groupComponent, SWT.PUSH);
@@ -270,7 +270,7 @@ public class JaxbSchemasPropertiesPage
removeSelectedSchemas();
}
});
- SWTTools.controlEnabledState(buildRemoveEnabledModel(), removeButton);
+ SWTBindTools.controlEnabledState(buildRemoveEnabledModel(), removeButton);
setButtonLayoutData(removeButton);
}

Back to the top