Source code: com/prolifics/jni/GroupHandlerAdapter.java
1 /* @(#)GroupHandlerAdapter.java 77.3 99/01/20 15:35:25" */
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 GroupHandlerAdapter implements GroupHandler, Constants
17 {
18 public int groupEntry(GroupInterface g, int context) { return 0; }
19 public int groupExit(GroupInterface g, int context) { return 0; }
20 public int groupValidate(GroupInterface g, int context) { return 0; }
21 }