1. /*
  2. * Copyright (c) 2000 World Wide Web Consortium,
  3. * (Massachusetts Institute of Technology, Institut National de
  4. * Recherche en Informatique et en Automatique, Keio University). All
  5. * Rights Reserved. This program is distributed under the W3C's Software
  6. * Intellectual Property License. This program is distributed in the
  7. * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  8. * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  9. * PURPOSE.
  10. * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  11. */
  12. package org.w3c.dom.css;
  13. import org.w3c.dom.DOMException;
  14. /**
  15. * The <code>CSSRule</code> interface is the abstract base interface for any
  16. * type of CSS statement. This includes both rule sets and at-rules. An
  17. * implementation is expected to preserve all rules specified in a CSS style
  18. * sheet, even if the rule is not recognized by the parser. Unrecognized
  19. * rules are represented using the <code>CSSUnknownRule</code> interface.
  20. * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
  21. * @since DOM Level 2
  22. */
  23. public interface CSSRule {
  24. // RuleType
  25. /**
  26. * The rule is a <code>CSSUnknownRule</code>.
  27. */
  28. public static final short UNKNOWN_RULE = 0;
  29. /**
  30. * The rule is a <code>CSSStyleRule</code>.
  31. */
  32. public static final short STYLE_RULE = 1;
  33. /**
  34. * The rule is a <code>CSSCharsetRule</code>.
  35. */
  36. public static final short CHARSET_RULE = 2;
  37. /**
  38. * The rule is a <code>CSSImportRule</code>.
  39. */
  40. public static final short IMPORT_RULE = 3;
  41. /**
  42. * The rule is a <code>CSSMediaRule</code>.
  43. */
  44. public static final short MEDIA_RULE = 4;
  45. /**
  46. * The rule is a <code>CSSFontFaceRule</code>.
  47. */
  48. public static final short FONT_FACE_RULE = 5;
  49. /**
  50. * The rule is a <code>CSSPageRule</code>.
  51. */
  52. public static final short PAGE_RULE = 6;
  53. /**
  54. * The type of the rule, as defined above. The expectation is that
  55. * binding-specific casting methods can be used to cast down from an
  56. * instance of the <code>CSSRule</code> interface to the specific
  57. * derived interface implied by the <code>type</code>.
  58. */
  59. public short getType();
  60. /**
  61. * The parsable textual representation of the rule. This reflects the
  62. * current state of the rule and not its initial value.
  63. * @exception DOMException
  64. * SYNTAX_ERR: Raised if the specified CSS string value has a syntax
  65. * error and is unparsable.
  66. * <br>INVALID_MODIFICATION_ERR: Raised if the specified CSS string
  67. * value represents a different type of rule than the current one.
  68. * <br>HIERARCHY_REQUEST_ERR: Raised if the rule cannot be inserted at
  69. * this point in the style sheet.
  70. * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if the rule is readonly.
  71. */
  72. public String getCssText();
  73. public void setCssText(String cssText)
  74. throws DOMException;
  75. /**
  76. * The style sheet that contains this rule.
  77. */
  78. public CSSStyleSheet getParentStyleSheet();
  79. /**
  80. * If this rule is contained inside another rule (e.g. a style rule
  81. * inside an @media block), this is the containing rule. If this rule is
  82. * not nested inside any other rules, this returns <code>null</code>.
  83. */
  84. public CSSRule getParentRule();
  85. }