Catrobat.IDE.Core.Xml.XmlObjects.XmlSound.LoadFromXml C# (CSharp) Method

LoadFromXml() private method

private LoadFromXml ( System.Xml.Linq.XElement xRoot ) : void
xRoot System.Xml.Linq.XElement
return void
        internal override void LoadFromXml(XElement xRoot)
        {
            FileName = xRoot.Element(XmlConstants.FileName).Value;
            Name = xRoot.Element(XmlConstants.Name).Value;
        }