当前位置: 首页>>代码示例>>Java>>正文


Java GatewayDirection类代码示例

本文整理汇总了Java中org.eclipse.bpmn2.GatewayDirection的典型用法代码示例。如果您正苦于以下问题:Java GatewayDirection类的具体用法?Java GatewayDirection怎么用?Java GatewayDirection使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


GatewayDirection类属于org.eclipse.bpmn2包,在下文中一共展示了GatewayDirection类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setGatewayDirection

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public void setGatewayDirection(GatewayDirection newGatewayDirection) {
	GatewayDirection oldGatewayDirection = gatewayDirection;
	gatewayDirection = newGatewayDirection == null ? GATEWAY_DIRECTION_EDEFAULT
			: newGatewayDirection;
	if (eNotificationRequired())
		eNotify(new ENotificationImpl(this, Notification.SET,
				Bpmn2Package.GATEWAY__GATEWAY_DIRECTION,
				oldGatewayDirection, gatewayDirection));
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:15,代码来源:GatewayImpl.java

示例2: eSet

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eSet(int featureID, Object newValue) {
	switch (featureID) {
	case Bpmn2Package.GATEWAY__GATEWAY_DIRECTION:
		setGatewayDirection((GatewayDirection) newValue);
		return;
	}
	super.eSet(featureID, newValue);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:15,代码来源:GatewayImpl.java

示例3: createGatewayDirectionFromString

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public GatewayDirection createGatewayDirectionFromString(
		EDataType eDataType, String initialValue) {
	GatewayDirection result = GatewayDirection.get(initialValue);
	if (result == null)
		throw new IllegalArgumentException("The value '" + initialValue
				+ "' is not a valid enumerator of '" + eDataType.getName()
				+ "'");
	return result;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:15,代码来源:Bpmn2FactoryImpl.java

示例4: setGatewayDirection

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public void setGatewayDirection(GatewayDirection newGatewayDirection) {
    GatewayDirection oldGatewayDirection = gatewayDirection;
    gatewayDirection = newGatewayDirection == null ? GATEWAY_DIRECTION_EDEFAULT
            : newGatewayDirection;
    if (eNotificationRequired())
        eNotify(new ENotificationImpl(this, Notification.SET,
                Bpmn2Package.GATEWAY__GATEWAY_DIRECTION, oldGatewayDirection, gatewayDirection));
}
 
开发者ID:fixteam,项目名称:fixflow,代码行数:14,代码来源:GatewayImpl.java

示例5: eSet

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public void eSet(int featureID, Object newValue) {
    switch (featureID) {
    case Bpmn2Package.GATEWAY__GATEWAY_DIRECTION:
        setGatewayDirection((GatewayDirection) newValue);
        return;
    }
    super.eSet(featureID, newValue);
}
 
开发者ID:fixteam,项目名称:fixflow,代码行数:15,代码来源:GatewayImpl.java

示例6: convertJsonToElement

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
protected FlowElement convertJsonToElement(JsonNode elementNode, JsonNode modelNode, Map<String, JsonNode> shapeMap) {
  ParallelGateway gateway = Bpmn2Factory.eINSTANCE.createParallelGateway();// ParallelGateway();
  String direction = getPropertyValueAsString(PROPERTY_GATEWAT_DIRECTION, elementNode);
  if(StringUtil.isNotEmpty(direction)){
  	GatewayDirection gatewayDirection = GatewayDirection.getByName(direction);
  	gateway.setGatewayDirection(gatewayDirection);
  }
  return gateway;
}
 
开发者ID:fixteam,项目名称:fixflow,代码行数:10,代码来源:ParallelGatewayJsonConverter.java

示例7: getGatewayDirection

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public GatewayDirection getGatewayDirection() {
	return gatewayDirection;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:9,代码来源:GatewayImpl.java

示例8: getGatewayDirection

import org.eclipse.bpmn2.GatewayDirection; //导入依赖的package包/类
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public GatewayDirection getGatewayDirection() {
    return gatewayDirection;
}
 
开发者ID:fixteam,项目名称:fixflow,代码行数:9,代码来源:GatewayImpl.java


注:本文中的org.eclipse.bpmn2.GatewayDirection类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。