src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/WSDLDocumentVisitor.java

Thu, 31 Aug 2017 15:18:52 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:18:52 +0800
changeset 637
9c07ef4934dd
parent 368
0989ad8c0860
parent 0
373ffda63c9a
permissions
-rw-r--r--

merge

     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.internal.ws.wsdl.document;
    28 import com.sun.tools.internal.ws.wsdl.framework.ExtensionVisitor;
    30 /**
    31  * A visitor for WSDL documents.
    32  *
    33  * @author WS Development Team
    34  */
    35 public interface WSDLDocumentVisitor extends ExtensionVisitor {
    37     public void preVisit(Definitions definitions) throws Exception;
    38     public void postVisit(Definitions definitions) throws Exception;
    39     public void visit(Import i) throws Exception;
    40     public void preVisit(Types types) throws Exception;
    41     public void postVisit(Types types) throws Exception;
    42     public void preVisit(Message message) throws Exception;
    43     public void postVisit(Message message) throws Exception;
    44     public void visit(MessagePart part) throws Exception;
    45     public void preVisit(PortType portType) throws Exception;
    46     public void postVisit(PortType portType) throws Exception;
    47     public void preVisit(Operation operation) throws Exception;
    48     public void postVisit(Operation operation) throws Exception;
    49     public void preVisit(Input input) throws Exception;
    50     public void postVisit(Input input) throws Exception;
    51     public void preVisit(Output output) throws Exception;
    52     public void postVisit(Output output) throws Exception;
    53     public void preVisit(Fault fault) throws Exception;
    54     public void postVisit(Fault fault) throws Exception;
    55     public void preVisit(Binding binding) throws Exception;
    56     public void postVisit(Binding binding) throws Exception;
    57     public void preVisit(BindingOperation operation) throws Exception;
    58     public void postVisit(BindingOperation operation) throws Exception;
    59     public void preVisit(BindingInput input) throws Exception;
    60     public void postVisit(BindingInput input) throws Exception;
    61     public void preVisit(BindingOutput output) throws Exception;
    62     public void postVisit(BindingOutput output) throws Exception;
    63     public void preVisit(BindingFault fault) throws Exception;
    64     public void postVisit(BindingFault fault) throws Exception;
    65     public void preVisit(Service service) throws Exception;
    66     public void postVisit(Service service) throws Exception;
    67     public void preVisit(Port port) throws Exception;
    68     public void postVisit(Port port) throws Exception;
    69     public void visit(Documentation documentation) throws Exception;
    70 }

mercurial