Catrobat.IDE.Core.Xml.XmlObjects.Scripts.XmlScript.CreateCommonXML C# (CSharp) 메소드

CreateCommonXML() 보호된 메소드

protected CreateCommonXML ( System.Xml.Linq.XElement xRoot ) : void
xRoot System.Xml.Linq.XElement
리턴 void
        protected void CreateCommonXML(XElement xRoot)
        {
            if (Bricks != null)
            {
                XmlParserTempProjectHelper.Script = this;

                xRoot.Add(Bricks.CreateXml());
            }
        }
    }