PHPAnalysis.Data.PHP.Interface.Interface C# (CSharp) Method

Interface() public method

public Interface ( XmlNode node ) : System.Collections.Generic
node System.Xml.XmlNode
return System.Collections.Generic
        public Interface(XmlNode node)
        {
            Preconditions.NotNull(node, "node");

            this.AstNode = node;
            this.Methods = new List<Function>();
        }