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

org.faktorips.codegen.SingleConversionCg Maven / Gradle / Ivy

There is a newer version: 25.1.0.a20241030-01
Show newest version
/*******************************************************************************
 * 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