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

com.alibaba.simpleEL.dialect.ql.ast.QLExpr Maven / Gradle / Ivy

The newest version!
package com.alibaba.simpleEL.dialect.ql.ast;

import java.util.HashMap;
import java.util.Map;

import com.alibaba.simpleEL.dialect.ql.visitor.QLAstVisitor;

public abstract class QLExpr extends QLAstNode {
	private final Map attributes = new HashMap();

	@Override
	protected void accept0(QLAstVisitor visitor) {
		
	}

    public String toString() {
        StringBuffer buf = new StringBuffer();
        output(buf);
        return buf.toString();
    }
    
    public Map getAttributes() {
    	return this.attributes;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy