/* * Copyright (C) 2008-2010 by Claas Wilke (claas.wilke@tu-dresden.de) * * This file is part of the OCL2Java Code Generator of Dresden OCL. * * Dresden OCL is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your option) * any later version. * * Dresden OCL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License along * with Dresden OCL. If not, see <http://www.gnu.org/licenses/>. */ package org.dresdenocl.tools.codegen.ocl2java; import java.util.List; import org.dresdenocl.model.IModel; import org.dresdenocl.pivotmodel.Constraint; import org.dresdenocl.tools.codegen.IOcl2Code; import org.dresdenocl.tools.codegen.exception.Ocl2CodeException; /** * <p> * An interface for a OCL2 to code generator which uses an {@link IModel} and * its {@link Constraint}s to generate the constraint code. * </p> * * @author Claas Wilke */ public interface IOcl2Java extends IOcl2Code<IOcl2JavaSettings> { /** * <p> * Transforms the instrumentation Aspects for a given {@link List} of * {@link Constraint}s. * </p> * * @param constraints * The {@link List} of the {@link Constraint}s whose instrumentation * code shall be transformed. * @return A {@link List} containing the transformed code of the given * {@link Constraint}s. * @throws Ocl22CodeException * Thrown, if an error during code transformation occurs. */ public List<String> transformInstrumentationCode(List<Constraint> constraints) throws Ocl2CodeException; }