Package jason.stdlib
Class println
java.lang.Object
jason.asSemantics.DefaultInternalAction
jason.stdlib.println
- All Implemented Interfaces:
InternalAction
,Serializable
@Manual(literal=".println(arg0[,arg1,...])",
hint="used for printing messages to the console such as .print except that a new line is printed after the parameters",
argsHint={"the term to be printed out","the term to be concatenated with prior ones and printed out [optional]"},
argsType={"term","term"},
examples=".println(1,X,\"bla\"): prints out the concatenation of the string representations of the number 1, content of variable X, and the string \"bla\"",
seeAlso={"jason.stdlib.print","jason.stdlib.printf"})
public class println
extends DefaultInternalAction
Internal action: .println
.
Description: used for printing messages to the console. Exactly as for
.print
except that a new line is printed after the parameters.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected String
argsToString
(Term[] args) static InternalAction
create()
execute
(TransitionSystem ts, Unifier un, Term[] args) Executes the internal action.protected String
Methods inherited from class jason.asSemantics.DefaultInternalAction
canBeUsedInContext, checkArguments, destroy, getMaxArgs, getMinArgs, prepareArguments, suspendIntention
-
Constructor Details
-
println
public println()
-
-
Method Details
-
create
-
getNewLine
-
execute
Description copied from interface:InternalAction
Executes the internal action. It should return a Boolean or an Iterator. A true boolean return means that the IA was successfully executed. An Iterator result means that there is more than one answer for this IA (e.g. see member internal action). - Specified by:
execute
in interfaceInternalAction
- Overrides:
execute
in classDefaultInternalAction
- Throws:
Exception
-
argsToString
-