org.babyfish.jimmer.client.source.Source Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-client Show documentation
Show all versions of jimmer-client Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.client.source;
import org.babyfish.jimmer.client.generator.Render;
import org.jetbrains.annotations.Nullable;
import java.util.Collection;
import java.util.List;
import java.util.function.Supplier;
public interface Source {
List getDirs();
String getName();
Render getRender();
@Nullable
Source getParent();
Source getRoot();
Source subSource(String name, Supplier renderSupplier);
Collection