Package jfun.yan.xml.nuts

Examples of jfun.yan.xml.nuts.Prop


* @author Ben Yu
* Dec 16, 2005 3:37:44 PM
*/
public class InjectorAspectNut extends AspectjNut {
  public void setInjection(Component inj){
    final Prop prop = new Prop();
    prop.initGloballyDefined(this.isGloballyDefined());
    prop.initNutEnvironment(this.getNutEnvironment());
    prop.initSequenceNumber(0);
    prop.initTagLocation(this.getTagLocation());
    prop.initTagName("injection");
    prop.setKey("injection");       
    prop.setVal(InjectionUtils.toInjection(inj));
    super.addProp(prop);
  }
View Full Code Here

TOP

Related Classes of jfun.yan.xml.nuts.Prop

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.