1 21 22 23 package org.apache.derby.ui.common; 24 25 public class Messages { 26 public static String D_NS_ATTEMPT_STARTED="Attempting to start the Apache Derby Network Server on port "; 27 public static String D_NS_ATTEMPT_STOPPED="Attempting to stop the Apache Derby Network Server on port "; 28 29 32 public static String D_NS_START_ERROR="Error starting Derby Network Server:\n"; 33 public static String D_NS_STOP_ERROR="Error stopping Derby Network Server:\n"; 34 35 public static String ADDING_NATURE="Adding Apache Derby Nature..."; 36 public static String DERBY_NATURE_ADDED="Finished adding Apache Derby Nature to the selected project"; 37 public static String ERROR_ADDING_NATURE="Error adding Derby jars to the project"; 38 39 public static String REMOVING_NATURE="Removing Apache Derby Nature..."; 40 public static String DERBY_NATURE_REMOVED="Finished removing Apache Derby Nature from the selected project"; 41 public static String ERROR_REMOVING_NATURE="Error removing Derby jars from the project"; 42 43 public static String NO_DERBY_NATURE="The selected project does not have an Apache Derby nature."; 44 public static String ADD_N_TRY="Please add the Derby nature and try again."; 45 46 public static String NO_ACTION="Unable to execute the action"; 47 public static String SERVER_RUNNING="The Network Server is already running.\nStop the server prior to changing the settings."; 48 } 49 | Popular Tags |