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

org.nuiton.jaxx.compiler.css.parser.SimpleNode Maven / Gradle / Ivy

There is a newer version: 3.1.5
Show newest version
/*
 * #%L
 * JAXX :: Compiler
 * %%
 * Copyright (C) 2008 - 2020 Code Lutin, Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */
/* Generated By:JJTree: Do not edit this line. SimpleNode.java */


package org.nuiton.jaxx.compiler.css.parser;

public class SimpleNode implements Node {
    protected Node parent;

    protected Node[] children;

    protected final int id;

    protected CSSParser parser;

    public Token firstToken;

    public Token lastToken;


    public SimpleNode(int i) {
        id = i;
    }

    public SimpleNode(CSSParser p, int i) {
        this(i);
        parser = p;
    }


    public int getId() {
        return id;
    }

    public void jjtOpen() {
    }

    public void jjtClose() {
    }

    public void jjtSetParent(Node n) {
        parent = n;
    }

    public Node jjtGetParent() {
        return parent;
    }

    public SimpleNode getParent() {
        return (SimpleNode) parent;
    }

    public void jjtAddChild(Node n, int i) {
        if (children == null) {
            children = new Node[i + 1];
        } else if (i >= children.length) {
            Node c[] = new Node[i + 1];
            System.arraycopy(children, 0, c, 0, children.length);
            children = c;
        }
        children[i] = n;
    }

    public Node jjtGetChild(int i) {
        return children[i];
    }

    public SimpleNode getChild(int i) {
        return (SimpleNode) children[i];
    }

    public int jjtGetNumChildren() {
        return children == null ? 0 : children.length;
    }

    /* You can override these two methods in subclasses of SimpleNode to
customize the way the node appears when the tree is dumped.  If
your output uses more than one line you should override
toString(String), otherwise overriding toString() is probably all
you need to do. */

    @Override
    public String toString() {
        return getClass().getName() + "[" + getText() + "]";
    }

    public String toString(String prefix) {
        return prefix + toString();
    }

    /* Override this method if you want to customize how the node dumps
 out its children. */

    public void dump(String prefix) {
        System.out.println(toString(prefix));
        if (children != null) {
            for (Node aChildren : children) {
                SimpleNode n = (SimpleNode) aChildren;
                if (n != null) {
                    n.dump(prefix + " ");
                }
            }
        }
    }

    private void appendSpecialTokens(StringBuilder s, Token st) {
        if (st != null) {
            appendSpecialTokens(s, st.specialToken);
            s.append(st.image);
        }
    }


    /** @return the text of the tokens comprising this node. */
    public String getText() {
        StringBuilder text = new StringBuilder();
        Token t = firstToken;
        while (t != null) {
            appendSpecialTokens(text, t.specialToken);
            text.append(t.image);
            if (t == lastToken)
                break;
            t = t.next;
        }

        return text.toString();
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy