Package org.w3c.css.sac

Examples of org.w3c.css.sac.SelectorList


        for (int i = 0; i < len; i++) {
            Rule r = ss.getRule(i);
            switch (r.getType()) {
            case StyleRule.TYPE:
                StyleRule style = (StyleRule)r;
                SelectorList sl = style.getSelectorList();
                int slen = sl.getLength();
                for (int j = 0; j < slen; j++) {
                    ExtendedSelector s = (ExtendedSelector)sl.item(j);
                    if (s.match(elt, pseudo)) {
                        rules.add(style);
                    }
                }
                break;
View Full Code Here


        for (int i = 0; i < len - 1; i++) {
            int idx = i;
            int min = Integer.MAX_VALUE;
            for (int j = i; j < len; j++) {
                StyleRule r = (StyleRule)rules.get(j);
                SelectorList sl = r.getSelectorList();
                int spec = 0;
                int slen = sl.getLength();
                for (int k = 0; k < slen; k++) {
                    ExtendedSelector s = (ExtendedSelector)sl.item(k);
                    if (s.match(elt, pseudo)) {
                        int sp = s.getSpecificity();
                        if (sp > spec) {
                            spec = sp;
                        }
View Full Code Here

    final Parser parser = CSSParserFactory.getInstance().createCSSParser();
    final StyleSheetHandler handler = new StyleSheetHandler();
    handler.init (resourceManager, null, 0, StyleKeyRegistry.getRegistry(), null);
    parser.setDocumentHandler(handler);
    final String selector = ".bordered";
    final SelectorList sl =
            parser.parseSelectors(new StringInputSource (selector, new URL("http://localhost")));
    System.exit(0);
  }
View Full Code Here

        handler.initParseContext(source);
        handler.setStyleRule(new CSSStyleRule(null, null));
        parser.setDocumentHandler(handler);

        final SelectorList selectorList = parser.parseSelectors(source);
        CSSParserContext.getContext().destroy();
        return selectorList;
      }
    }
    catch (Exception e)
View Full Code Here

/**
* @exception ParseException exception during the parse
*/
  final public void styleRule() throws ParseException {
    boolean start = false;
    SelectorList l = null;
    Token save;
    Locator loc;
    try {
      l = selectorList();
                        save = token;
View Full Code Here

      }
    }
  }

  final public SelectorList _parseSelectors() throws ParseException {
  SelectorList p = null;
    try {
      label_75:
      while (true) {
        switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
        case S:
View Full Code Here

    /**
     * Parses a ruleset.
     */
    protected void parseRuleSet() {
        SelectorList sl = null;

        try {
            sl = parseSelectorList();
        } catch (CSSParseException e) {
            reportError(e);
View Full Code Here

  for (int i = 0; i < llen; i++) {
      CSSRule rule = l.item(i);
      switch (rule.getType()) {
      case CSSRule.STYLE_RULE:
    CSSOMStyleRule sr = (CSSOMStyleRule)rule;
    SelectorList sl = sr.getSelectors();
    int slen = sl.getLength();
    for (int j = 0; j < slen; j++) {
        ExtendedSelector s = (ExtendedSelector)sl.item(j);
        if (s.match(e, pe)) {
      rl.append(rule);
        }
    }
    break;
View Full Code Here

  while ((llen = l.getLength()) > 0) {
      int min = Integer.MAX_VALUE;
      int imin = 0;
      for (int i = 0; i < llen; i++) {
    CSSOMStyleRule rule = (CSSOMStyleRule)l.item(i);
    SelectorList sl = rule.getSelectors();
    int spec = 0;
    int slen;
    if ((slen = sl.getLength()) == 1) {
        spec = ((ExtendedSelector)sl.item(0)).getSpecificity();
    } else {
        for (int j = 0; j < slen; j++) {
      ExtendedSelector s = (ExtendedSelector)sl.item(j);
      if (s.match(e, pe)) {
          spec = s.getSpecificity();
          break;
      }
        }
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.css.CSSRule#setCssText(String)}.
     */
    public void setCssText(String cssText) throws DOMException {
  SelectorList s = selectors;
  CSSOMStyleDeclaration sd = style;
  try {
      fireCSSStyleRuleChangeStart();
      style = new CSSOMStyleDeclaration(this, parser);
      style.addCSSStyleDeclarationChangeListener(this);
View Full Code Here

TOP

Related Classes of org.w3c.css.sac.SelectorList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.