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

org.hisrc.jscm.codemodel.statement.impl.EmptyStatementImpl Maven / Gradle / Ivy

The newest version!
package org.hisrc.jscm.codemodel.statement.impl;

import org.hisrc.jscm.codemodel.JSCodeModel;
import org.hisrc.jscm.codemodel.statement.JSEmptyStatement;
import org.hisrc.jscm.codemodel.statement.JSStatementVisitor;

public class EmptyStatementImpl extends StatementImpl implements
		JSEmptyStatement {

	public EmptyStatementImpl(JSCodeModel codeModel) {
		super(codeModel);
	}

	@Override
	public  V acceptStatementVisitor(
			JSStatementVisitor visitor) throws E {
		return visitor.visitEmpty(this);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy