All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prompto.constraint.MatchingConstraintBase Maven / Gradle / Ivy

The newest version!
package prompto.constraint;

import prompto.parser.CodeSection;
import prompto.transpiler.ITranspilable;
import prompto.transpiler.Transpiler;

public abstract class MatchingConstraintBase extends CodeSection implements IAttributeConstraint {

	ITranspilable transpileFunction;

	@Override
	public boolean transpile(Transpiler transpiler) {
		return transpileFunction.transpile(transpiler);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy