/******************************************************************************* * Copyright (C) 2015, Max Hohenegger <eclipse@hohenegger.eu> * * 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.egit.gitflow.ui.internal; /** * Preferences used by the Gitflow UI plug-in. * <p> * All plug-in preferences shall be referenced by a constant in this class. */ public class UIPreferences { /** */ public final static String FEATURE_FINISH_SQUASH = "feature_finish_squash"; //$NON-NLS-1$ /** */ public final static String FEATURE_FINISH_KEEP_BRANCH = "feature_finish_keep_branch"; //$NON-NLS-1$ }