Returns the name of a query.
Query interface
public String getName()
The following example retrieves the name of a query and writes it back to the user:
Query query = request.getQuery() ; response.write( "The query name is: " + query.getName() ) ;
View comments in LiveDocs