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

com.adtsw.jos.dsl.model.contexts.ScriptLineTokensContext Maven / Gradle / Ivy

The newest version!
package com.adtsw.jos.dsl.model.contexts;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;

import java.util.ArrayList;
import java.util.List;

@AllArgsConstructor
@Getter
@Setter
public class ScriptLineTokensContext {

    private String variableName;
    private String originalValue;
    private Object[] originalLexemes;
    private Object[] compiledLexemes;
    private final List computedObjects;
    private final List yetToBeComputedObjects;

    public ScriptLineTokensContext() {
        this.computedObjects = new ArrayList<>();
        this.yetToBeComputedObjects = new ArrayList<>();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy