
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
The newest version!
package ingenias.editor.cell;
import java.awt.Component;
import java.util.Map;
import javax.swing.JComponent;
import org.jgraph.JGraph;
import org.jgraph.graph.CellView;
import org.jgraph.graph.VertexRenderer;
import ingenias.editor.entities.Entity;
import ingenias.editor.entities.ViewPreferences.ViewType;
public abstract class CompositeRenderer extends VertexRenderer{
public abstract JComponent getConcreteSubComponent(String fieldname, Entity ent,Map cellAttributes);
public abstract Component getRendererComponent(JGraph graph,
CellView view, boolean sel,
boolean focus, boolean preview, ViewType vt);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy