KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > derby > ui > common > Messages


1 /*
2
3     Derby - Class org.apache.derby.ui.common.Messages
4     
5     Licensed to the Apache Software Foundation (ASF) under one or more
6     contributor license agreements. See the NOTICE file distributed with
7     this work for additional information regarding copyright ownership.
8     The ASF licenses this file to you under the Apache License, Version 2.0
9     (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
23 package org.apache.derby.ui.common;
24
25 public class Messages {
26     public static String JavaDoc D_NS_ATTEMPT_STARTED="Attempting to start the Apache Derby Network Server on port ";
27     public static String JavaDoc D_NS_ATTEMPT_STOPPED="Attempting to stop the Apache Derby Network Server on port ";
28     
29     //public static String D_NS_STARTED="Apache Derby Network Server started.";
30
//public static String D_NS_STOPPED="Apache Derby Network Server stopped.";
31

32     public static String JavaDoc D_NS_START_ERROR="Error starting Derby Network Server:\n";
33     public static String JavaDoc D_NS_STOP_ERROR="Error stopping Derby Network Server:\n";
34     
35     public static String JavaDoc ADDING_NATURE="Adding Apache Derby Nature...";
36     public static String JavaDoc DERBY_NATURE_ADDED="Finished adding Apache Derby Nature to the selected project";
37     public static String JavaDoc ERROR_ADDING_NATURE="Error adding Derby jars to the project";
38     
39     public static String JavaDoc REMOVING_NATURE="Removing Apache Derby Nature...";
40     public static String JavaDoc DERBY_NATURE_REMOVED="Finished removing Apache Derby Nature from the selected project";
41     public static String JavaDoc ERROR_REMOVING_NATURE="Error removing Derby jars from the project";
42     
43     public static String JavaDoc NO_DERBY_NATURE="The selected project does not have an Apache Derby nature.";
44     public static String JavaDoc ADD_N_TRY="Please add the Derby nature and try again.";
45     
46     public static String JavaDoc NO_ACTION="Unable to execute the action";
47     public static String JavaDoc SERVER_RUNNING="The Network Server is already running.\nStop the server prior to changing the settings.";
48 }
49
Popular Tags