Overview   Project   Class   Tree   Deprecated   Index 
SourceFlow 1.0.beta API Documentation
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Org.SourceFlow.VisualBasic
Class VisualBasicModifier

System.Object
   |
   +--VisualBasicModifier

   in VisualBasicModifier.cs

internal abstract class VisualBasicModifier
extends System.Object

A class containing the Visual Basic modifier constants. This class shouldn't be used directly, but each class should declare it's own constants being equal to the constants here.


Field Summary
 const int FRIEND
          The friend access modifier constant.
 const int MUST_INHERIT
          The must inherit modifier constant.
 const int MUST_OVERRIDE
          The must override modifier constant.
 const int NOT_INHERITABLE
          The not inheritable modifier constant.
 const int NOT_OVERRIDABLE
          The not overridable modifier constant.
 const int OVERLOADS
          The overloads modifier constant.
 const int OVERRIDABLE
          The overridable modifier constant.
 const int OVERRIDES
          The overrides modifier constant.
 const int PRIVATE
          The private access modifier constant.
 const int PROTECTED
          The protected access modifier constant.
 const int PROTECTED_FRIEND
          The protected friend access modifier constant.
 const int PUBLIC
          The public access modifier constant.
 const int READONLY
          The read only modifier constant.
 const int SHADOWS
          The shadows modifier constant.
 const int SHARED
          The shared modifier constant.
 
Method Summary
 static string CreateModifierDecl( int modifiers )
          Creates a string with the specified modifiers.
 

Field Detail

FRIEND

public const int FRIEND;
The friend access modifier constant.

MUST_INHERIT

public const int MUST_INHERIT;
The must inherit modifier constant.

MUST_OVERRIDE

public const int MUST_OVERRIDE;
The must override modifier constant.

NOT_INHERITABLE

public const int NOT_INHERITABLE;
The not inheritable modifier constant.

NOT_OVERRIDABLE

public const int NOT_OVERRIDABLE;
The not overridable modifier constant.

OVERLOADS

public const int OVERLOADS;
The overloads modifier constant.

OVERRIDABLE

public const int OVERRIDABLE;
The overridable modifier constant.

OVERRIDES

public const int OVERRIDES;
The overrides modifier constant.

PRIVATE

public const int PRIVATE;
The private access modifier constant.

PROTECTED

public const int PROTECTED;
The protected access modifier constant.

PROTECTED_FRIEND

public const int PROTECTED_FRIEND;
The protected friend access modifier constant.

PUBLIC

public const int PUBLIC;
The public access modifier constant.

READONLY

public const int READONLY;
The read only modifier constant.

SHADOWS

public const int SHADOWS;
The shadows modifier constant.

SHARED

public const int SHARED;
The shared modifier constant.


Method Detail

CreateModifierDecl

public static string CreateModifierDecl( int modifiers );
Creates a string with the specified modifiers.
Parameters:
modifiers - the modifier flags
Returns:
a string representation of the modfier flags

 Overview   Project   Class   Tree   Deprecated   Index 
SourceFlow 1.0.beta API Documentation
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD