/** * Copyright 2006 Alcatel, OSP. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.alcatel.jsce.servicecreation.graph.component.figure; /** * Description: * <p> * * <p> * * @author Skhiri dit Gabouje Sabri * */ /** * @stereotype interface * @author Skhiri Sabri * @see Glyph */ public interface IGlyph { public static final String GLYPH = "Glyph"; public static final String LINK_GLYPH = "Link_Glyph"; public static final String BOX = "Box"; public static final String CIRCLE = "Circle"; public static final String ELLIPSE = "Ellipse"; public static final String ARROW = "Arrow"; public static final String BENDPOINT = "BendPoint"; public static final String TSHAPE = "TShape"; public static final String IN = "In"; public static final String OUT = "Out"; public static final String COLOR_GREEN = "Green"; public static final String COLOR_RED = "Red"; public static final String COLOR_BLACK = "Black"; public static final String COLOR_BLUE = "Blue"; public static final String COLOR_CYAN = "Cyan"; public static final String COLOR_NONE = "None"; public static final String COLOR_GRAY = "Grey"; public static final String BOLD = "Bold"; public static final String DOTED = "Discrete"; public static final String CONTINUE = "Continue"; public static final String LINK_BOLD = "Bold"; public static final String LINK_DOTED = "Discrete"; public static final String LINK_CONTINUE = "Continue"; public static final String NONE = "None"; public static final String UNDEF = "Undef"; public static final String TXT_CENTER = "Center"; public static final String TXT_RIGHT = "Right"; public static final String TXT_LEFT = "Left"; public static final String ANY = "Any"; }