01: /*
02:
03: Derby - Class org.apache.derby.ui.common.Messages
04:
05: Licensed to the Apache Software Foundation (ASF) under one or more
06: contributor license agreements. See the NOTICE file distributed with
07: this work for additional information regarding copyright ownership.
08: The ASF licenses this file to you under the Apache License, Version 2.0
09: (the "License"); you may not use this file except in compliance with
10: the License. You may obtain a copy of the License at
11:
12: http://www.apache.org/licenses/LICENSE-2.0
13:
14: Unless required by applicable law or agreed to in writing, software
15: distributed under the License is distributed on an "AS IS" BASIS,
16: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: See the License for the specific language governing permissions and
18: limitations under the License.
19:
20: */
21:
22: package org.apache.derby.ui.common;
23:
24: public class Messages {
25: public static String D_NS_ATTEMPT_STARTED = "Attempting to start the Apache Derby Network Server on port ";
26: public static String D_NS_ATTEMPT_STOPPED = "Attempting to stop the Apache Derby Network Server on port ";
27:
28: //public static String D_NS_STARTED="Apache Derby Network Server started.";
29: //public static String D_NS_STOPPED="Apache Derby Network Server stopped.";
30:
31: public static String D_NS_START_ERROR = "Error starting Derby Network Server:\n";
32: public static String D_NS_STOP_ERROR = "Error stopping Derby Network Server:\n";
33:
34: public static String ADDING_NATURE = "Adding Apache Derby Nature...";
35: public static String DERBY_NATURE_ADDED = "Finished adding Apache Derby Nature to the selected project";
36: public static String ERROR_ADDING_NATURE = "Error adding Derby jars to the project";
37:
38: public static String REMOVING_NATURE = "Removing Apache Derby Nature...";
39: public static String DERBY_NATURE_REMOVED = "Finished removing Apache Derby Nature from the selected project";
40: public static String ERROR_REMOVING_NATURE = "Error removing Derby jars from the project";
41:
42: public static String NO_DERBY_NATURE = "The selected project does not have an Apache Derby nature.";
43: public static String ADD_N_TRY = "Please add the Derby nature and try again.";
44:
45: public static String NO_ACTION = "Unable to execute the action";
46: public static String SERVER_RUNNING = "The Network Server is already running.\nStop the server prior to changing the settings.";
47: }
|