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

net.sourceforge.plantuml.tim.TFunction Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.tim;

import java.util.List;
import java.util.Map;
import java.util.Set;

import net.sourceforge.plantuml.tim.expression.TValue;
import net.sourceforge.plantuml.utils.LineLocation;

public interface TFunction {

	public TFunctionSignature getSignature();

	public boolean canCover(int nbArg, Set namedArguments);

	public TFunctionType getFunctionType();

	public void executeProcedure(TContext context, TMemory memory, LineLocation location, String s)
			throws EaterException, EaterExceptionLocated;

	public TValue executeReturnFunction(TContext context, TMemory memory, LineLocation location, List args,
			Map named) throws EaterException, EaterExceptionLocated;

	public void executeProcedureInternal(TContext context, TMemory memory, List args, Map named)
			throws EaterException, EaterExceptionLocated;

	public boolean isUnquoted();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy