blob: 6a23ffa4ed308f97dc6350deee8f95ba4a983463 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2013 Boeing
*
* 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/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.disposition.model;
/**
* @author Angel Avila
*/
public class DispoMessages {
private DispoMessages() {
//
}
// Messages
public static final String Program_NoneFound = "There are currently no disposition sets available on this branch";
public static final String Program_NotFound = "Dispositon Program was not found";
public static final String Set_NoneFound = "There are currently no disposition sets available on this branch";
public static final String Set_ConflictingNames = "Can't create sets with the same name";
public static final String Set_ErrorCreating = "Could not create set";
public static final String Set_EmptyNameOrPath = "The Set must have a name and import path";
public static final String Set_NotFound = "Dispositon Set was not found";
public static final String Item_EmptyName = "The Item must have a name";
public static final String Item_ConflictingNames = "Can't create items with the same name";
public static final String Item_NoneFound = "There are currently no disposition items available under this set";
public static final String Item_NotFound = "Dispositonable Item was not found";
public static final String Annotation_EmptyLocRef = "The Annotation must have a valid location reference";
public static final String Annotation_NoneFound = "There are currently no annotations available under this item";
public static final String Annotation_NotFound = "Annotation was not found";
}