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

com.github.tankist88.carpenter.generator.util.ConvertUtil Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package com.github.tankist88.carpenter.generator.util;

import com.github.tankist88.carpenter.generator.dto.unit.method.MethodExtInfo;
import com.github.tankist88.object2source.dto.ProviderInfo;

public class ConvertUtil extends com.github.tankist88.carpenter.core.util.ConvertUtil {
    public static MethodExtInfo toMethodExtInfo(String className, ProviderInfo providerInfo) {
        if(providerInfo == null) return null;
        MethodExtInfo result = new MethodExtInfo();
        result.setUnitName(providerInfo.getMethodName());
        result.setBody(providerInfo.getMethodBody());
        result.setClassName(className);
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy