package com.vci.client.workflow.editor.ui;
|
|
import org.dom4j.Element;
|
|
import com.mxgraph.model.mxCell;
|
import com.vci.corba.common.VCIError;
|
|
public interface IProcessProperty {
|
|
public String getNodeType();
|
|
public void createAttribute(Element owner) throws VCIError;
|
|
public void setValue(String text);
|
|
}
|