OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 156 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
156 ilm 1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 *
4
 * Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
5
 *
6
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
7
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
8
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
9
 * language governing permissions and limitations under the License.
10
 *
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
13
 
14
 package org.openconcerto.erp.action;
15
 
16
import org.openconcerto.erp.utils.TM;
17
import org.openconcerto.sql.PropsConfiguration;
18
import org.openconcerto.sql.element.SQLElement;
19
import org.openconcerto.sql.view.EditFrame;
20
import org.openconcerto.sql.view.EditPanel;
21
import org.openconcerto.utils.StringUtils;
22
import org.openconcerto.utils.i18n.MessageArgs;
23
import org.openconcerto.utils.i18n.NounClass;
24
import org.openconcerto.utils.i18n.TM.MissingMode;
25
 
26
public class CreateEditFrameAbstractAction<E extends SQLElement> extends GenericElementFrameAction<E, EditFrame> {
27
 
28
    private static final String TRANSLATION_KEY = "createMenuItem.name";
29
    private static final String[] TRANSLATION_KEY_ARRAY = new String[] { TRANSLATION_KEY };
30
 
31
    protected CreateEditFrameAbstractAction(final PropsConfiguration conf, final Class<? extends E> clazz) {
174 ilm 32
        this(conf, conf.getDirectory().getElementOfClass(clazz, true));
33
    }
34
 
35
    protected CreateEditFrameAbstractAction(final PropsConfiguration conf, final E elem) {
36
        super(elem);
156 ilm 37
        // TODO use conf to find TM
38
        final NounClass nounClass = this.getElem().getName().getNounClass();
39
        final String[] translationKeys = nounClass == null ? TRANSLATION_KEY_ARRAY : new String[] { TRANSLATION_KEY + '.' + nounClass.getName(), TRANSLATION_KEY };
40
        this.putValue(NAME, StringUtils.firstUp(TM.getTM().translateFirst(MissingMode.NULL, MessageArgs.create("elem", this.getElem().getName()), translationKeys)));
41
    }
42
 
43
    @Override
44
    protected final EditFrame instantiateFrame() {
45
        return new EditFrame(getElem().createComponent(getComponentID()), EditPanel.CREATION);
46
    }
47
 
48
    protected String getComponentID() {
49
        return SQLElement.DEFAULT_COMP_ID;
50
    }
51
}