| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // System.CodeDom CodeMemberEvent Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- public class CodeMemberEvent : CodeClassMember {
- string implementsType, type;
- bool privateImplements;
-
- public CodeMemberEvent ()
- {
- }
- public string ImplementsType {
- get {
- return implementsType;
- }
- set {
- implementsType = value;
- }
- }
- public bool PrivateImplements {
- get {
- return privateImplements;
- }
- set {
- privateImplements = value;
- }
- }
- public string Type {
- get {
- return type;
- }
- set {
- type = value;
- }
- }
- }
- }
|