Method: Vedeu::Interfaces::Interface#attributes

Defined in:
lib/vedeu/interfaces/interface.rb

#attributesHash<Symbol => void>

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Hash<Symbol => void>)


82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/vedeu/interfaces/interface.rb', line 82

def attributes
  {
    client:         client,
    colour:         colour,
    cursor_visible: cursor_visible,
    delay:          delay,
    editable:       editable,
    group:          group,
    name:           name,
    parent:         parent,
    repository:     repository,
    style:          style,
    visible:        visible,
    wordwrap:       wordwrap,
    zindex:         zindex,
  }
end