c418eac2274f6f9d44fc392450f2f9acd649b1f1
[deliverable/tracecompass.git] / tmf / org.lttng.scope.tmf2.views.ui / src / org / lttng / scope / tmf2 / views / ui / activator / internal / Activator.java
1 /*
2 * Copyright (C) 2017 EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 */
9
10 package org.lttng.scope.tmf2.views.ui.activator.internal;
11
12 import org.lttng.scope.tmf2.views.ui.ScopeUIActivator;
13
14 import javafx.application.Platform;
15
16 /**
17 * The activator class controls the plug-in life cycle
18 *
19 * @noreference This class should not be accessed outside of this plugin.
20 */
21 public class Activator extends ScopeUIActivator {
22
23 /**
24 * Return the singleton instance of this activator.
25 *
26 * @return The singleton instance
27 */
28 public static Activator instance() {
29 return ScopeUIActivator.getInstance(Activator.class);
30 }
31
32 @Override
33 protected void startActions() {
34 Platform.setImplicitExit(false);
35 }
36
37 @Override
38 protected void stopActions() {
39 }
40
41 }
This page took 0.030349 seconds and 4 git commands to generate.