/AvalonEdit/ICSharpCode.AvalonEdit/Highlighting/Xshd/XshdRuleSet.cs

http://github.com/icsharpcode/ILSpy · C# · 66 lines · 26 code · 7 blank · 33 comment · 0 complexity · 80bd729315c7f52424dad423f36b2995 MD5 · raw file

  1. // Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy of this
  4. // software and associated documentation files (the "Software"), to deal in the Software
  5. // without restriction, including without limitation the rights to use, copy, modify, merge,
  6. // publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
  7. // to whom the Software is furnished to do so, subject to the following conditions:
  8. //
  9. // The above copyright notice and this permission notice shall be included in all copies or
  10. // substantial portions of the Software.
  11. //
  12. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  13. // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  14. // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
  15. // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  16. // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  17. // DEALINGS IN THE SOFTWARE.
  18. using System;
  19. using System.Collections.Generic;
  20. using ICSharpCode.AvalonEdit.Utils;
  21. namespace ICSharpCode.AvalonEdit.Highlighting.Xshd
  22. {
  23. /// <summary>
  24. /// A rule set in a XSHD file.
  25. /// </summary>
  26. [Serializable]
  27. public class XshdRuleSet : XshdElement
  28. {
  29. /// <summary>
  30. /// Gets/Sets the name of the rule set.
  31. /// </summary>
  32. public string Name { get; set; }
  33. /// <summary>
  34. /// Gets/sets whether the case is ignored in expressions inside this rule set.
  35. /// </summary>
  36. public bool? IgnoreCase { get; set; }
  37. readonly NullSafeCollection<XshdElement> elements = new NullSafeCollection<XshdElement>();
  38. /// <summary>
  39. /// Gets the collection of elements.
  40. /// </summary>
  41. public IList<XshdElement> Elements {
  42. get { return elements; }
  43. }
  44. /// <summary>
  45. /// Applies the visitor to all elements.
  46. /// </summary>
  47. public void AcceptElements(IXshdVisitor visitor)
  48. {
  49. foreach (XshdElement element in Elements) {
  50. element.AcceptVisitor(visitor);
  51. }
  52. }
  53. /// <inheritdoc/>
  54. public override object AcceptVisitor(IXshdVisitor visitor)
  55. {
  56. return visitor.VisitRuleSet(this);
  57. }
  58. }
  59. }