org.faktorips.codegen.SingleConversionCg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of faktorips-dtfl-common Show documentation
Show all versions of faktorips-dtfl-common Show documentation
Common code for Faktor-IPS devtools and formula language
/*******************************************************************************
* Copyright (c) Faktor Zehn GmbH - faktorzehn.org
*
* This source code is available under the terms of the AGPL Affero General Public License version
* 3.
*
* Please see LICENSE.txt for full license terms, including the additional permissions and
* restrictions as well as the possibility of alternative license terms.
*******************************************************************************/
package org.faktorips.codegen;
import org.faktorips.datatype.Datatype;
/**
*
*/
public interface SingleConversionCg {
Datatype getFrom();
Datatype getTo();
T getConversionCode(T fromValue);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy