// set name and description of the creation feature
super(fp, "InclusiveGateway", "Add inclusive gateway");
}
public Object[] create(ICreateContext context) {
InclusiveGateway inclusiveGateway = new InclusiveGateway();
addObjectToContainer(context, inclusiveGateway, "Inclusive Gateway");
return new Object[] { inclusiveGateway };
}