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

org.bitbucket.gkutiel.at.NodeAt Maven / Gradle / Ivy

There is a newer version: 3-RELEASE
Show newest version
package org.bitbucket.gkutiel.at;

import static java.util.Collections.unmodifiableList;

public class NodeAt extends NodeWithChildren {

	final At at;

	public NodeAt(final At at) {
		this.at = at;
	}

	@Override public void accept(final Visitor visitor) {
		visitor.visitAt(at, unmodifiableList(children));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy