fr.vergne.translation.editor.content.MapComponentFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of translation-editor Show documentation
Show all versions of translation-editor Show documentation
Graphical Editor for translation projects.
package fr.vergne.translation.editor.content;
import java.awt.Component;
import fr.vergne.translation.TranslationMap;
import fr.vergne.translation.editor.content.MapComponentFactory.MapComponent;
public interface MapComponentFactory {
public ComposedComponent createMapComponent(TranslationMap> map);
public static interface MapComponent {
public EntryComponentFactory.EntryComponent getEntryComponent(int index);
}
}