Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7e29568ca08556ea2b900f341ce2a92e5c11bbad (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
43
44
/*****************************************************************************
 * 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
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.timing.custom.edit.parts;

import org.eclipse.gef.Request;
import org.eclipse.gmf.runtime.common.ui.services.parser.IParser;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.papyrus.uml.diagram.timing.custom.parsers.CompactStateInvariantNameParser;
import org.eclipse.papyrus.uml.diagram.timing.edit.parts.CompactStateInvariantNameEditPart;

public class CustomCompactStateInvariantNameEditPart extends CompactStateInvariantNameEditPart {

	private IParser parser;

	public CustomCompactStateInvariantNameEditPart(final View view) {
		super(view);
	}

	@Override
	public void performRequest(final Request request) {
		if(request.getType() == REQ_OPEN) {
			// double-click on the label is handled by the parent (to cut the CompactStateInvariant)
			getParent().performRequest(request);
		} else {
			super.performRequest(request);
		}
	}

	@Override
	public IParser getParser() {
		if(this.parser == null) {
			this.parser = new CompactStateInvariantNameParser();
		}
		return this.parser;
	}
}

Back to the top