Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/MLocalizable.java')
-rw-r--r--bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/MLocalizable.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/MLocalizable.java b/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/MLocalizable.java
new file mode 100644
index 00000000000..0476d4d200a
--- /dev/null
+++ b/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/MLocalizable.java
@@ -0,0 +1,46 @@
+/**
+ * Copyright (c) 2008, 2013 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
+ */
+package org.eclipse.e4.ui.model.application.ui;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Localizable</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * <p>
+ * This class should be mixed into any UI element that should participate in the
+ * Locale update handling.
+ * </p>
+ * <!-- end-model-doc -->
+ *
+ *
+ * @model interface="true" abstract="true"
+ * @generated
+ */
+public interface MLocalizable {
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * <p>
+ * This method is used to support Locale changes at runtime.
+ * Implementing this method should result in refreshing localizable properties
+ * like labels, tooltips and descriptions.
+ * </p>
+ * <!-- end-model-doc -->
+ * @model
+ * @generated
+ */
+ void updateLocalization();
+
+} // MLocalizable

Back to the top