blob: 4f58c6eb9edfc7e3adfa2b625ede2abd75c16e28 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2005, 2019 SAP SE
*
* 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/
*
* Contributors:
* SAP SE - initial API, implementation and documentation
* mwenz - Bug 324859 - Need Undo/Redo support for Non-EMF based domain objects
* mwenz - Bug 370888 - API Access to export and print
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.graphiti.ui.internal.services;
import org.eclipse.graphiti.ui.internal.services.impl.CommandService;
import org.eclipse.graphiti.ui.internal.services.impl.EmfService;
import org.eclipse.graphiti.ui.internal.services.impl.GefService;
import org.eclipse.graphiti.ui.internal.services.impl.TraceService;
import org.eclipse.graphiti.ui.internal.services.impl.WorkbenchService;
/**
* @noinstantiate This class is not intended to be instantiated by clients.
* @noextend This class is not intended to be subclassed by clients.
*/
public class GraphitiUiInternal {
final private static IEmfService emfService = new EmfService();
final private static ITraceService traceService = new TraceService();
final private static IGefService gefService = new GefService();
final private static IWorkbenchService workbenchService = new WorkbenchService();
final private static ICommandService commandService = new CommandService();
public static IEmfService getEmfService() {
return emfService;
}
public static ITraceService getTraceService() {
return traceService;
}
public static IGefService getGefService() {
return gefService;
}
public static IWorkbenchService getWorkbenchService() {
return workbenchService;
}
public static ICommandService getCommandService() {
return commandService;
}
}