Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f0f78e7cee44dabc38e4d151e48d192016c04016 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*****************************************************************************
 * Copyright (c) 2012 CEA LIST.
 *
 *    
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.table.common.status;

import java.util.ArrayList;
import java.util.Collection;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.papyrus.uml.table.common.Activator;


public class PasteWarningStatus extends AbstractWarningPasteResultStatus implements IStatus {

	/**
	 * Instantiates a new error in paste status.
	 * 
	 * @param statusMessage
	 *        the status message
	 * @param element
	 *        the element
	 * @param feature
	 *        the feature
	 * @param pastedString
	 *        the pasted string
	 */
	public PasteWarningStatus(final String statusMessage, final EObject element) {
		super(statusMessage, element);
	}
}

Back to the top