Class: Hatemile::AccessibleDisplay Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/hatemile/accessible_display.rb

Overview

This class is abstract.

The AccessibleDisplay interface improve accessibility, showing informations.

Instance Method Summary collapse

Instance Method Details

#display_all_alternative_text_imagesvoid

This method is abstract.

This method returns an undefined value.

Display the alternative text of all images of page.



174
175
176
# File 'lib/hatemile/accessible_display.rb', line 174

def display_all_alternative_text_images
  # Interface method
end

#display_all_cell_headersvoid

This method is abstract.

This method returns an undefined value.

Display the headers of each data cell of all tables of page.



77
78
79
# File 'lib/hatemile/accessible_display.rb', line 77

def display_all_cell_headers
  # Interface method
end

#display_all_languagesvoid

This method is abstract.

This method returns an undefined value.

Display the language of all elements of page.



155
156
157
# File 'lib/hatemile/accessible_display.rb', line 155

def display_all_languages
  # Interface method
end
This method is abstract.

This method returns an undefined value.

Display the attributes of all links of page.



116
117
118
# File 'lib/hatemile/accessible_display.rb', line 116

def display_all_links_attributes
  # Interface method
end

#display_all_rolesvoid

This method is abstract.

This method returns an undefined value.

Display the WAI-ARIA roles of all elements of page.



58
59
60
# File 'lib/hatemile/accessible_display.rb', line 58

def display_all_roles
  # Interface method
end

#display_all_shortcutsvoid

This method is abstract.

This method returns an undefined value.

Display all shortcuts of page.



39
40
41
# File 'lib/hatemile/accessible_display.rb', line 39

def display_all_shortcuts
  # Interface method
end

#display_all_titlesvoid

This method is abstract.

This method returns an undefined value.

Display the titles of all elements of page.



136
137
138
# File 'lib/hatemile/accessible_display.rb', line 136

def display_all_titles
  # Interface method
end

#display_all_waiaria_statesvoid

This method is abstract.

This method returns an undefined value.

Display the WAI-ARIA attributes of all elements of page.



97
98
99
# File 'lib/hatemile/accessible_display.rb', line 97

def display_all_waiaria_states
  # Interface method
end

#display_alternative_text_image(image) ⇒ void

This method is abstract.

This method returns an undefined value.

Display the alternative text of image.

Parameters:

  • image

    The image.



165
166
167
# File 'lib/hatemile/accessible_display.rb', line 165

def display_alternative_text_image(image)
  # Interface method
end

#display_cell_header(table_cell) ⇒ void

This method is abstract.

This method returns an undefined value.

Display the headers of each data cell of table.

Parameters:



68
69
70
# File 'lib/hatemile/accessible_display.rb', line 68

def display_cell_header(table_cell)
  # Interface method
end

#display_language(element) ⇒ void

This method is abstract.

This method returns an undefined value.

Display the language of element.

Parameters:



146
147
148
# File 'lib/hatemile/accessible_display.rb', line 146

def display_language(element)
  # Interface method
end
This method is abstract.

This method returns an undefined value.

Display the attributes of link.

Parameters:



107
108
109
# File 'lib/hatemile/accessible_display.rb', line 107

def display_link_attributes(link)
  # Interface method
end

#display_role(element) ⇒ void

This method is abstract.

This method returns an undefined value.

Display the WAI-ARIA role of element.

Parameters:



49
50
51
# File 'lib/hatemile/accessible_display.rb', line 49

def display_role(element)
  # Interface method
end

#display_shortcut(element) ⇒ void

This method is abstract.

This method returns an undefined value.

Display the shortcuts of element.

Parameters:



30
31
32
# File 'lib/hatemile/accessible_display.rb', line 30

def display_shortcut(element)
  # Interface method
end

#display_title(element) ⇒ void

This method is abstract.

This method returns an undefined value.

Display the title of element.

Parameters:



127
128
129
# File 'lib/hatemile/accessible_display.rb', line 127

def display_title(element)
  # Interface method
end

#display_waiaria_states(element) ⇒ void

This method is abstract.

This method returns an undefined value.

Display the WAI-ARIA attributes of element.

Parameters:



88
89
90
# File 'lib/hatemile/accessible_display.rb', line 88

def display_waiaria_states(element)
  # Interface method
end