예제 #1
0
 /// <summary>
 /// Sets the start character.
 /// </summary>
 /// <param name="table">The table.</param>
 /// <param name="characterSet">The new character set to use.</param>
 public void SetCharacterSet(NamingTable table, CharacterSet characterSet)
 {
     if (namingTables.ContainsKey(table))
         namingTables[table] = characterSet;
     else
         namingTables.Add(table, characterSet);
 }
예제 #2
0
 /// <summary>
 /// Sets the start character.
 /// </summary>
 /// <param name="table">The table.</param>
 /// <param name="characterSet">The new character set to use.</param>
 public void SetCharacterSet(NamingTable table, CharacterSet characterSet)
 {
     if (namingTables.ContainsKey(table))
     {
         namingTables[table] = characterSet;
     }
     else
     {
         namingTables.Add(table, characterSet);
     }
 }
예제 #3
0
 public void SetCharacterSet(CharacterSet characterSet)
 {
     if (characterSet == DefaultCharacterSet)
     {
         namingTables.Clear();
         return;
     }
     foreach (NamingTable table in Enum.GetValues(typeof(NamingTable)))
     {
         SetCharacterSet(table, characterSet);
     }
 }
예제 #4
0
 public void SetCharacterSet(NamingTable table, CharacterSet characterSet)
 {
     namingTables[table] = characterSet;
 }