1/*
2 * Copyright (c) 1997, 2013, 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 */
25
26package com.sun.tools.internal.ws.wsdl.document;
27
28import com.sun.tools.internal.ws.wsdl.framework.ExtensionVisitorBase;
29
30
31/**
32 *
33 * @author WS Development Team
34 */
35public class WSDLDocumentVisitorBase extends ExtensionVisitorBase {
36    public WSDLDocumentVisitorBase() {
37    }
38
39    public void preVisit(Definitions definitions) throws Exception {
40    }
41    public void postVisit(Definitions definitions) throws Exception {
42    }
43    public void visit(Import i) throws Exception {
44    }
45    public void preVisit(Types types) throws Exception {
46    }
47    public void postVisit(Types types) throws Exception {
48    }
49    public void preVisit(Message message) throws Exception {
50    }
51    public void postVisit(Message message) throws Exception {
52    }
53    public void visit(MessagePart part) throws Exception {
54    }
55    public void preVisit(PortType portType) throws Exception {
56    }
57    public void postVisit(PortType portType) throws Exception {
58    }
59    public void preVisit(Operation operation) throws Exception {
60    }
61    public void postVisit(Operation operation) throws Exception {
62    }
63    public void preVisit(Input input) throws Exception {
64    }
65    public void postVisit(Input input) throws Exception {
66    }
67    public void preVisit(Output output) throws Exception {
68    }
69    public void postVisit(Output output) throws Exception {
70    }
71    public void preVisit(Fault fault) throws Exception {
72    }
73    public void postVisit(Fault fault) throws Exception {
74    }
75    public void preVisit(Binding binding) throws Exception {
76    }
77    public void postVisit(Binding binding) throws Exception {
78    }
79    public void preVisit(BindingOperation operation) throws Exception {
80    }
81    public void postVisit(BindingOperation operation) throws Exception {
82    }
83    public void preVisit(BindingInput input) throws Exception {
84    }
85    public void postVisit(BindingInput input) throws Exception {
86    }
87    public void preVisit(BindingOutput output) throws Exception {
88    }
89    public void postVisit(BindingOutput output) throws Exception {
90    }
91    public void preVisit(BindingFault fault) throws Exception {
92    }
93    public void postVisit(BindingFault fault) throws Exception {
94    }
95    public void preVisit(Service service) throws Exception {
96    }
97    public void postVisit(Service service) throws Exception {
98    }
99    public void preVisit(Port port) throws Exception {
100    }
101    public void postVisit(Port port) throws Exception {
102    }
103    public void visit(Documentation documentation) throws Exception {
104    }
105}
106