*/
public List<QueryImpl> generateQueries(){
List<QueryImpl> list = new ArrayList<QueryImpl>();
for(Method method: methods){
list.add(new QueryImpl(method.getName(), method.getParameterTypes(),
getParams(method.getParameterTypes()), method.getReturnType(), owlOntologyManager));
}
return list;
}