/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or any later version. * * Squale 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 Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ package org.squale.squalecommon.enterpriselayer.businessobject.component; /** * Type des composants Les composants sont d�crits dans l'interface utilisateur par un nom symbolique */ public class ComponentType { /** * Classe */ public static final String CLASS = "component.class"; /** * M�thode */ public static final String METHOD = "component.method"; /** * Projet */ public static final String PROJECT = "component.project"; /** * Package */ public static final String PACKAGE = "component.package"; /** * Application */ public static final String APPLICATION = "component.application"; /** * Mod�le UML */ public static final String UML_MODEL = "component.umlmodel"; /** * Classe UML */ public static final String UML_CLASS = "component.umlclass"; /** * Interface UML */ public static final String UML_INTERFACE = "component.umlinterface"; /** * Package UML */ public static final String UML_PACKAGE = "component.umlpackage"; /** * Page JSP */ public static final String JSP = "component.jsp"; }