package flexa.ff;

import flexa.fb.*;
import java.util.Map;
import java.util.HashMap;
import java.util.ArrayList;


public class library extends FComponent {
    
    public library() {
        super("ff.library");
    }

	public Object call(FContextInterface contexti, String aname, Object... args) throws Exception {
        ArrayList<FComponent> comps = findDescendantesWithName(aname);
        if( comps.size() > 0 ) 
            return comps.get(0).call(contexti, aname, args);
        return null;
    }

    
}

    