Update to include the typo change
diff --git a/bundles/org.eclipse.e4.ui.model.workbench.edit/plugin.properties b/bundles/org.eclipse.e4.ui.model.workbench.edit/plugin.properties
index 26653ef..59e62e8 100644
--- a/bundles/org.eclipse.e4.ui.model.workbench.edit/plugin.properties
+++ b/bundles/org.eclipse.e4.ui.model.workbench.edit/plugin.properties
@@ -275,3 +275,4 @@
_UI_ApplicationElement_clonableSnippets_feature = Clonable Snippets
_UI_OpaqueToolItem_opaqueItem_feature = Opaque Item
_UI_Placeholder_closeable_feature = Closeable
+_UI_ApplicationElement_transientData_feature = Transient Data
diff --git a/bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ApplicationElementItemProvider.java b/bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ApplicationElementItemProvider.java
index fd0b396..2cab413 100644
--- a/bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ApplicationElementItemProvider.java
+++ b/bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ApplicationElementItemProvider.java
@@ -74,7 +74,7 @@
addElementIdPropertyDescriptor(object);
addTagsPropertyDescriptor(object);
addContributorURIPropertyDescriptor(object);
- addTranientDataPropertyDescriptor(object);
+ addTransientDataPropertyDescriptor(object);
}
return itemPropertyDescriptors;
}
@@ -146,19 +146,19 @@
}
/**
- * This adds a property descriptor for the Tranient Data feature.
+ * This adds a property descriptor for the Transient Data feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
- protected void addTranientDataPropertyDescriptor(Object object) {
+ protected void addTransientDataPropertyDescriptor(Object object) {
itemPropertyDescriptors.add
(createItemPropertyDescriptor
(((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
getResourceLocator(),
- getString("_UI_ApplicationElement_tranientData_feature"), //$NON-NLS-1$
- getString("_UI_PropertyDescriptor_description", "_UI_ApplicationElement_tranientData_feature", "_UI_ApplicationElement_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- ApplicationPackageImpl.Literals.APPLICATION_ELEMENT__TRANIENT_DATA,
+ getString("_UI_ApplicationElement_transientData_feature"), //$NON-NLS-1$
+ getString("_UI_PropertyDescriptor_description", "_UI_ApplicationElement_transientData_feature", "_UI_ApplicationElement_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ ApplicationPackageImpl.Literals.APPLICATION_ELEMENT__TRANSIENT_DATA,
true,
false,
false,
@@ -237,7 +237,7 @@
case ApplicationPackageImpl.APPLICATION_ELEMENT__ELEMENT_ID:
case ApplicationPackageImpl.APPLICATION_ELEMENT__TAGS:
case ApplicationPackageImpl.APPLICATION_ELEMENT__CONTRIBUTOR_URI:
- case ApplicationPackageImpl.APPLICATION_ELEMENT__TRANIENT_DATA:
+ case ApplicationPackageImpl.APPLICATION_ELEMENT__TRANSIENT_DATA:
fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true));
return;
case ApplicationPackageImpl.APPLICATION_ELEMENT__CLONABLE_SNIPPETS:
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
index 3fc225e..b066934 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
@@ -133,7 +133,7 @@
public static final String CONTRIBUTORURI = "contributorURI"; //$NON-NLS-1$
public static final String ELEMENTID = "elementId"; //$NON-NLS-1$
public static final String TAGS = "tags"; //$NON-NLS-1$
- public static final String TRANIENTDATA = "tranientData"; //$NON-NLS-1$
+ public static final String TRANSIENTDATA = "transientData"; //$NON-NLS-1$
}
public static interface Contribution {