1 23 24 package org.objectweb.fractal.adl.attributes; 25 26 import org.objectweb.fractal.api.Component; 27 import org.objectweb.fractal.api.control.AttributeController; 28 import org.objectweb.fractal.util.Fractal; 29 30 34 35 public class FractalAttributeBuilder extends JavaAttributeBuilder { 36 37 41 public void setAttribute ( 42 final Object component, 43 final String attributeController, 44 final String name, 45 final String value, 46 final Object context) throws Exception 47 { 48 AttributeController attrCont = 49 Fractal.getAttributeController((Component)component); 50 super.setAttribute(attrCont, attributeController, name, value, context); 51 } 52 } 53 | Popular Tags |