net.sourceforge.plantuml.tim.TFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// 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();
}