01: /*
02: * CONFIDENTIAL AND PROPRIETARY SOURCE CODE OF
03: * NETSCAPE COMMUNICATIONS CORPORATION
04: *
05: * Copyright (c) 1996 Netscape Communications Corporation.
06: * All Rights Reserved.
07: * Use of this Source Code is subject to the terms of the applicable
08: * license agreement from Netscape Communications Corporation.
09: */
10:
11: package query;
12:
13: /**
14: Messages file for the query package.
15: *
16: */
17: public class Messages {
18: public static final String OP_ADJ = "adjacent";
19: public static final String OP_AND = "and";
20: public static final String OP_OR = "or";
21:
22: public static final String OP_EQ = "=";
23: public static final String OP_NE = "!=";
24: public static final String OP_GE = ">=";
25: public static final String OP_LE = "<=";
26: public static final String OP_GT = ">";
27: public static final String OP_LT = "<";
28:
29: public static final String OP_DEL = "delete";
30: }
|