KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > client > _BrowserPlan


1 package com.daffodilwoods.daffodildb.client;
2
3 import com.daffodilwoods.database.resource.DException;
4 import com.daffodilwoods.daffodildb.server.sql99.common.ExecutionPlanForBrowser;
5
6 public interface _BrowserPlan{
7
8    /**
9     * These methods are needed for Browser to display the executionPlan of a
10     * Select Query.
11     * @return _ExecutionPlan
12     * @throws DException
13     */

14
15    public _ExecutionPlan getExecutionPlan() throws DException;
16    public ExecutionPlanForBrowser getExecutionPlanForBrowser() throws DException;
17
18 }
19
Popular Tags