use of org.opentosca.toscana.core.parse.model.ServiceGraph in project TOSCAna by StuPro-TOSCAna.
the class Parameter method setValue.
@Override
public void setValue(String value) {
set(VALUE, value);
// in case all required inputs are set, finalize the ServiceGraph
ServiceGraph graph = getBackingEntity().getGraph();
if (graph.inputsValid()) {
graph.finalizeGraph();
}
}
Aggregations