Show ConstraintRenderer.java syntax highlighted
package org.integratedmodelling.thinkcap.portal.rendering;
import java.io.PrintWriter;
import org.integratedmodelling.thinklab.constraint.Constraint;
public class ConstraintRenderer extends KnowledgeRenderer {
Constraint constraint = null;
public ConstraintRenderer(Constraint c) {
constraint = c;
}
@Override
void render(PrintWriter writer) {
// TODO Auto-generated method stub
}
}
See more files for this project here