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

svn://code.openconcerto.org/openconcerto
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
74 |
ilm |
1 |
package org.openconcerto.modules.extensionbuilder.translation.action;
|
|
|
2 |
|
|
|
3 |
import javax.swing.JComponent;
|
|
|
4 |
|
|
|
5 |
import org.openconcerto.modules.extensionbuilder.AbstractSplittedPanel;
|
|
|
6 |
import org.openconcerto.modules.extensionbuilder.Extension;
|
|
|
7 |
|
|
|
8 |
public class ActionTranslationPanel extends AbstractSplittedPanel {
|
|
|
9 |
|
|
|
10 |
public ActionTranslationPanel(Extension extension) {
|
|
|
11 |
super(extension);
|
|
|
12 |
}
|
|
|
13 |
|
|
|
14 |
@Override
|
|
|
15 |
public JComponent createLeftComponent() {
|
|
|
16 |
return new ActionListPanel(extension, this);
|
|
|
17 |
}
|
|
|
18 |
}
|