class DogBiscuits::Concept

Public Instance Methods

agent?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 47
def agent?
  false
end
concept?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 51
def concept?
  true
end
concept_scheme?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 55
def concept_scheme?
  false
end
event?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 59
def event?
  false
end
group?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 63
def group?
  false
end
organisation?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 67
def organisation?
  false
end
person?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 71
def person?
  false
end
place?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 75
def place?
  false
end
project?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 79
def project?
  false
end
topconcept?() click to toggle source
# File lib/dog_biscuits/models/authorities/concept.rb, line 83
def topconcept?
  if top_concept_of.first.is_a? DogBiscuits::ConceptScheme
    true
  else
    false
  end
end