/******************************************************************************* * Copyright (c) 2007 Alphonse Van Assche. * 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: * Alphonse Van Assche - initial API and implementation *******************************************************************************/ package org.eclipse.linuxtools.internal.rpm.rpmlint; /** * The activator class controls the plug-in life cycle */ public class Activator { /** * The id of this plugin. */ public static final String PLUGIN_ID = "org.eclipse.linuxtools.rpm.rpmlint"; //$NON-NLS-1$ /** * Specfile extension constant i.e. .spec files. */ public static final String SPECFILE_EXTENSION = "spec"; //$NON-NLS-1$ /** * RPM extension constant, i.e. .rpm files. */ public static final String RPMFILE_EXTENSION = "rpm"; //$NON-NLS-1$ }