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

com.iwbfly.myhttp.mapping.MappingExpr Maven / Gradle / Ivy

The newest version!
package com.iwbfly.myhttp.mapping;

import com.iwbfly.myhttp.config.VariableScope;

public abstract class MappingExpr {

    final Token token;

    protected VariableScope variableScope;

    protected MappingExpr(Token token) {
        this.token = token;
    }

    public Object render(Object[] args) {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy