01: /*
02: * The contents of this file are subject to the terms of the Common Development
03: * and Distribution License (the License). You may not use this file except in
04: * compliance with the License.
05: *
06: * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
07: * or http://www.netbeans.org/cddl.txt.
08: *
09: * When distributing Covered Code, include this CDDL Header Notice in each file
10: * and include the License file at http://www.netbeans.org/cddl.txt.
11: * If applicable, add the following below the CDDL Header, with the fields
12: * enclosed by brackets [] replaced by your own identifying information:
13: * "Portions Copyrighted [year] [name of copyright owner]"
14: *
15: * The Original Software is NetBeans. The Initial Developer of the Original
16: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
17: * Microsystems, Inc. All Rights Reserved.
18: */
19: package org.netbeans.modules.xslt.tmap.model.xsltmap;
20:
21: import org.netbeans.modules.xml.axi.AXIComponent;
22: import org.netbeans.modules.xml.wsdl.model.Message;
23: import org.netbeans.modules.xml.wsdl.model.Operation;
24: import org.netbeans.modules.xml.wsdl.model.OperationParameter;
25: import org.netbeans.modules.xml.xam.dom.NamedComponentReference;
26: import org.netbeans.modules.xslt.tmap.util.Util;
27: import org.openide.filesystems.FileObject;
28:
29: /**
30: *
31: * @author Vitaly Bychkov
32: * @version 1.0
33: */
34: public class InputTransformationDesc extends AbstractTransformationDesc {
35:
36: public InputTransformationDesc(XsltMapModel model,
37: TransformationUC transformUC) {
38: super (model, transformUC);
39: }
40:
41: public TransformationDescType getType() {
42: return TransformationDescType.INPUT;
43: }
44:
45: public AXIComponent getTargetAXIType(FileObject projectRoot) {
46: TransformationUC tUC = getParent();
47: if (tUC == null) {
48: return null;
49: }
50:
51: if (TransformationType.REQUEST_REPLY_SERVICE.equals(tUC
52: .getTransformationType())) {
53: return getPltTargetAXIType(projectRoot);
54: }
55:
56: OutputTransformationDesc outtDesc = tUC
57: .getOutputTransformationDesc();
58: return outtDesc == null ? null : outtDesc
59: .getPltSourceAXIType(projectRoot);
60: }
61:
62: public AXIComponent getSourceAXIType(FileObject projectRoot) {
63: return getPltSourceAXIType(projectRoot);
64: }
65:
66: public void setMessageType(Operation inputOperation,
67: Operation outputOperation) {
68: TransformationUC tUC = getParent();
69: if (tUC == null
70: || (inputOperation == null && outputOperation == null)) {
71: return;
72: }
73:
74: String messageType = null;
75: messageType = TransformationType.REQUEST_REPLY_SERVICE
76: .equals(tUC.getTransformationType()) ? Util
77: .getMessageType(inputOperation, false) : Util
78: .getMessageType(outputOperation, true);
79:
80: setMessageType(messageType);
81: }
82:
83: }
|