001package gudusoft.gsqlparser.nodes;
002
003
004import gudusoft.gsqlparser.EWindowExcludeType;
005
006public class TFrameExclusionClause extends TParseTreeNode {
007
008    //public enum EWindowExcludeType { currentRow,ties,group,noOthers};
009    private EWindowExcludeType excludeType;
010
011    public void setExcludeType(EWindowExcludeType excludeType) {
012        this.excludeType = excludeType;
013    }
014
015    public EWindowExcludeType getExcludeType() {
016
017        return excludeType;
018    }
019
020    public void init(Object arg1){
021      excludeType = (EWindowExcludeType)arg1;
022
023    }
024
025}