commonsrc.ingenias.editor.cell.CompositeRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
The INGENIAS Meta-Editor core. It is a set of facilities to generate an editor from a detailed xml description
package ingenias.editor.cell;
import java.util.Map;
import javax.swing.JComponent;
import org.jgraph.graph.VertexRenderer;
import ingenias.editor.entities.Entity;
public abstract class CompositeRenderer extends VertexRenderer{
public abstract JComponent getConcreteSubComponent(String fieldname, Entity ent,Map cellAttributes);
}