ABB.Swum.FieldRule.InClass C# (CSharp) Method

InClass() public method

Determines whether the supplied ProgramElementNode matches the conditions of this rule.
public InClass ( ProgramElementNode node ) : bool
node ABB.Swum.Nodes.ProgramElementNode The ProgramElementNode to test.
return bool
        public override bool InClass(ProgramElementNode node)
        {
            return (node is FieldDeclarationNode);
        }