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 |
|
177 |
ilm |
16 |
import static org.openconcerto.erp.utils.TM.getERP_TM;
|
|
|
17 |
|
156 |
ilm |
18 |
import org.openconcerto.sql.PropsConfiguration;
|
|
|
19 |
import org.openconcerto.sql.element.SQLElement;
|
|
|
20 |
import org.openconcerto.sql.view.EditFrame;
|
|
|
21 |
import org.openconcerto.sql.view.EditPanel;
|
|
|
22 |
import org.openconcerto.utils.StringUtils;
|
|
|
23 |
import org.openconcerto.utils.i18n.MessageArgs;
|
|
|
24 |
import org.openconcerto.utils.i18n.NounClass;
|
|
|
25 |
import org.openconcerto.utils.i18n.TM.MissingMode;
|
|
|
26 |
|
|
|
27 |
public class CreateEditFrameAbstractAction<E extends SQLElement> extends GenericElementFrameAction<E, EditFrame> {
|
|
|
28 |
|
|
|
29 |
private static final String TRANSLATION_KEY = "createMenuItem.name";
|
|
|
30 |
private static final String[] TRANSLATION_KEY_ARRAY = new String[] { TRANSLATION_KEY };
|
|
|
31 |
|
|
|
32 |
protected CreateEditFrameAbstractAction(final PropsConfiguration conf, final Class<? extends E> clazz) {
|
174 |
ilm |
33 |
this(conf, conf.getDirectory().getElementOfClass(clazz, true));
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
protected CreateEditFrameAbstractAction(final PropsConfiguration conf, final E elem) {
|
|
|
37 |
super(elem);
|
156 |
ilm |
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 };
|
177 |
ilm |
40 |
this.putValue(NAME, StringUtils.firstUp(getERP_TM(conf.getLocale()).translateFirst(MissingMode.STRING, MessageArgs.create("elem", this.getElem().getName()), translationKeys)));
|
156 |
ilm |
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 |
}
|