public override void accept (Visitor visitor) {
visitor.visit_namespace (this);
}
+
+ /**
+ * {@inheritDoc}
+ */
+ public override bool is_browsable (Settings settings) {
+ return has_visible_children (settings);
+ }
}
return false;
}
+ /**
+ * Specifies whether this node has at least one visible child
+ */
+ public bool has_visible_children (Settings settings) {
+ return has_visible_children_by_types (per_type_children.keys.to_array (), settings);
+ }
+
/**
* Specifies whether this node has at least one child with the given type
*