/******************************************************************************* * Copyright (c) 2012-2015 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide; /** @author Artem Zatsarynnyy */ public interface Constants { final String CODENVY_PLUGIN_ID = "codenvy_extension"; // project type names final String CODENVY_PLUGIN_NAME = "Codenvy Extension"; final String CODENVY_CATEGORY = "Codenvy"; // project attribute names final String LANGUAGE = "language"; final String LANGUAGE_VERSION = "language.version"; final String FRAMEWORK = "framework"; final String BUILDER_NAME = "builder.name"; final String RUNNER_NAME = "runner.name"; final String RUNNER_ENV_ID = "runner.env_id"; }