Class: Hatemile::AccessibleNavigation Abstract

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

Overview

This class is abstract.

The AccessibleNavigation interface improve the accessibility of navigation.

Instance Method Summary collapse

Instance Method Details

#provide_navigation_by_all_headingsvoid

This method is abstract.

This method returns an undefined value.

Provide navigation by headings of page.



57
58
59
# File 'lib/hatemile/accessible_navigation.rb', line 57

def provide_navigation_by_all_headings
  # Interface method
end

#provide_navigation_by_all_skippersvoid

This method is abstract.

This method returns an undefined value.

Provide navigation by content skippers.



38
39
40
# File 'lib/hatemile/accessible_navigation.rb', line 38

def provide_navigation_by_all_skippers
  # Interface method
end

#provide_navigation_by_heading(heading) ⇒ void

This method is abstract.

This method returns an undefined value.

Provide navigation by heading.

Parameters:



48
49
50
# File 'lib/hatemile/accessible_navigation.rb', line 48

def provide_navigation_by_heading(heading)
  # Interface method
end

#provide_navigation_by_skipper(element) ⇒ void

This method is abstract.

This method returns an undefined value.

Provide a content skipper for element.

Parameters:



29
30
31
# File 'lib/hatemile/accessible_navigation.rb', line 29

def provide_navigation_by_skipper(element)
  # Interface method
end

#provide_navigation_to_all_long_descriptionsvoid

This method is abstract.

This method returns an undefined value.

Provide an alternative way to access the longs descriptions of all elements of page.



78
79
80
# File 'lib/hatemile/accessible_navigation.rb', line 78

def provide_navigation_to_all_long_descriptions
  # Interface method
end

#provide_navigation_to_long_description(image) ⇒ void

This method is abstract.

This method returns an undefined value.

Provide an alternative way to access the long description of element.

Parameters:



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

def provide_navigation_to_long_description(image)
  # Interface method
end