Class: Zenlish::WClasses::PossessiveDeterminer

Inherits:
Determiner show all
Defined in:
lib/zenlish/wclasses/possessive_determiner.rb

Overview

Possessive determiner (aka possessive adjective) is a class of determiner, that is used to modify nouns to denote possession my, your, her, his, its. they aren't used with other determiners like the, a/an, or this.

Instance Attribute Summary

Attributes inherited from WordClass

#paradigms

Instance Method Summary collapse

Methods inherited from WordClass

#extension

Methods included from Feature::FeatureStructDefBearer

#[], #boolean, #enumeration, #feature_def, #feature_def_dsl, #identifier, #init_struct_def, #struct

Constructor Details

#initializePossessiveDeterminer

Returns a new instance of PossessiveDeterminer.



10
11
12
13
14
# File 'lib/zenlish/wclasses/possessive_determiner.rb', line 10

def initialize
  super()
  init_feature_defs
  init_paradigms
end

Instance Method Details

#invariable?FalseClass

Returns Indicates that demonstrative determiners inflects.

Returns:

  • (FalseClass)

    Indicates that demonstrative determiners inflects.



17
18
19
# File 'lib/zenlish/wclasses/possessive_determiner.rb', line 17

def invariable?
  false
end