]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - demo/plugins/org.argeo.demo.i18n/src/main/java/org/argeo/demo/i18n/editors/SimpleMultitabEditor.java
Introduce check-osgi profile
[lgpl/argeo-commons.git] / demo / plugins / org.argeo.demo.i18n / src / main / java / org / argeo / demo / i18n / editors / SimpleMultitabEditor.java
index 41c3ea9936e1b79c1d18bc0226abf0063399d80a..9b298aea0d743754bb4e3dc3206909da17aa9d2c 100644 (file)
@@ -1,8 +1,22 @@
+/*
+ * Copyright (C) 2007-2012 Mathieu Baudier
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.argeo.demo.i18n.editors;
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
 import org.argeo.ArgeoException;
+import org.argeo.demo.i18n.I18nDemoMessages;
 import org.argeo.demo.i18n.I18nDemoPlugin;
 import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.ui.IEditorInput;
@@ -18,8 +32,8 @@ import org.eclipse.ui.forms.editor.FormEditor;
  */
 public class SimpleMultitabEditor extends FormEditor {
 
-       private final static Log log = LogFactory
-                       .getLog(SimpleMultitabEditor.class);
+       // private final static Log log = LogFactory
+       // .getLog(SimpleMultitabEditor.class);
        public final static String ID = I18nDemoPlugin.ID + ".simpleMultitabEditor";
 
        private SimplePage simplePage;
@@ -28,21 +42,19 @@ public class SimpleMultitabEditor extends FormEditor {
        public void init(IEditorSite site, IEditorInput input)
                        throws PartInitException {
                super.init(site, input);
-               this.setPartName("Internationalize editor part name");
+               // this.setPartName("Internationalized editor part name");
        }
 
        @Override
        protected void addPages() {
                try {
                        simplePage = new SimplePage(this,
-                                       I18nDemoPlugin
-                                                       .getMessage("SimpleMultitabEditor.SimplePageTitle"));
+                                       I18nDemoMessages.get().SimpleMultitabEditor_SimplePageTitle);
                        addPage(simplePage);
 
                        multiSectionPage = new MultiSectionPage(
                                        this,
-                                       I18nDemoPlugin
-                                                       .getMessage("SimpleMultitabEditor.MultiSectionPageTitle"));
+                                       I18nDemoMessages.get().SimpleMultitabEditor_MultiSectionPageTitle);
                        addPage(multiSectionPage);
 
                } catch (PartInitException e) {