1 package org.weda.model;
2
3 import java.util.List;
4 import org.weda.model.EditorModelGroup;
5
6 /**
7 *
8 * @author tim
9 */
10 public interface EditorModelFactory {
11 public List<EditorModelGroup> getEditorModelGroups();
12 }