/**
* Returns a list of all preconditioned interfaces
*/
- // TODO: rename to get_full_...
- public Collection<TypeReference> get_all_implemented_interface_list () {
+ public Collection<TypeReference> get_full_implemented_interface_list () {
if (_full_implemented_interfaces == null) {
_full_implemented_interfaces = new LinkedList<TypeReference> ();
_full_implemented_interfaces.add_all (this.interfaces);
// interfaces:
Gee.LinkedList<Interface> printed_interfaces = new Gee.LinkedList<Interface> ();
- foreach (TypeReference pre_ref in iface.get_all_implemented_interface_list ()) {
+ foreach (TypeReference pre_ref in iface.get_full_implemented_interface_list ()) {
Interface pre = (Interface) unpack_type_reference (pre_ref);
if (!headline_printed && has_visible_inheritable_children (pre)) {