public static IconId GetStockIcon(PropertyDefinition property)
        {
            var accessor = property.GetMethod ?? property.SetMethod;
            var isStatic = (accessor.Attributes & MethodAttributes.Static) != 0;
            var global   = isStatic ? "static-" : "";

            return("md-" + MethodDefinitionNodeBuilder.GetAccess(accessor.Attributes) + global + "property");
        }