1 /*
2 * SummaryRow.java
3 * Created on 24 Июль 2006 г., 22:32
4 */
5
6 package org.weda.store;
7
8 /**
9 *
10 * @author Mikhail Titov
11 */
12 public interface SummaryRow {
13 public boolean hasElement(int objectPosition, String propertyName);
14 public Object getResultValue(int objectPosition, String propertyName)
15 throws SummaryRowException;
16 }