
com.github.phantomthief.model.builder.context.BuildContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model-view-builder Show documentation
Show all versions of model-view-builder Show documentation
A hierarchy model builder with view mapper
The newest version!
package com.github.phantomthief.model.builder.context;
import java.util.Map;
/**
* @author w.vela
*/
public interface BuildContext {
default Map getData(Class type) {
return getData((Object) type);
}
Map getData(Object namespace);
void merge(BuildContext buildContext);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy