Exemplo n.º 1
0
        //--------------------------------------------------------------------------------------------
        // Constructors and factory methods
        //--------------------------------------------------------------------------------------------
        public Word(string word, Pronunciation pronunciation, List <Definition> definitions)
        {
            List <Pronunciation> pronunciations = new List <Pronunciation>();

            pronunciations.Add(pronunciation);
            init(word, pronunciations, definitions);
        }
Exemplo n.º 2
0
 public MiscWord(string word, Pronunciation pronunciation, List <Definition> definitions)
     : base(word, pronunciation, definitions)
 {
 }
Exemplo n.º 3
0
 public MiscWord(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }
Exemplo n.º 4
0
 public ProperNoun(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }
Exemplo n.º 5
0
 public ProperNoun(string word, Pronunciation pronunciation, List <Definition> definitions)
     : base(word, pronunciation, definitions)
 {
 }
Exemplo n.º 6
0
 public Adverb(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }
Exemplo n.º 7
0
 public Adverb(string word, Pronunciation pronunciation, List <Definition> definitions)
     : base(word, pronunciation, definitions)
 {
 }
Exemplo n.º 8
0
 public Adjective(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }