/** * Felinx - Integration link between Felix and Eclipse Copyright (C) 2013 Michiel Vermandel This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.jerry.felinx.plugin.launch; public interface LaunchConstants { public static String ATTR_LAUNCH_TARGET = "launchTarget"; public static String ATTR_DYNAMIC_BUNDLES = "dynamicBundles"; public static boolean DEFAULT_DYNAMIC_BUNDLES = true; public static String ATTR_CLEAN = "clean"; public static boolean DEFAULT_CLEAN = true; public static String ATTR_TRACE = "trace"; public static boolean DEFAULT_TRACE = false; public static String LAUNCH_CONFIG_TYPE = "jerry.launch"; }