Package at.bestsolution.efxclipse.tooling.css.cssext.cssExtDsl

Examples of at.bestsolution.efxclipse.tooling.css.cssext.cssExtDsl.CSSRuleRef


    while( it.hasNext() ) {
      INode node = it.next();
   
     
      if (node.getSemanticElement() instanceof CSSRuleRef) {
        CSSRuleRef ref = (CSSRuleRef) node.getSemanticElement();
        if (ref.getRef() instanceof CSSRuleDefinition) {
          acceptor.addPosition(node.getOffset(), node.getLength(), CssExtHighlightingConfiguration.REFERENCES_ID);
        }
        else if (ref.getRef() instanceof PropertyDefinition) {
          acceptor.addPosition(node.getOffset(), node.getLength(), CssExtHighlightingConfiguration.PROPERTY_ID);
        }
      }
     
      else if (node.getSemanticElement() instanceof Doku) {
View Full Code Here


              if ((r instanceof CSSNumLiteral)) {
                int _value_1 = ((CSSNumLiteral) r).getValue();
                result.append(_value_1);
              } else {
                if ((r instanceof CSSRuleRef)) {
                  final CSSRuleRef ref = ((CSSRuleRef) r);
                  Definition _ref = ref.getRef();
                  EObject _findpackage = this.findpackage(_ref);
                  String _calcPackagename = this.calcPackagename(((PackageDefinition) _findpackage));
                  String _plus_2 = ("&lt;<a class=\'bs-href\' href=\'#r_" + _calcPackagename);
                  String _plus_3 = (_plus_2 + ".");
                  Definition _ref_1 = ref.getRef();
                  String _name = _ref_1.getName();
                  String _plus_4 = (_plus_3 + _name);
                  String _plus_5 = (_plus_4 + "\'>");
                  Definition _ref_2 = ref.getRef();
                  String _name_1 = _ref_2.getName();
                  String _plus_6 = (_plus_5 + _name_1);
                  String _plus_7 = (_plus_6 + "</a>&gt;");
                  result.append(_plus_7);
                } else {
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.css.cssext.cssExtDsl.CSSRuleRef

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.