blob: 48f05cd02897a22652c70eefd21d2636f004f64f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.emfatic.core.generator.ecore;
import org.eclipse.emf.emfatic.core.lang.gen.ast.EmfaticASTNode;
import org.eclipse.emf.emfatic.core.lang.gen.ast.EmfaticASTNodeVisitor;
/**
*
* @author cjdaly@us.ibm.com
*/
public class TokenText extends EmfaticASTNodeVisitor {
private StringBuffer _buf = new StringBuffer();
public static String Get(EmfaticASTNode node) {
TokenText tt = new TokenText();
tt.visit(node);
return tt._buf.toString();
}
public boolean beginVisit(EmfaticASTNode node) {
String text = node.getText();
if (text != null) _buf.append(text);
return true;
}
}