From 41cbc56785fdb2d0d0fc0117d72ed5994a41668a Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Fri, 8 Dec 2023 15:13:19 +0100 Subject: [PATCH] DOC: add class docs to Query class --- src/main/java/org/caosdb/server/query/Query.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/caosdb/server/query/Query.java b/src/main/java/org/caosdb/server/query/Query.java index 507dc9d4..168b7ac8 100644 --- a/src/main/java/org/caosdb/server/query/Query.java +++ b/src/main/java/org/caosdb/server/query/Query.java @@ -72,14 +72,21 @@ import org.caosdb.server.permissions.EntityPermission; import org.caosdb.server.query.CQLParser.CqContext; import org.caosdb.server.query.CQLParsingErrorListener.ParsingError; import org.caosdb.server.transaction.EntityTransactionInterface; +import org.caosdb.server.transaction.Retrieve; import org.caosdb.server.transaction.Transaction; import org.caosdb.server.transaction.WriteTransaction; import org.jdom2.Element; import org.slf4j.Logger; -// TODO Document: The query is initialized with a RetrieveTransaction and its -// Container. The container is filled by the Query with the resulting IDs. The -// Retrieve transaction then handles the retrieve of all respective Entities. +/** + * This class represents a single, complete Query execution from the parsing of the query string to + * the resulting list of entity ids. + * + * <p>This class handles caching of queries and checking retrieve permissions as well. It does not, + * however, retrieve the resulting entities; this is handled by the {@link Retrieve} class. + * + * @author Timm Fitschen <t.fitschen@indiscale.com> + */ public class Query implements QueryInterface, ToElementable, EntityTransactionInterface { /** Class which represents the selection of (sub)properties. */ -- GitLab