1 /*2 * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).3 * Initial Developer: H2 Group4 */5 package org.h2.result;6 7 import org.h2.value.Value;8 9 public interface SearchRow {10 11 int getPos();12 Value getValue(int index);13 int getColumnCount();14 void setValue(int idx, Value v);15 void setPos(int pos);16 17 }18