/* $Id: ArgoTokenTable.java 17832 2010-01-12 19:02:29Z linus $ ***************************************************************************** * Copyright (c) 2009 Contributors - see below * 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: * tfmorris ***************************************************************************** * * Some portions of this file was previously release using the BSD License: */ // Copyright (c) 1996-2008 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice // and this paragraph appear in all copies. This software program and // documentation are copyrighted by The Regents of the University of // California. The software program and documentation are supplied "AS // IS", without any accompanying services from The Regents. The Regents // does not warrant that the operation of the program will be // uninterrupted or error-free. The end-user understands that the program // was developed for research purposes and is advised not to rely // exclusively on the program for any reason. IN NO EVENT SHALL THE // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. package org.argouml.persistence; /** * These strings are used in the final output in a zargo. * * @author Jim Holt */ class ArgoTokenTable extends XMLTokenTableBase { /** * The constructor. */ public ArgoTokenTable() { super(32); } //////////////////////////////////////////////////////////////// // constants /* These strings match the XML element names in the argo.tee exactly. */ private static final String STRING_ARGO = "argo"; private static final String STRING_AUTHORNAME = "authorname"; private static final String STRING_AUTHOREMAIL = "authoremail"; private static final String STRING_VERSION = "version"; private static final String STRING_DESCRIPTION = "description"; private static final String STRING_SEARCHPATH = "searchpath"; private static final String STRING_MEMBER = "member"; private static final String STRING_HISTORYFILE = "historyfile"; private static final String STRING_DOCUMENTATION = "documentation"; private static final String STRING_SETTINGS = "settings"; private static final String STRING_NOTATIONLANGUAGE = "notationlanguage"; private static final String STRING_SHOWBOLDNAMES = "showboldnames"; private static final String STRING_USEGUILLEMOTS = "useguillemots"; private static final String STRING_SHOWASSOCIATIONNAMES = "showassociationnames"; private static final String STRING_SHOWVISIBILITY = "showvisibility"; private static final String STRING_SHOWMULTIPLICITY = "showmultiplicity"; private static final String STRING_SHOWINITIALVALUE = "showinitialvalue"; private static final String STRING_SHOWPROPERTIES = "showproperties"; private static final String STRING_SHOWTYPES = "showtypes"; private static final String STRING_SHOWSTEREOTYPES = "showstereotypes"; private static final String STRING_SHOWSINGULARMULTIPLICITIES = "showsingularmultiplicities"; private static final String STRING_HIDEBIDIRECTIONALARROWS = "hidebidirectionalarrows"; private static final String STRING_DEFAULTSHADOWWIDTH = "defaultshadowwidth"; private static final String STRING_FONTNAME = "fontname"; private static final String STRING_FONTSIZE = "fontsize"; // The following is deprecated, but can never be removed to preserve // backward compatibility with old project files @Deprecated private static final String STRING_GENERATION_OUTPUT_DIR = "generationoutputdir"; private static final String STRING_ACTIVE_DIAGRAM = "activediagram"; /** The token for argo. */ public static final int TOKEN_ARGO = 1; /** The token for author name. */ public static final int TOKEN_AUTHORNAME = 2; /** The token for author email. */ public static final int TOKEN_AUTHOREMAIL = 3; /** The token for version. */ public static final int TOKEN_VERSION = 4; /** The token for description. */ public static final int TOKEN_DESCRIPTION = 5; /** The token for search path. */ public static final int TOKEN_SEARCHPATH = 6; /** The token for member. */ public static final int TOKEN_MEMBER = 7; /** The token for history file. */ public static final int TOKEN_HISTORYFILE = 8; /** The token for documentation. */ public static final int TOKEN_DOCUMENTATION = 9; /** The token for settings. */ public static final int TOKEN_SETTINGS = 10; /** The token for the notation language setting. */ public static final int TOKEN_NOTATIONLANGUAGE = 11; /** A token for Notation Settings. */ public static final int TOKEN_USEGUILLEMOTS = 12; /** A token for Notation Settings. */ public static final int TOKEN_SHOWVISIBILITY = 13; /** A token for Notation Settings. */ public static final int TOKEN_SHOWMULTIPLICITY = 14; /** A token for Notation Settings. */ public static final int TOKEN_SHOWINITIALVALUE = 15; /** The token for the notation setting to show properties. */ public static final int TOKEN_SHOWPROPERTIES = 16; /** A token for Notation Settings. */ public static final int TOKEN_SHOWTYPES = 17; /** A token for Notation Settings. */ public static final int TOKEN_SHOWSTEREOTYPES = 18; /** A token for Notation Settings. */ public static final int TOKEN_DEFAULTSHADOWWIDTH = 19; /** A token for Notation Settings. */ public static final int TOKEN_SHOWBOLDNAMES = 20; /** A token for Font Settings. */ public static final int TOKEN_FONTNAME = 21; /** A token for Font Settings. */ public static final int TOKEN_FONTSIZE = 22; /** A token for Generation Settings. */ @Deprecated public static final int TOKEN_GENERATION_OUTPUT_DIR = 23; /** A token for Generation Settings. */ public static final int TOKEN_SHOWASSOCIATIONNAMES = 24; /** A token for the active diagram name **/ public static final int TOKEN_ACTIVE_DIAGRAM = 25; /** A token for Notation Settings **/ public static final int TOKEN_SHOWSINGULARMULTIPLICITIES = 26; public static final int TOKEN_HIDEBIDIRECTIONALARROWS = 27; /** The token for undefined. */ public static final int TOKEN_UNDEFINED = 99; //////////////////////////////////////////////////////////////// // protected methods /* * @see org.argouml.persistence.XMLTokenTableBase#setupTokens() */ protected void setupTokens() { addToken(STRING_ARGO, Integer.valueOf(TOKEN_ARGO)); addToken(STRING_AUTHORNAME, Integer.valueOf(TOKEN_AUTHORNAME)); addToken(STRING_AUTHOREMAIL, Integer.valueOf(TOKEN_AUTHOREMAIL)); addToken(STRING_VERSION, Integer.valueOf(TOKEN_VERSION)); addToken(STRING_DESCRIPTION, Integer.valueOf(TOKEN_DESCRIPTION)); addToken(STRING_SEARCHPATH, Integer.valueOf(TOKEN_SEARCHPATH)); addToken(STRING_MEMBER, Integer.valueOf(TOKEN_MEMBER)); addToken(STRING_HISTORYFILE, Integer.valueOf(TOKEN_HISTORYFILE)); addToken(STRING_DOCUMENTATION, Integer.valueOf(TOKEN_DOCUMENTATION)); addToken(STRING_SETTINGS, Integer.valueOf(TOKEN_SETTINGS)); addToken(STRING_NOTATIONLANGUAGE, Integer.valueOf(TOKEN_NOTATIONLANGUAGE)); addToken(STRING_SHOWBOLDNAMES, Integer.valueOf(TOKEN_SHOWBOLDNAMES)); addToken(STRING_USEGUILLEMOTS, Integer.valueOf(TOKEN_USEGUILLEMOTS)); addToken(STRING_SHOWVISIBILITY, Integer.valueOf(TOKEN_SHOWVISIBILITY)); addToken(STRING_SHOWMULTIPLICITY, Integer.valueOf(TOKEN_SHOWMULTIPLICITY)); addToken(STRING_HIDEBIDIRECTIONALARROWS, Integer.valueOf(TOKEN_HIDEBIDIRECTIONALARROWS)); addToken(STRING_SHOWINITIALVALUE, Integer.valueOf(TOKEN_SHOWINITIALVALUE)); addToken(STRING_SHOWPROPERTIES, Integer.valueOf(TOKEN_SHOWPROPERTIES)); addToken(STRING_SHOWTYPES, Integer.valueOf(TOKEN_SHOWTYPES)); addToken(STRING_SHOWSTEREOTYPES, Integer.valueOf(TOKEN_SHOWSTEREOTYPES)); addToken(STRING_SHOWSINGULARMULTIPLICITIES, Integer.valueOf(TOKEN_SHOWSINGULARMULTIPLICITIES)); addToken(STRING_DEFAULTSHADOWWIDTH, Integer.valueOf(TOKEN_DEFAULTSHADOWWIDTH)); addToken(STRING_FONTNAME, Integer.valueOf(TOKEN_FONTNAME)); addToken(STRING_FONTSIZE, Integer.valueOf(TOKEN_FONTSIZE)); addToken(STRING_GENERATION_OUTPUT_DIR, Integer.valueOf(TOKEN_GENERATION_OUTPUT_DIR)); addToken(STRING_SHOWASSOCIATIONNAMES, Integer.valueOf(TOKEN_SHOWASSOCIATIONNAMES)); addToken(STRING_ACTIVE_DIAGRAM, Integer.valueOf(TOKEN_ACTIVE_DIAGRAM)); } }