JIVE Platform
Release 0.3.1

edu.bsu.cs.jive.events
Interface CallEvent.Exporter

All Superinterfaces:
Event.Exporter
All Known Implementing Classes:
MethodCalledSearchQuery.CallEventExporter
Enclosing interface:
CallEvent

public static interface CallEvent.Exporter
extends Event.Exporter

Exporter (reverse-builder) for call events.


Method Summary
 void addActualParams(List<Value> actuals)
          Adds the actual parameters of the call.
 void addCaller(CallEvent.Caller caller)
          Adds the caller of the call.
 void addTarget(CallEvent.Target target)
          Adds the target of the call.
 
Methods inherited from interface edu.bsu.cs.jive.events.Event.Exporter
addNumber, addThreadID
 

Method Detail

addCaller

void addCaller(CallEvent.Caller caller)
Adds the caller of the call. This method is called by CallEvent#export(Exporter).

Parameters:
caller - the caller

addTarget

void addTarget(CallEvent.Target target)
Adds the target of the call. This method is called by CallEvent#export(Exporter).

Parameters:
target - the caller

addActualParams

void addActualParams(List<Value> actuals)
Adds the actual parameters of the call. This method is called by CallEvent#export(Exporter).

Parameters:
actuals - the actual parameter values

JIVE Platform
Release 0.3.1