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

org.zodiac.template.base.TemplateContext Maven / Gradle / Ivy

The newest version!
package org.zodiac.template.base;

import java.util.Set;

/**
 * 一个通用的模板context接口。该接口相当于一个被简化的map。
 *
 */
public interface TemplateContext {

    void put(String key, Object value);

    Object get(String key);

    void remove(String key);

    boolean containsKey(String key);

    Set keySet();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy