src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/DelegatingParserExtension.java

changeset 408
b0610cd08440
parent 368
0989ad8c0860
child 637
9c07ef4934dd
     1.1 --- a/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/DelegatingParserExtension.java	Thu Sep 26 10:43:28 2013 -0700
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/DelegatingParserExtension.java	Fri Oct 04 16:21:34 2013 +0100
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -25,7 +25,7 @@
    1.11  
    1.12  package com.sun.xml.internal.ws.wsdl.parser;
    1.13  
    1.14 -import com.sun.xml.internal.ws.api.model.wsdl.*;
    1.15 +import com.sun.xml.internal.ws.api.model.wsdl.editable.*;
    1.16  import com.sun.xml.internal.ws.api.wsdl.parser.WSDLParserExtension;
    1.17  import com.sun.xml.internal.ws.api.wsdl.parser.WSDLParserExtensionContext;
    1.18  
    1.19 @@ -48,31 +48,31 @@
    1.20          core.start(context);
    1.21      }
    1.22  
    1.23 -    public void serviceAttributes(WSDLService service, XMLStreamReader reader) {
    1.24 +    public void serviceAttributes(EditableWSDLService service, XMLStreamReader reader) {
    1.25          core.serviceAttributes(service, reader);
    1.26      }
    1.27  
    1.28 -    public boolean serviceElements(WSDLService service, XMLStreamReader reader) {
    1.29 +    public boolean serviceElements(EditableWSDLService service, XMLStreamReader reader) {
    1.30          return core.serviceElements(service, reader);
    1.31      }
    1.32  
    1.33 -    public void portAttributes(WSDLPort port, XMLStreamReader reader) {
    1.34 +    public void portAttributes(EditableWSDLPort port, XMLStreamReader reader) {
    1.35          core.portAttributes(port, reader);
    1.36      }
    1.37  
    1.38 -    public boolean portElements(WSDLPort port, XMLStreamReader reader) {
    1.39 +    public boolean portElements(EditableWSDLPort port, XMLStreamReader reader) {
    1.40          return core.portElements(port, reader);
    1.41      }
    1.42  
    1.43 -    public boolean portTypeOperationInput(WSDLOperation op, XMLStreamReader reader) {
    1.44 +    public boolean portTypeOperationInput(EditableWSDLOperation op, XMLStreamReader reader) {
    1.45          return core.portTypeOperationInput(op, reader);
    1.46      }
    1.47  
    1.48 -    public boolean portTypeOperationOutput(WSDLOperation op, XMLStreamReader reader) {
    1.49 +    public boolean portTypeOperationOutput(EditableWSDLOperation op, XMLStreamReader reader) {
    1.50          return core.portTypeOperationOutput(op, reader);
    1.51      }
    1.52  
    1.53 -    public boolean portTypeOperationFault(WSDLOperation op, XMLStreamReader reader) {
    1.54 +    public boolean portTypeOperationFault(EditableWSDLOperation op, XMLStreamReader reader) {
    1.55          return core.portTypeOperationFault(op, reader);
    1.56      }
    1.57  
    1.58 @@ -80,91 +80,91 @@
    1.59          return core.definitionsElements(reader);
    1.60      }
    1.61  
    1.62 -    public boolean bindingElements(WSDLBoundPortType binding, XMLStreamReader reader) {
    1.63 +    public boolean bindingElements(EditableWSDLBoundPortType binding, XMLStreamReader reader) {
    1.64          return core.bindingElements(binding, reader);
    1.65      }
    1.66  
    1.67 -    public void bindingAttributes(WSDLBoundPortType binding, XMLStreamReader reader) {
    1.68 +    public void bindingAttributes(EditableWSDLBoundPortType binding, XMLStreamReader reader) {
    1.69          core.bindingAttributes(binding, reader);
    1.70      }
    1.71  
    1.72 -    public boolean portTypeElements(WSDLPortType portType, XMLStreamReader reader) {
    1.73 +    public boolean portTypeElements(EditableWSDLPortType portType, XMLStreamReader reader) {
    1.74          return core.portTypeElements(portType, reader);
    1.75      }
    1.76  
    1.77 -    public void portTypeAttributes(WSDLPortType portType, XMLStreamReader reader) {
    1.78 +    public void portTypeAttributes(EditableWSDLPortType portType, XMLStreamReader reader) {
    1.79          core.portTypeAttributes(portType, reader);
    1.80      }
    1.81  
    1.82 -    public boolean portTypeOperationElements(WSDLOperation operation, XMLStreamReader reader) {
    1.83 +    public boolean portTypeOperationElements(EditableWSDLOperation operation, XMLStreamReader reader) {
    1.84          return core.portTypeOperationElements(operation, reader);
    1.85      }
    1.86  
    1.87 -    public void portTypeOperationAttributes(WSDLOperation operation, XMLStreamReader reader) {
    1.88 +    public void portTypeOperationAttributes(EditableWSDLOperation operation, XMLStreamReader reader) {
    1.89          core.portTypeOperationAttributes(operation, reader);
    1.90      }
    1.91  
    1.92 -    public boolean bindingOperationElements(WSDLBoundOperation operation, XMLStreamReader reader) {
    1.93 +    public boolean bindingOperationElements(EditableWSDLBoundOperation operation, XMLStreamReader reader) {
    1.94          return core.bindingOperationElements(operation, reader);
    1.95      }
    1.96  
    1.97 -    public void bindingOperationAttributes(WSDLBoundOperation operation, XMLStreamReader reader) {
    1.98 +    public void bindingOperationAttributes(EditableWSDLBoundOperation operation, XMLStreamReader reader) {
    1.99          core.bindingOperationAttributes(operation, reader);
   1.100      }
   1.101  
   1.102 -    public boolean messageElements(WSDLMessage msg, XMLStreamReader reader) {
   1.103 +    public boolean messageElements(EditableWSDLMessage msg, XMLStreamReader reader) {
   1.104          return core.messageElements(msg, reader);
   1.105      }
   1.106  
   1.107 -    public void messageAttributes(WSDLMessage msg, XMLStreamReader reader) {
   1.108 +    public void messageAttributes(EditableWSDLMessage msg, XMLStreamReader reader) {
   1.109          core.messageAttributes(msg, reader);
   1.110      }
   1.111  
   1.112 -    public boolean portTypeOperationInputElements(WSDLInput input, XMLStreamReader reader) {
   1.113 +    public boolean portTypeOperationInputElements(EditableWSDLInput input, XMLStreamReader reader) {
   1.114          return core.portTypeOperationInputElements(input, reader);
   1.115      }
   1.116  
   1.117 -    public void portTypeOperationInputAttributes(WSDLInput input, XMLStreamReader reader) {
   1.118 +    public void portTypeOperationInputAttributes(EditableWSDLInput input, XMLStreamReader reader) {
   1.119          core.portTypeOperationInputAttributes(input, reader);
   1.120      }
   1.121  
   1.122 -    public boolean portTypeOperationOutputElements(WSDLOutput output, XMLStreamReader reader) {
   1.123 +    public boolean portTypeOperationOutputElements(EditableWSDLOutput output, XMLStreamReader reader) {
   1.124          return core.portTypeOperationOutputElements(output, reader);
   1.125      }
   1.126  
   1.127 -    public void portTypeOperationOutputAttributes(WSDLOutput output, XMLStreamReader reader) {
   1.128 +    public void portTypeOperationOutputAttributes(EditableWSDLOutput output, XMLStreamReader reader) {
   1.129          core.portTypeOperationOutputAttributes(output, reader);
   1.130      }
   1.131  
   1.132 -    public boolean portTypeOperationFaultElements(WSDLFault fault, XMLStreamReader reader) {
   1.133 +    public boolean portTypeOperationFaultElements(EditableWSDLFault fault, XMLStreamReader reader) {
   1.134          return core.portTypeOperationFaultElements(fault, reader);
   1.135      }
   1.136  
   1.137 -    public void portTypeOperationFaultAttributes(WSDLFault fault, XMLStreamReader reader) {
   1.138 +    public void portTypeOperationFaultAttributes(EditableWSDLFault fault, XMLStreamReader reader) {
   1.139          core.portTypeOperationFaultAttributes(fault, reader);
   1.140      }
   1.141  
   1.142 -    public boolean bindingOperationInputElements(WSDLBoundOperation operation, XMLStreamReader reader) {
   1.143 +    public boolean bindingOperationInputElements(EditableWSDLBoundOperation operation, XMLStreamReader reader) {
   1.144          return core.bindingOperationInputElements(operation, reader);
   1.145      }
   1.146  
   1.147 -    public void bindingOperationInputAttributes(WSDLBoundOperation operation, XMLStreamReader reader) {
   1.148 +    public void bindingOperationInputAttributes(EditableWSDLBoundOperation operation, XMLStreamReader reader) {
   1.149          core.bindingOperationInputAttributes(operation, reader);
   1.150      }
   1.151  
   1.152 -    public boolean bindingOperationOutputElements(WSDLBoundOperation operation, XMLStreamReader reader) {
   1.153 +    public boolean bindingOperationOutputElements(EditableWSDLBoundOperation operation, XMLStreamReader reader) {
   1.154          return core.bindingOperationOutputElements(operation, reader);
   1.155      }
   1.156  
   1.157 -    public void bindingOperationOutputAttributes(WSDLBoundOperation operation, XMLStreamReader reader) {
   1.158 +    public void bindingOperationOutputAttributes(EditableWSDLBoundOperation operation, XMLStreamReader reader) {
   1.159          core.bindingOperationOutputAttributes(operation, reader);
   1.160      }
   1.161  
   1.162 -    public boolean bindingOperationFaultElements(WSDLBoundFault fault, XMLStreamReader reader) {
   1.163 +    public boolean bindingOperationFaultElements(EditableWSDLBoundFault fault, XMLStreamReader reader) {
   1.164          return core.bindingOperationFaultElements(fault, reader);
   1.165      }
   1.166  
   1.167 -    public void bindingOperationFaultAttributes(WSDLBoundFault fault, XMLStreamReader reader) {
   1.168 +    public void bindingOperationFaultAttributes(EditableWSDLBoundFault fault, XMLStreamReader reader) {
   1.169          core.bindingOperationFaultAttributes(fault, reader);
   1.170      }
   1.171  

mercurial