cn.sylinx.hbatis.ext.ifblock.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.ext.ifblock;
/**
* 所有节点, IF ELSIF ELSE END
*
* @author han
*
*/
public interface Node {
public int getIndex();
public int getNextIndex();
public String getNodeName();
}