Package rocket.style.client

Examples of rocket.style.client.Rule


    }-*/;

  public Rule getRule(final StyleSheet styleSheet, final int index) {
    Checker.notNull("parameter:styleSheet", styleSheet);
   
    final Rule rule = this.getRule0(styleSheet, index);
    if (null == rule) {
      throw new IllegalArgumentException("The parameter:index is outside the range of actual stylesheets, index: " + index);
    }
    return rule;
  }
View Full Code Here


  }-*/;
 
  @Override
  public Rule getRule( final StyleSheet styleSheet, final int index ){
    Checker.notNull("parameter:styleSheet", styleSheet);
    final Rule rule = this.getRule0(styleSheet, index);
    if( null == rule ){
      throw new IllegalArgumentException("The parameter:index is outside the range of actual stylesheets, index: " + index );
    }
    return rule;
  }
View Full Code Here

TOP

Related Classes of rocket.style.client.Rule

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.