Exemplo n.º 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);
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 3
0
 public void SetCharacterSet(CharacterSet characterSet)
 {
     if (characterSet == DefaultCharacterSet)
     {
         namingTables.Clear();
         return;
     }
     foreach (NamingTable table in Enum.GetValues(typeof(NamingTable)))
     {
         SetCharacterSet(table, characterSet);
     }
 }
Exemplo n.º 4
0
 public void SetCharacterSet(NamingTable table, CharacterSet characterSet)
 {
     namingTables[table] = characterSet;
 }