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

com.github.phantomthief.model.builder.context.BuildContext Maven / Gradle / Ivy

/**
 * 
 */
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