Class: TaxonNameRelationship::SourceClassifiedAs
- Inherits:
-
TaxonNameRelationship
- Object
- TaxonNameRelationship
- TaxonNameRelationship::SourceClassifiedAs
- Defined in:
- app/models/taxon_name_relationship/source_classified_as.rb
Overview
Asserts that a Protonym or Combination (as subject) were classified under a particular parent (object)
!! Subject/Object meaning was inverted. !!
Class Method Summary collapse
- .assignable ⇒ Object
-
.assignment_method ⇒ Object
genus.source_classified_as = Family.
- .disjoint_object_classes ⇒ Object
-
.inverse_assignment_method ⇒ Object
family.as_source_classified_for = Genus.
- .nomenclatural_priority ⇒ Object
-
.valid_object_ranks ⇒ Object
right_side.
-
.valid_subject_ranks ⇒ Object
left_side.
Instance Method Summary collapse
- #object_status ⇒ Object
- #object_status_connector_to_subject ⇒ Object
- #set_cached_names_for_taxon_names ⇒ Object protected
- #subject_status ⇒ Object
- #subject_status_connector_to_object ⇒ Object
- #sv_coordinated_taxa ⇒ Object
- #sv_coordinated_taxa_object ⇒ Object
- #sv_validate_priority ⇒ Object
Class Method Details
.assignable ⇒ Object
54 55 56 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 54 def self.assignable true end |
.assignment_method ⇒ Object
genus.source_classified_as = Family
44 45 46 47 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 44 def self.assignment_method # :as_source_classified :source_classified_as end |
.disjoint_object_classes ⇒ Object
21 22 23 24 25 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 21 def self.disjoint_object_classes self.collect_descendants_and_itself_to_s(TaxonNameClassification::Iczn::Unavailable, TaxonNameClassification::Icn::EffectivelyPublished::InvalidlyPublished, TaxonNameClassification::Icn::NotEffectivelyPublished) end |
.inverse_assignment_method ⇒ Object
family.as_source_classified_for = Genus
50 51 52 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 50 def self.inverse_assignment_method :as_source_classified_for end |
.nomenclatural_priority ⇒ Object
58 59 60 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 58 def self.nomenclatural_priority nil end |
.valid_object_ranks ⇒ Object
right_side
17 18 19 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 17 def self.valid_object_ranks FAMILY_AND_ABOVE_RANK_NAMES end |
.valid_subject_ranks ⇒ Object
left_side
12 13 14 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 12 def self.valid_subject_ranks RANKS # RANK_CLASS_NAMES end |
Instance Method Details
#object_status ⇒ Object
31 32 33 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 31 def object_status 'as classified' end |
#object_status_connector_to_subject ⇒ Object
39 40 41 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 39 def object_status_connector_to_subject ' for' end |
#set_cached_names_for_taxon_names ⇒ Object (protected)
81 82 83 84 85 86 87 88 89 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 81 def set_cached_names_for_taxon_names begin TaxonName.transaction do t = subject_taxon_name t.set_cached_classified_as end end true end |
#subject_status ⇒ Object
27 28 29 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 27 def subject_status 'classified' end |
#subject_status_connector_to_object ⇒ Object
35 36 37 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 35 def subject_status_connector_to_object ' as' end |
#sv_coordinated_taxa ⇒ Object
62 63 64 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 62 def sv_coordinated_taxa true end |
#sv_coordinated_taxa_object ⇒ Object
66 67 68 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 66 def sv_coordinated_taxa_object true # not applicable end |
#sv_validate_priority ⇒ Object
70 71 72 73 74 75 76 77 |
# File 'app/models/taxon_name_relationship/source_classified_as.rb', line 70 def sv_validate_priority nil # date1 = self.subject_taxon_name.nomenclature_date # date2 = self.object_taxon_name.nomenclature_date # if !!date1 && !!date2 && date1 > date2 && subject_invalid_statuses.empty? # soft_validations.add(:type, "#{self.subject_status.capitalize} #{self.subject_taxon_name.cached_html_name_and_author_year} should not be younger than #{self.object_taxon_name.cached_html_name_and_author_year}") # end end |