if (cell instanceof NameModel)
{
return new NameView(cell);
} else if (cell instanceof PlaceModel)
{
return new PlaceView(cell, editor);
} else if (cell instanceof SubProcessModel)
{
return new SubProcessView(cell, editor);
} else if (cell instanceof OperatorTransitionModel)
{