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

cfml.parsing.cfscript.script.CFInterfaceDeclStatement Maven / Gradle / Ivy

The newest version!
package cfml.parsing.cfscript.script;

import java.util.Map;

import org.antlr.v4.runtime.Token;

import cfml.parsing.cfscript.CFExpression;

public class CFInterfaceDeclStatement extends CFCompDeclStatement {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	public CFInterfaceDeclStatement(Token _t, Map _attr, CFScriptStatement _body) {
		super(_t, _attr, _body);
	}
	
	@Override
	public String Decompile(int indent) {
		return super.Decompile(0).replaceFirst("component", "interface");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy