|
Revision 1824, 0.6 kB
(checked in by nahi, 2 years ago)
|
- Copyright notice updated. add '2000-2007' uniformly.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
# WSDL4R - WSDL SOAP documentation element. |
|---|
| 2 |
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>. |
|---|
| 3 |
|
|---|
| 4 |
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can |
|---|
| 5 |
# redistribute it and/or modify it under the same terms of Ruby's license; |
|---|
| 6 |
# either the dual license version in 2003, or any later version. |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
require 'wsdl/info' |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
module WSDL |
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
class Documentation < Info |
|---|
| 16 |
def initialize |
|---|
| 17 |
super |
|---|
| 18 |
end |
|---|
| 19 |
|
|---|
| 20 |
def parse_element(element) |
|---|
| 21 |
# Accepts any element. |
|---|
| 22 |
self |
|---|
| 23 |
end |
|---|
| 24 |
|
|---|
| 25 |
def parse_attr(attr, value) |
|---|
| 26 |
# Accepts any attribute. |
|---|
| 27 |
true |
|---|
| 28 |
end |
|---|
| 29 |
end |
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
end |
|---|