org.coode.oppl.Renderable Maven / Gradle / Ivy
package org.coode.oppl;
/** Functional interface for anything which can be rendered with a
* ConstraintSystem */
public interface Renderable {
/** @param constraintSystem
* constraintSystem
* @return rendering */
String render(ConstraintSystem constraintSystem);
}