/******************************************************************************* * Copyright (c) 2009, 2012 SpringSource, a divison of VMware, Inc. * 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: * SpringSource, a division of VMware, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.virgo.ide.jdt.internal.core.util; /** * @author Christian Dupuis */ public interface MarkerConstants { String MISSING_DEPENDENCY_KEY = "missing_dependency_key"; String MISSING_DEPENDENCY_VERSION_KEY = "missing_dependency_version_key"; String MISSING_DEPENDENCY_KIND_KEY = "missing_dependency_kind_key"; String MISSING_DEPENDENCY_KIND_REQUIRE_BUNDLE = "missing_dependency_require_bundle"; String MISSING_DEPENDENCY_KIND_IMPORT_BUNDLE = "missing_dependency_import_bundle"; String MISSING_DEPENDENCY_KIND_IMPORT_LIBRARY = "missing_dependency_import_library"; String MISSING_DEPENDENCY_KIND_IMPORT_PACKAGE = "missing_dependency_import_package"; }