Parses the module and returns the query context. @param ctx database context @return query context @throws QueryException query exception
(final Context ctx)
| 98 | * @throws QueryException query exception |
| 99 | */ |
| 100 | public QueryContext qc(final Context ctx) throws QueryException { |
| 101 | final QueryContext qc = new QueryContext(ctx); |
| 102 | qc.parse(content, file.path()); |
| 103 | return qc; |
| 104 | } |
| 105 | } |