blob: e1521fcd97659436543c66f239b4e51c05a27c79 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui;
import org.eclipse.gef.requests.CreationFactory;
public class BPELLinkCreationFactory implements CreationFactory {
private Object type = null;
public class PartnerTempLink {
}
public class IncomingVarTempLink {
}
public class OutgoingVarTempLink {
}
public class CompensateTempLink {
}
public BPELLinkCreationFactory(Object type) {
super();
this.type = type;
}
public Object getNewObject() {
if (type == PartnerTempLink.class)
return new PartnerTempLink();
else if (type == IncomingVarTempLink.class)
return new IncomingVarTempLink();
else if (type == OutgoingVarTempLink.class)
return new OutgoingVarTempLink();
else if (type == CompensateTempLink.class)
return new CompensateTempLink();
return null;
}
public Object getObjectType() {
return type;
}
public void setObjectType(Object type) {
this.type = type;
}
}