/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo 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. * * OpenFlexo 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 OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.toolbox; public class FileCst { public static final String TEMPLATES_DIR_NAME = "Templates"; public static final String CONFIG_DIR_NAME = "Config"; public static final String IMAGES_DIR_NAME = "Images"; public static final String GENERATOR_DIR_NAME = "Generator"; // public static final String SPECIFIC_BUTTONS_DIR_NAME = "specificButtons"; public static final String CONTENTO_CSS_DIR_NAME = "Contento"; public static final String FLEXO_CSS_DIR_NAME = "Flexo"; public static final String OMNISCIO_CSS_DIR_NAME = "Omniscio"; public static final String CVS_DIR_NAME = "CVS"; public static final String IMAGE_REL_PATH = CONFIG_DIR_NAME + "/" + IMAGES_DIR_NAME; public static final String GENERATOR_TEMPLATES_REL_PATH = CONFIG_DIR_NAME + "/" + GENERATOR_DIR_NAME + "/" + TEMPLATES_DIR_NAME; public static final String DOC_GENERATOR_TEMPLATES_REL_PATH = CONFIG_DIR_NAME + "/" + TEMPLATES_DIR_NAME; public static final String SUPER_CLASS_SUFFIX = "Utils"; public static final String IMPORTED_IMAGE_DIR_NAME = "ImportedImages"; }