ABB.Swum.FieldRule.InClass C# (CSharp) 메소드

InClass() 공개 메소드

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.
리턴 bool
        public override bool InClass(ProgramElementNode node)
        {
            return (node is FieldDeclarationNode);
        }