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

org.modelcc.lexer.recognizer.MatchedObject Maven / Gradle / Ivy

Go to download

ModelCC is a model-based parser generator (a.k.a. compiler compiler) that decouples language specification from language processing, avoiding some of the problems caused by grammar-driven parser generators. ModelCC receives a conceptual model as input, along with constraints that annotate it. It is then able to create a parser for the desired textual language and the generated parser fully automates the instantiation of the language conceptual model. ModelCC also includes a built-in reference resolution mechanism that results in abstract syntax graphs, rather than mere abstract syntax trees.

The newest version!
/*
 * ModelCC, distributed under ModelCC Shared Software License, www.modelcc.org
 */

package org.modelcc.lexer.recognizer;

import java.io.Serializable;

/**
 * A recognized object, as returned by a pattern recognizer.
 * 
 * @author Luis Quesada ([email protected])
 */
public final class MatchedObject implements Serializable {

    /**
     * Matched object.
     */
    private Object object;

    /**
     * Matched text.
     */
    private String text;

    /**
     * Default constructor.
     * @param object the matched object.
     * @param text the matched text.
     */
    public MatchedObject(Object object,String text) {
        this.object = object;
        this.text = text;
    }

    /**
     * @return the object
     */
    public Object getObject() {
        return object;
    }

    /**
     * @return the length
     */
    public String getText() {
        return text;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy