ParseSourceTree() static private méthode

static private ParseSourceTree ( string tree ) : PBXSourceTree
tree string
Résultat PBXSourceTree
Exemple #1
0
 public override void UpdateVars()
 {
     name = GetPropertyString("name");
     path = GetPropertyString("path");
     if (name == null)
     {
         name = path;
     }
     if (path == null)
     {
         path = "";
     }
     tree = FileTypeUtils.ParseSourceTree(GetPropertyString("sourceTree"));
 }
Exemple #2
0
 public override void UpdateVars()
 {
     this.children = (GUIDList)this.GetPropertyList("children");
     this.path     = this.GetPropertyString("path");
     this.name     = this.GetPropertyString("name");
     if (this.name == null)
     {
         this.name = this.path;
     }
     if (this.path == null)
     {
         this.path = "";
     }
     this.tree = FileTypeUtils.ParseSourceTree(this.GetPropertyString("sourceTree"));
 }
Exemple #3
0
 public override void UpdateVars()
 {
     name   = GetPropertyString("name");
     m_Path = GetPropertyString("path");
     if (name == null)
     {
         name = m_Path;
     }
     if (m_Path == null)
     {
         m_Path = "";
     }
     tree = FileTypeUtils.ParseSourceTree(GetPropertyString("sourceTree"));
     m_ExplicitFileType  = GetPropertyString("explicitFileType");
     m_LastKnownFileType = GetPropertyString("lastKnownFileType");
 }
Exemple #4
0
 public override void UpdateVars()
 {
     this.name   = this.GetPropertyString("name");
     this.m_Path = this.GetPropertyString("path");
     if (this.name == null)
     {
         this.name = this.m_Path;
     }
     if (this.m_Path == null)
     {
         this.m_Path = "";
     }
     this.tree = FileTypeUtils.ParseSourceTree(this.GetPropertyString("sourceTree"));
     this.m_ExplicitFileType  = this.GetPropertyString("explicitFileType");
     this.m_LastKnownFileType = this.GetPropertyString("lastKnownFileType");
 }