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 util;
12:
13: /**
14: Messages file for the util package.
15: *
16: */
17: public class Messages {
18: public final static String ADMIN = "Admin";
19: public final static String INTERNAL = "Internal";
20: public final static String SYSTEM = "System";
21: public final static String UNKNOWN = "Unknown";
22: public final static String USER = "User";
23:
24: public final static String ERROR = "Error";
25: public final static String WARNING = "Warning";
26: public final static String INFORMATION = "Information";
27:
28: public final static String DEPTHFIRSTSORTEDKEYNOTSTRING = "depth first sorted keys must be strings";
29:
30: public final static String KEYNOTDEPTHFIRSTSORTED = "key is not depth first sorted";
31:
32: public final static String UNKNOWNDESCENDANTTYPE = "unknown descendant type";
33:
34: public final static String UNKNOWNENUMERATIONTYPE = "unknown enumerationType";
35:
36: public final static String UNKNOWNVISIBILITY = "unknown visibility";
37: }
|