summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/profile/compiled
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-10-28 11:17:02 +0100
committerJon Bratseth <bratseth@verizonmedia.com>2019-10-28 11:17:02 +0100
commita1ea620f6e1aaa13b0ba916377bfa1d2c749b3f7 (patch)
treed4d5e03eb2dac36492cf633544de2ea787b2c3d5 /container-search/src/main/java/com/yahoo/search/query/profile/compiled
parentb18c69dd2233bdc1d791eedcafafa17ff635075e (diff)
Note value source when visiting
Diffstat (limited to 'container-search/src/main/java/com/yahoo/search/query/profile/compiled')
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/profile/compiled/ValueSource.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/query/profile/compiled/ValueSource.java b/container-search/src/main/java/com/yahoo/search/query/profile/compiled/ValueSource.java
new file mode 100644
index 00000000000..17326efb220
--- /dev/null
+++ b/container-search/src/main/java/com/yahoo/search/query/profile/compiled/ValueSource.java
@@ -0,0 +1,18 @@
+// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.search.query.profile.compiled;
+
+import com.yahoo.search.query.profile.DimensionValues;
+import com.yahoo.search.query.profile.QueryProfile;
+
+/**
+ * The source of a value in a compiled query profile
+ *
+ * @author bratseth
+ */
+public class ValueSource {
+
+ public ValueSource(QueryProfile owner, DimensionValues variant) {
+
+ }
+
+}