Package org.fulib.scenarios.ast.sentence
Interface CallSentence
-
- All Superinterfaces:
ActorSentence,Node,Positioned,Sentence
- All Known Implementing Classes:
CallSentence.Impl
public interface CallSentence extends ActorSentence
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCallSentence.Implstatic interfaceCallSentence.Visitor<P,R>
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <P,R>
Raccept(Node.Visitor<P,R> visitor, P par)default <P,R>
Raccept(Positioned.Visitor<P,R> visitor, P par)default <P,R>
Raccept(ActorSentence.Visitor<P,R> visitor, P par)default <P,R>
Raccept(CallSentence.Visitor<P,R> visitor, P par)default <P,R>
Raccept(Sentence.Visitor<P,R> visitor, P par)NamegetActor()CallExprgetCall()static CallSentenceof(Name actor, CallExpr call)voidsetActor(Name actor)voidsetCall(CallExpr call)-
Methods inherited from interface org.fulib.scenarios.ast.Positioned
getPosition, setPosition
-
-
-
-
Method Detail
-
of
static CallSentence of(Name actor, CallExpr call)
-
getActor
Name getActor()
- Specified by:
getActorin interfaceActorSentence
-
setActor
void setActor(Name actor)
- Specified by:
setActorin interfaceActorSentence
-
getCall
CallExpr getCall()
-
setCall
void setCall(CallExpr call)
-
accept
default <P,R> R accept(CallSentence.Visitor<P,R> visitor, P par)
-
accept
default <P,R> R accept(ActorSentence.Visitor<P,R> visitor, P par)
- Specified by:
acceptin interfaceActorSentence
-
accept
default <P,R> R accept(Sentence.Visitor<P,R> visitor, P par)
- Specified by:
acceptin interfaceActorSentence- Specified by:
acceptin interfaceSentence
-
accept
default <P,R> R accept(Positioned.Visitor<P,R> visitor, P par)
- Specified by:
acceptin interfaceActorSentence- Specified by:
acceptin interfacePositioned- Specified by:
acceptin interfaceSentence
-
accept
default <P,R> R accept(Node.Visitor<P,R> visitor, P par)
- Specified by:
acceptin interfaceActorSentence- Specified by:
acceptin interfaceNode- Specified by:
acceptin interfacePositioned- Specified by:
acceptin interfaceSentence
-
-