blob: de4cc4dff82678ba5e5813958021b9cf76157a6e [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2005, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.nico.core;
import org.eclipse.osgi.util.NLS;
import org.eclipse.statet.jcommons.lang.NonNullByDefault;
@NonNullByDefault
@SuppressWarnings("null")
public class Messages extends NLS {
public static String SubmitType_Console_label;
public static String SubmitType_Editor_label;
public static String SubmitType_Tools_label;
public static String SubmitType_Other_label;
public static String LoadHistory_AllocatingTask_label;
public static String LoadHistory_ok_message;
public static String LoadHistory_error_message;
public static String SaveHistory_ok_message;
public static String SaveHistory_error_message;
public static String ErrorHandling_error_message;
public static String ToolRunnable_error_RuntimeError_message;
public static String Runtime_error_CriticalError_message;
public static String Runtime_error_UnexpectedTermination_message;
public static String ToolController_CommonStartTask_label;
public static String ToolController_FileOperation_error_CannotResolve_message;
public static String ToolController_SubmitCancelled_message;
public static String ToolController_ToolTerminated_message;
public static String ToolController_QueueSectionTerminated_message;
public static String Progress_Starting_label;
public static String Progress_Terminating_label;
public static String Progress_Canceled_label;
public static String Progress_Blocked_label;
public static String SessionVariables_StartupDate_description;
public static String SessionVariables_StartupTime_description;
public static String SessionVariables_ConnectionDate_description;
public static String SessionVariables_ConnectionTime_description;
public static String SessionVariables_StartupWD_description;
static {
NLS.initializeMessages(Messages.class.getName(), Messages.class);
}
private Messages() {}
}