1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Anakia
.DocData
19 public class EventDocData
: CommonDocData
21 private readonly string name
;
22 private readonly string delegateName
;
23 private readonly string id
;
24 private readonly string returnType
;
25 private Visibility access
;
26 private ParameterDocData
[] parameters
;
28 public EventDocData(string name
, string delegateName
, string id
, Visibility access
, String returnType
, ParameterDocData
[] parameters
)
31 this.delegateName
= delegateName
;
34 this.returnType
= returnType
;
35 this.parameters
= parameters
;
43 public string ReturnType
45 get { return returnType; }
53 public string DelegateName
55 get { return delegateName; }
58 public Visibility Access
60 get { return access; }
63 public ParameterDocData
[] Parameters
65 get { return parameters; }