Package org.jboss.dependency.spi.dispatch

Examples of org.jboss.dependency.spi.dispatch.AttributeDispatchContext


/* 165 */     Object result = lookup.getTarget();
/* 166 */     if (this.property != null)
/*     */     {
/* 168 */       if ((lookup instanceof AttributeDispatchContext))
/*     */       {
/* 170 */         AttributeDispatchContext adc = (AttributeDispatchContext)lookup;
/* 171 */         result = adc.get(this.property);
/*     */       }
/*     */       else {
/* 174 */         throw new IllegalArgumentException("Cannot use property attribute, context is not AttributeDispatchContext: " + lookup + ", metadata: " + this);
/*     */       }
/*     */     }
View Full Code Here

TOP

Related Classes of org.jboss.dependency.spi.dispatch.AttributeDispatchContext

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.