/******************************************************************************* * Copyright (c) 2016 itemis AG and others. * * 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: * Matthias Wienand (itemis AG) - initial API & implementation * *******************************************************************************/ package org.eclipse.gef.zest.examples.graph; import org.eclipse.gef.common.adapt.inject.AdapterInjectionSupport; import org.eclipse.gef.common.adapt.inject.AdapterInjectionSupport.LoggingMode; import org.eclipse.gef.zest.fx.ZestFxModule; public class ZestGraphExampleModule extends ZestFxModule { @Override protected void enableAdapterMapInjection() { install(new AdapterInjectionSupport(LoggingMode.PRODUCTION)); } }