Пример #1
0
 public setting()
 {
     _numbers = new List<number>();
     _ieee_1641 = new ieee_1641();
     _atlas = new atlas();
 }
Пример #2
0
 public noun_modifier()
 {
     _items = new List<object>();
     _ieee_1641 = new ieee_1641();
     _atlas = new atlas();
 }
Пример #3
0
 public function()
 {
     _ieee_1641 = new ieee_1641();
     _atlas = new atlas();
 }
Пример #4
0
 public range()
 {
     _to = new to();
     _from = new from();
     _ieee_1641 = new ieee_1641();
     _atlas = new atlas();
 }
Пример #5
0
 public modifier_function()
 {
     _ieee_1641 = new ieee_1641();
     _atlas = new atlas();
 }
Пример #6
0
 public static bool LoadFromFile(string fileName, out atlas obj)
 {
     Exception exception;
     return LoadFromFile(fileName, out obj, out exception);
 }
Пример #7
0
 /// <summary>
 /// Deserializes xml markup from file into an atlas object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output atlas object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool LoadFromFile(string fileName, out atlas obj, out Exception exception)
 {
     exception = null;
     obj = default(atlas);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
Пример #8
0
 public static bool Deserialize(string input, out atlas obj)
 {
     Exception exception;
     return Deserialize(input, out obj, out exception);
 }
Пример #9
0
 /// <summary>
 /// Deserializes workflow markup into an atlas object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output atlas object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string input, out atlas obj, out Exception exception)
 {
     exception = null;
     obj = default(atlas);
     try
     {
         obj = Deserialize(input);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
Пример #10
0
 public require_type()
 {
     _ieee_1641 = new ieee_1641();
     _atlas = new atlas();
 }