blob: 955c408c27dc0a96160d3f99b34a9ccf650ca2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.c2kernel.graph.model;
public class GraphModelCastorData
{
// Deprecated: Vertex outline creator is now set by the container
public String mClassNameOfVertexOutlineCreator = "";
public Vertex[] mVertexImpls = {};
public DirectedEdge[] mEdgeImpls = {};
public int mStartVertexId = 0;
public int mNextId = 0;
public GraphModelCastorData()
{
}
public GraphModelCastorData(String classNameOfVertexOutlineCreator,
Vertex[] vertexImpls,
DirectedEdge[] edgeImpls,
int startVertexId,
int nextId)
{
mClassNameOfVertexOutlineCreator = classNameOfVertexOutlineCreator;
mVertexImpls = vertexImpls;
mEdgeImpls = edgeImpls;
mStartVertexId = startVertexId;
mNextId = nextId;
}
}
|