/* * 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦] * * 知启蒙标记语言(zhiqim_zml)在LGPL3.0协议下开源:https://www.zhiqim.com/gitcan/zhiqim/zhiqim_zml.htm * * This file is part of [zhiqim_zml]. * * [zhiqim_zml] is free software: you can redistribute * it and/or modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * [zhiqim_zml] is distributed in the hope that it will * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with [zhiqim_zml]. * If not, see . */ package org.zhiqim.zml; /** * ZhiqimML变量运行时生成最终结果 * * @version v1.0.0 @author zouzhigang 2018-2-26 新建与整理 */ public interface ZmlVarRuntime { public Object build(); }