}
public boolean includeDefinition(UIComponent parent, String name)
throws IOException, FaceletException, FacesException, ELException {
boolean found = false;
TemplateClient client;
for (int i = 0; i < this.clients.size() && found == false; i++) {
client = ((TemplateClient) this.clients.get(i));
if (client.equals(this.facelet))
continue;
found = client.apply(this, parent, name);
}
return found;
}