Exemple #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);
        }
Exemple #2
0
 public MiscWord(string word, Pronunciation pronunciation, List <Definition> definitions)
     : base(word, pronunciation, definitions)
 {
 }
Exemple #3
0
 public MiscWord(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }
Exemple #4
0
 public ProperNoun(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }
Exemple #5
0
 public ProperNoun(string word, Pronunciation pronunciation, List <Definition> definitions)
     : base(word, pronunciation, definitions)
 {
 }
Exemple #6
0
 public Adverb(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }
Exemple #7
0
 public Adverb(string word, Pronunciation pronunciation, List <Definition> definitions)
     : base(word, pronunciation, definitions)
 {
 }
Exemple #8
0
 public Adjective(string word, Pronunciation pronunciation, Definition definition)
     : base(word, pronunciation, definition)
 {
 }