Class: Hatemile::AccessibleAssociation Abstract

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

Overview

This class is abstract.

The AccessibleAssociation interface improve accessibility, associating elements.

Instance Method Summary collapse

Instance Method Details

#associate_all_data_cells_with_header_cellsvoid

This method is abstract.

This method returns an undefined value.

Associate all data cells with header cells of all tables of page.



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

def associate_all_data_cells_with_header_cells
  # Interface method
end

#associate_all_labels_with_fieldsvoid

This method is abstract.

This method returns an undefined value.

Associate all labels of page with fields.



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

def associate_all_labels_with_fields
  # Interface method
end

#associate_data_cells_with_header_cells(table) ⇒ void

This method is abstract.

This method returns an undefined value.

Associate all data cells with header cells of table.

Parameters:



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

def associate_data_cells_with_header_cells(table)
  # Interface method
end

#associate_label_with_field(label) ⇒ void

This method is abstract.

This method returns an undefined value.

Associate label with field.

Parameters:



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

def associate_label_with_field(label)
  # Interface method
end