Catrobat.IDE.Core.Xml.XmlObjects.Bricks.ControlFlow.XmlBroadcastWaitBrick.LoadFromXml C# (CSharp) 메소드

LoadFromXml() 개인적인 메소드

private LoadFromXml ( System.Xml.Linq.XElement xRoot ) : void
xRoot System.Xml.Linq.XElement
리턴 void
        internal override void LoadFromXml(XElement xRoot)
        {
            if (xRoot != null && xRoot.Element(XmlConstants.BroadcastMessage) != null)
            {
                BroadcastMessage = xRoot.Element(XmlConstants.BroadcastMessage).Value;
            }
        }