sysmodelmgr/com.symbian.smt.gui/src/com/symbian/smt/gui/builder/SystemModelGeneratorEnumsForCLI.java
changeset 0 522a326673b6
equal deleted inserted replaced
-1:000000000000 0:522a326673b6
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 package com.symbian.smt.gui.builder;
       
    17 
       
    18 public enum SystemModelGeneratorEnumsForCLI {
       
    19 
       
    20 	// System Definition Files
       
    21 	SYSTEM_DEFINITION_FILES("--sysdef"),
       
    22 
       
    23 	// Model Labels
       
    24 	COPYRIGHT_TEXT("--copyright"), DISTRIBUTION_TEXT("--distribution"), MODEL_NAME(
       
    25 			"--model_name"), MODEL_VERSION("--model_version"), MODEL_VERSION_TEXT(
       
    26 			"--model_version_type"), SYSTEM_NAME("--system_name"), SYSTEM_VERSION(
       
    27 			"--system_version"),
       
    28 
       
    29 	// Model Control
       
    30 	HIGHTLIGHT_CORE_OS("--coreos"), LEVEL_OF_DETAIL("--detail"), PRINTED_DPI(
       
    31 			"--dpi"), SUPPRESS_MOUSE_OVER_EFFECT("--static"), FIX_ITEM_SIZE(
       
    32 			"--detail-type"),
       
    33 
       
    34 	// Resources
       
    35 	SHAPES_FILES("--shapes"), LEVELS_FILES("--levels"), LOCALISATION_FILES(
       
    36 			"--localize"), DEPENDENCIES_FILES("--deps"), SYSTEM_INFO_FILES(
       
    37 			"--sysinfo"), COLOURS_FILES("--color"), BORDER_STYLES_FILES(
       
    38 			"--border-style"), BORDER_SHAPES_FILES("--border-shape"), PATTERNS_FILES(
       
    39 			"--pattern"), S12_XML_FILES("--s12"),
       
    40 
       
    41 	// Filter Items
       
    42 	FILTER_ITEMS("--filter"),
       
    43 
       
    44 	// Filter Items
       
    45 	FILTER_HAS_ITEMS("--filter-has"),
       
    46 
       
    47 	// Ignore Items
       
    48 	IGNORE_ITEMS("--ignore"),
       
    49 
       
    50 	// Warning Level
       
    51 	WARNING_LEVEL("-w"),
       
    52 
       
    53 	// Output filename
       
    54 	OUTPUT_FILE("-output"),
       
    55 
       
    56 	// Temp Dir
       
    57 	TEMPDIR("--tempdir");
       
    58 
       
    59 	private final String commandlineArg;
       
    60 
       
    61 	SystemModelGeneratorEnumsForCLI(String commandlineArg) {
       
    62 		this.commandlineArg = commandlineArg;
       
    63 	}
       
    64 
       
    65 	public String arg() {
       
    66 		return commandlineArg;
       
    67 	}
       
    68 }