Advertisement
OvidiuS

pawn.cs

Jun 14th, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 8.15 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. //     This code was generated by a tool.
  4. //     Runtime Version:4.0.30319.18063
  5. //
  6. //     Changes to this file may cause incorrect behavior and will be lost if
  7. //     the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10.  
  11. using System.Xml.Serialization;
  12.  
  13. //
  14. // This source code was auto-generated by xsd, Version=4.0.30319.17929.
  15. //
  16.  
  17.  
  18. /// <remarks/>
  19. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  20. [System.SerializableAttribute()]
  21. [System.Diagnostics.DebuggerStepThroughAttribute()]
  22. [System.ComponentModel.DesignerCategoryAttribute("code")]
  23. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  24. [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
  25. public partial class NotepadPlus {
  26.    
  27.     private NotepadPlusAutoComplete[] itemsField;
  28.    
  29.     /// <remarks/>
  30.     [System.Xml.Serialization.XmlElementAttribute("AutoComplete", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  31.     public NotepadPlusAutoComplete[] Items {
  32.         get {
  33.             return this.itemsField;
  34.         }
  35.         set {
  36.             this.itemsField = value;
  37.         }
  38.     }
  39. }
  40.  
  41. /// <remarks/>
  42. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  43. [System.SerializableAttribute()]
  44. [System.Diagnostics.DebuggerStepThroughAttribute()]
  45. [System.ComponentModel.DesignerCategoryAttribute("code")]
  46. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  47. public partial class NotepadPlusAutoComplete {
  48.    
  49.     private NotepadPlusAutoCompleteEnvironment[] environmentField;
  50.    
  51.     private NotepadPlusAutoCompleteKeyWord[] keyWordField;
  52.    
  53.     private string languageField;
  54.    
  55.     /// <remarks/>
  56.     [System.Xml.Serialization.XmlElementAttribute("Environment", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  57.     public NotepadPlusAutoCompleteEnvironment[] Environment {
  58.         get {
  59.             return this.environmentField;
  60.         }
  61.         set {
  62.             this.environmentField = value;
  63.         }
  64.     }
  65.    
  66.     /// <remarks/>
  67.     [System.Xml.Serialization.XmlElementAttribute("KeyWord", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  68.     public NotepadPlusAutoCompleteKeyWord[] KeyWord {
  69.         get {
  70.             return this.keyWordField;
  71.         }
  72.         set {
  73.             this.keyWordField = value;
  74.         }
  75.     }
  76.    
  77.     /// <remarks/>
  78.     [System.Xml.Serialization.XmlAttributeAttribute()]
  79.     public string language {
  80.         get {
  81.             return this.languageField;
  82.         }
  83.         set {
  84.             this.languageField = value;
  85.         }
  86.     }
  87. }
  88.  
  89. /// <remarks/>
  90. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  91. [System.SerializableAttribute()]
  92. [System.Diagnostics.DebuggerStepThroughAttribute()]
  93. [System.ComponentModel.DesignerCategoryAttribute("code")]
  94. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  95. public partial class NotepadPlusAutoCompleteEnvironment {
  96.    
  97.     private string ignoreCaseField;
  98.    
  99.     private string startFuncField;
  100.    
  101.     private string stopFuncField;
  102.    
  103.     private string paramSeparatorField;
  104.    
  105.     private string terminalField;
  106.    
  107.     private string additionalWordCharField;
  108.    
  109.     /// <remarks/>
  110.     [System.Xml.Serialization.XmlAttributeAttribute()]
  111.     public string ignoreCase {
  112.         get {
  113.             return this.ignoreCaseField;
  114.         }
  115.         set {
  116.             this.ignoreCaseField = value;
  117.         }
  118.     }
  119.    
  120.     /// <remarks/>
  121.     [System.Xml.Serialization.XmlAttributeAttribute()]
  122.     public string startFunc {
  123.         get {
  124.             return this.startFuncField;
  125.         }
  126.         set {
  127.             this.startFuncField = value;
  128.         }
  129.     }
  130.    
  131.     /// <remarks/>
  132.     [System.Xml.Serialization.XmlAttributeAttribute()]
  133.     public string stopFunc {
  134.         get {
  135.             return this.stopFuncField;
  136.         }
  137.         set {
  138.             this.stopFuncField = value;
  139.         }
  140.     }
  141.    
  142.     /// <remarks/>
  143.     [System.Xml.Serialization.XmlAttributeAttribute()]
  144.     public string paramSeparator {
  145.         get {
  146.             return this.paramSeparatorField;
  147.         }
  148.         set {
  149.             this.paramSeparatorField = value;
  150.         }
  151.     }
  152.    
  153.     /// <remarks/>
  154.     [System.Xml.Serialization.XmlAttributeAttribute()]
  155.     public string terminal {
  156.         get {
  157.             return this.terminalField;
  158.         }
  159.         set {
  160.             this.terminalField = value;
  161.         }
  162.     }
  163.    
  164.     /// <remarks/>
  165.     [System.Xml.Serialization.XmlAttributeAttribute()]
  166.     public string additionalWordChar {
  167.         get {
  168.             return this.additionalWordCharField;
  169.         }
  170.         set {
  171.             this.additionalWordCharField = value;
  172.         }
  173.     }
  174. }
  175.  
  176. /// <remarks/>
  177. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  178. [System.SerializableAttribute()]
  179. [System.Diagnostics.DebuggerStepThroughAttribute()]
  180. [System.ComponentModel.DesignerCategoryAttribute("code")]
  181. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  182. public partial class NotepadPlusAutoCompleteKeyWord {
  183.    
  184.     private NotepadPlusAutoCompleteKeyWordOverload[] overloadField;
  185.    
  186.     private string nameField;
  187.    
  188.     private string funcField;
  189.    
  190.     /// <remarks/>
  191.     [System.Xml.Serialization.XmlElementAttribute("Overload", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  192.     public NotepadPlusAutoCompleteKeyWordOverload[] Overload {
  193.         get {
  194.             return this.overloadField;
  195.         }
  196.         set {
  197.             this.overloadField = value;
  198.         }
  199.     }
  200.    
  201.     /// <remarks/>
  202.     [System.Xml.Serialization.XmlAttributeAttribute()]
  203.     public string name {
  204.         get {
  205.             return this.nameField;
  206.         }
  207.         set {
  208.             this.nameField = value;
  209.         }
  210.     }
  211.    
  212.     /// <remarks/>
  213.     [System.Xml.Serialization.XmlAttributeAttribute()]
  214.     public string func {
  215.         get {
  216.             return this.funcField;
  217.         }
  218.         set {
  219.             this.funcField = value;
  220.         }
  221.     }
  222. }
  223.  
  224. /// <remarks/>
  225. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  226. [System.SerializableAttribute()]
  227. [System.Diagnostics.DebuggerStepThroughAttribute()]
  228. [System.ComponentModel.DesignerCategoryAttribute("code")]
  229. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  230. public partial class NotepadPlusAutoCompleteKeyWordOverload {
  231.    
  232.     private NotepadPlusAutoCompleteKeyWordOverloadParam[] paramField;
  233.    
  234.     private string retValField;
  235.    
  236.     private string descrField;
  237.    
  238.     /// <remarks/>
  239.     [System.Xml.Serialization.XmlElementAttribute("Param", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  240.     public NotepadPlusAutoCompleteKeyWordOverloadParam[] Param {
  241.         get {
  242.             return this.paramField;
  243.         }
  244.         set {
  245.             this.paramField = value;
  246.         }
  247.     }
  248.    
  249.     /// <remarks/>
  250.     [System.Xml.Serialization.XmlAttributeAttribute()]
  251.     public string retVal {
  252.         get {
  253.             return this.retValField;
  254.         }
  255.         set {
  256.             this.retValField = value;
  257.         }
  258.     }
  259.    
  260.     /// <remarks/>
  261.     [System.Xml.Serialization.XmlAttributeAttribute()]
  262.     public string descr {
  263.         get {
  264.             return this.descrField;
  265.         }
  266.         set {
  267.             this.descrField = value;
  268.         }
  269.     }
  270. }
  271.  
  272. /// <remarks/>
  273. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  274. [System.SerializableAttribute()]
  275. [System.Diagnostics.DebuggerStepThroughAttribute()]
  276. [System.ComponentModel.DesignerCategoryAttribute("code")]
  277. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  278. public partial class NotepadPlusAutoCompleteKeyWordOverloadParam {
  279.    
  280.     private string nameField;
  281.    
  282.     /// <remarks/>
  283.     [System.Xml.Serialization.XmlAttributeAttribute()]
  284.     public string name {
  285.         get {
  286.             return this.nameField;
  287.         }
  288.         set {
  289.             this.nameField = value;
  290.         }
  291.     }
  292. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement