public override void UpdateVars() { children = GetPropertyList("children"); path = GetPropertyString("path"); name = GetPropertyString("name"); if (name == null) { name = path; } if (path == null) { path = ""; } tree = FileTypeUtils.ParseSourceTree(GetPropertyString("sourceTree")); }
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"); }