public interface EventLogArray
| Modifier and Type | Method and Description |
|---|---|
void |
addLog(int index,
org.deckfour.xes.model.XLog log)
Adds the given log at the given index to the array.
|
int |
addLog(org.deckfour.xes.model.XLog log)
Adds the given log to the array.
|
void |
exportToFile(org.processmining.framework.plugin.PluginContext context,
java.io.File file,
org.deckfour.xes.out.XSerializer logSerializer) |
org.deckfour.xes.model.XLog |
getLog(int index)
Returns the log at the given index.
|
int |
getSize() |
void |
importFromStream(org.processmining.framework.plugin.PluginContext context,
java.io.InputStream input,
java.lang.String parent) |
void |
init()
Initializes the event log array.
|
void |
removeLog(int index)
Removes the log from the given index.
|
int |
removeLog(org.deckfour.xes.model.XLog log)
Removes the first occurrence of the given log from the array,
|
void init()
int addLog(org.deckfour.xes.model.XLog log)
log - The given log.int removeLog(org.deckfour.xes.model.XLog log)
log - The given log.void addLog(int index,
org.deckfour.xes.model.XLog log)
index - The given index.log - The given log.void removeLog(int index)
index - The given index.org.deckfour.xes.model.XLog getLog(int index)
index - The given index.int getSize()
void importFromStream(org.processmining.framework.plugin.PluginContext context,
java.io.InputStream input,
java.lang.String parent)
throws java.lang.Exception
java.lang.Exceptionvoid exportToFile(org.processmining.framework.plugin.PluginContext context,
java.io.File file,
org.deckfour.xes.out.XSerializer logSerializer)
throws java.io.IOException
java.io.IOException