Package com.uppaal.model.system
Class SystemEdge
- java.lang.Object
-
- com.uppaal.model.system.SystemEdge
-
- Direct Known Subclasses:
SystemEdgeSelect
public class SystemEdge extends java.lang.ObjectThe class of the system edge
-
-
Constructor Summary
Constructors Constructor Description SystemEdge(Process process, int index, java.lang.String name, Edge edge)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EdgegetEdge()Get the edgejava.lang.StringgetFormatedName()Get the formated name of the edgeintgetIndex()Get the index of the edgejava.lang.StringgetName()Get the name of the edgeProcessgetProcess()Get the process of the edgejava.lang.StringgetProcessName()Get the process name of the edgevoidwriteXTRFormat(java.io.Writer writer)Convert the edge to format used in XTR files.
-
-
-
Method Detail
-
getProcess
public Process getProcess()
Get the process of the edge- Returns:
- process - The process
-
getProcessName
public java.lang.String getProcessName()
Get the process name of the edge- Returns:
- The process name
-
getIndex
public int getIndex()
Get the index of the edge- Returns:
- index - The index of the edge
-
getName
public java.lang.String getName()
Get the name of the edge- Returns:
- name - The name
-
getFormatedName
public java.lang.String getFormatedName()
Get the formated name of the edge- Returns:
- The formated name
-
getEdge
public Edge getEdge()
Get the edge- Returns:
- edge - The edge
-
writeXTRFormat
public void writeXTRFormat(java.io.Writer writer) throws java.io.IOExceptionConvert the edge to format used in XTR files.- Parameters:
writer- - The java writer object- Throws:
java.io.IOException
-
-