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

br.com.jarch.apt.generate.ICodeGenerate Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package br.com.jarch.apt.generate;

import br.com.jarch.util.type.CodeType;
import br.com.jarch.util.type.ModuleType;

import javax.lang.model.element.Element;

public interface ICodeGenerate {

    ModuleType getModule();

    String getNamePackage();

    CodeType getType();

    String getContent();

    void generate();

    String getName();

    String getFullName();

    String getNameEntity();

    String getFullNameEntity();

    String getNameService();

    String getFullNameService();

    String getNameSearch();

    String getFullNameSearch();

    String getNameRepository();

    String getFullNameRepository();

    String getNameDao();

    String getFullNameDao();

    String getVarName();

    Element getElement();

    boolean isRenameWsToWeb();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy