blob: a37b681a20346681cf8f3f6e2d7ae54615ee4d0c [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.details.providers;
import java.util.List;
import org.eclipse.bpel.model.Invoke;
import org.eclipse.bpel.model.OnEvent;
import org.eclipse.bpel.model.PartnerLink;
import org.eclipse.bpel.model.Receive;
import org.eclipse.bpel.model.Reply;
import org.eclipse.bpel.model.partnerlinktype.Role;
import org.eclipse.wst.wsdl.PortType;
/**
* Content provider for Operations.
*
* Expects a PortType as input.
*/
public class OperationContentProvider extends AbstractContentProvider {
@Override
public void collectElements(Object input, List list) {
if (input instanceof PortType) {
PortType pt = (PortType) input;
list.addAll ( pt.getOperations() );
return ;
}
// Return all the operations for a receive (myRole mapping to port types)
if (input instanceof Receive) {
Receive receive = (Receive) input;
collectElements( receive.getPortType(), list );
return;
}
if (input instanceof Reply) {
Reply reply = (Reply) input;
collectElements ( reply.getPortType(), list);
return ;
}
if (input instanceof Invoke) {
Invoke invoke = (Invoke) input;
collectElements ( invoke.getPortType(), list );
return ;
}
// https://issues.jboss.org/browse/JBIDE-8048
// for event handlers, the operation comes from partnerlink role
if (input instanceof OnEvent) {
OnEvent onEvent = (OnEvent) input;
PartnerLink partnerLink = onEvent.getPartnerLink();
if (partnerLink != null) {
Role myRole = partnerLink.getMyRole();
if (myRole != null) {
collectElements ( myRole.getPortType(), list );
}
}
return ;
}
}
}