1de25cfa8ef7bb0f09ac5857d4b50dbcd92ca462
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / Print.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2006 IBM Corporation and others.
3 * Copyright (c) 2011, 2012 Ericsson.
4 *
5 * All rights reserved. This program and the accompanying materials
6 * are made available under the terms of the Eclipse Public License v1.0
7 * which accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors:
11 * IBM - Initial API and implementation
12 * Bernd Hufmann - Updated for TMF
13 **********************************************************************/
14 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
15
16 import org.eclipse.jface.action.Action;
17 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
18
19 /**
20 * Action class implementation for 'Printing'.
21 *
22 * @version 1.0
23 * @author sveyrier
24 */
25 public class Print extends Action {
26
27 // ------------------------------------------------------------------------
28 // Constants
29 // ------------------------------------------------------------------------
30 /**
31 * The action ID.
32 */
33 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.print"; //$NON-NLS-1$
34
35 // ------------------------------------------------------------------------
36 // Attributes
37 // ------------------------------------------------------------------------
38 /**
39 * The sequence diagram view reference
40 */
41 private SDView fView;
42
43 // ------------------------------------------------------------------------
44 // Constructors
45 // ------------------------------------------------------------------------
46 /**
47 * Constructor
48 *
49 * @param view The view reference
50 */
51 public Print(SDView view) {
52 super();
53 setId(ID);
54 fView = view;
55 }
56
57 // ------------------------------------------------------------------------
58 // Methods
59 // ------------------------------------------------------------------------
60 /*
61 * (non-Javadoc)
62 * @see org.eclipse.jface.action.Action#run()
63 */
64 @Override
65 public void run() {
66 if ((fView == null) || fView.getSDWidget() == null){
67 return;
68 }
69
70 fView.getSDWidget().print();
71 }
72 }
This page took 0.03095 seconds and 5 git commands to generate.