Package se.jbee.inject.DIRuntimeException

Examples of se.jbee.inject.DIRuntimeException.MoreFrequentExpiryException


  private void ensureNotMoreFrequentExpiry( Injection injection ) {
    final Expiry expiry = injection.getTarget().getExpiry();
    for ( int i = 0; i < hierarchy.length; i++ ) {
      Injection parent = hierarchy[i];
      if ( expiry.moreFrequent( parent.getTarget().getExpiry() ) ) {
        throw new MoreFrequentExpiryException( parent, injection );
      }
    }
  }
View Full Code Here

TOP

Related Classes of se.jbee.inject.DIRuntimeException.MoreFrequentExpiryException

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.