Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/prolifics/jni/GridHandlerAdapter.java


1   /* @(#)GridHandlerAdapter.java  77.4 99/03/19 15:20:48" */
2   
3   /*************************************************/
4   /*  Copyright (c) 1998         */
5   /*      by         */
6   /*  JYACC, Inc., New York NY USA     */
7   /*  and contributors.         */
8   /*  Use of this program is governed by the   */
9   /*  JYACC Public License Version 1.0, a copy of   */
10  /*  which can be obtained at       */
11  /*  http://www.possl.org/jyacc-license.html   */
12  /*************************************************/
13  
14  package com.prolifics.jni;
15  
16  public class GridHandlerAdapter implements GridHandler, Constants
17  {
18    public int gridEntry(GridInterface g, FieldInterface f, int item,
19             int context)
20    { return 0; }
21    public int gridExit(GridInterface g, FieldInterface f, int item,
22            int context)
23    { return 0; }
24    public int gridValidate(GridInterface g, FieldInterface f, int item,
25          int context)
26    { return 0; }
27    public int gridRowEntry(GridInterface g, FieldInterface f,
28          int item, int context)
29    { return 0; }
30    public int gridRowExit(GridInterface g, FieldInterface f,
31               int item, int context)
32    { return 0; }
33  }