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

lombok.ast.Node Maven / Gradle / Ivy

There is a newer version: 0.11.3
Show newest version
/*
 * Copyright © 2011 Philipp Eichhorn
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package lombok.ast;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;

import lombok.core.util.Cast;

public abstract class Node> {
	private Node parent;
	private Object posHint;

	public final > T child(final T node) {
		if (node != null) node.parent = this;
		return node;
	}

	public final Node up() {
		return parent;
	}

	public final > T upTo(final Class type) {
		Node node = this;
		while ((node != null) && !type.isInstance(node)) {
			node = node.up();
		}
		return type.cast(node);
	}

	protected final SELF_TYPE self() {
		return Cast. uncheckedCast(this);
	}

	public final SELF_TYPE posHint(final Object posHint) {
		this.posHint = posHint;
		return self();
	}

	public final  T posHint() {
		Node node = this;
		while ((node != null) && (node.posHint == null)) {
			node = node.up();
		}
		return node == null ? null : Cast. uncheckedCast(node.posHint);
	}

	public String toString() {
		final ByteArrayOutputStream baos = new ByteArrayOutputStream();
		final PrintStream ps = new PrintStream(baos);
		accept(new ASTPrinter(), new ASTPrinter.State(ps));
		return baos.toString();
	}

	public abstract  RETURN_TYPE accept(ASTVisitor v, PARAMETER_TYPE p);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy