-
-
+
+
+
+
+
+SDK Support in Carbide.c++
+
+
+
+
+
+
You're not done installing just yet...
+
Release: 2.1.0
+ Revised: April 2009
+
Read the Release Notes and Bug Fixes for the latest infomation about this product. In Carbide.c++ simply click the Help > Help Contents > Carbide.c++ User Guide to find the pages.
+
To complete your installation and start Symbian C++ application development, you must install the following:
+
+
+
Installing Perl
+
+
+
+
The Carbide.c++ tools require a copy of Perl to run build scripts:
+
\ No newline at end of file
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/html/images/brand/about_cpp.png
Binary file core/com.nokia.carbide.cpp.codescanner/html/images/brand/about_cpp.png has changed
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/html/images/brand/background_carbide.jpg
Binary file core/com.nokia.carbide.cpp.codescanner/html/images/brand/background_carbide.jpg has changed
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.ecore
--- a/core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.ecore Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.ecore Mon Apr 06 15:46:51 2009 -0500
@@ -813,6 +813,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -844,6 +875,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1309,6 +1379,15 @@
+
+
+
+
+
+
+
@@ -1318,6 +1397,15 @@
+
+
+
+
+
+
+
@@ -1489,6 +1577,15 @@
+
+
+
+
+
+
+
@@ -1549,6 +1646,15 @@
+
+
+
+
+
+
+
@@ -2622,6 +2728,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -4464,6 +4601,14 @@
+
+
+
+
+
+
+
@@ -4472,6 +4617,14 @@
+
+
+
+
+
+
+
@@ -4576,6 +4729,14 @@
+
+
+
+
+
+
+
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.genmodel
--- a/core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.genmodel Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.genmodel Mon Apr 06 15:46:51 2009 -0500
@@ -2,10 +2,8 @@
+ modelPluginID="com.nokia.carbide.cpp.codescanner" modelName="CSConfig" importerID="org.eclipse.xsd.ecore.importer"
+ complianceLevel="5.0" copyrightFields="false">
CSConfig.xsd
+
+
+
+
+
+
+
+
+
+
+
@@ -224,7 +233,9 @@
+
+
@@ -244,6 +255,7 @@
+
@@ -251,6 +263,7 @@
+
@@ -386,6 +399,11 @@
+
+
+
+
+
@@ -682,7 +700,9 @@
+
+
@@ -696,6 +716,7 @@
+
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.xsd
--- a/core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.xsd Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/schema/CSConfig.xsd Mon Apr 06 15:46:51 2009 -0500
@@ -185,7 +185,9 @@
+
+
@@ -199,6 +201,7 @@
+
@@ -633,6 +636,7 @@
+
@@ -681,6 +685,13 @@
+
+
+
+
+
+
+
@@ -800,6 +811,16 @@
+
+
+
+
+
+
+
+
+
+
@@ -807,6 +828,13 @@
+
+
+
+
+
+
+
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSConfigManager.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSConfigManager.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSConfigManager.java Mon Apr 06 15:46:51 2009 -0500
@@ -323,6 +323,11 @@
configSettings.setScriptCClassIgnore(pageSettings.get(CSPreferenceConstants.CCLASSIGNORE));
configSettings.setScriptForbiddenWords(pageSettings.get(CSPreferenceConstants.FORBIDEENWORDS));
+ String icons = pageSettings.get(CSPreferenceConstants.ICONS);
+ if (icons.length() == 0) {
+ icons = null;
+ }
+ configSettings.setScriptIcons(icons);
configSettings.setScriptLFunctionIgnore(pageSettings.get(CSPreferenceConstants.LFUNCTIONIGNORE));
configSettings.setScriptLongLinesLength(pageSettings.getInt(CSPreferenceConstants.LONGLINES_LENGTH));
configSettings.setScriptOpenIgnore(pageSettings.get(CSPreferenceConstants.OPENIGNORE));
@@ -405,6 +410,11 @@
configSettings.setScriptCClassIgnore(store.getString(CSPreferenceConstants.CCLASSIGNORE));
configSettings.setScriptForbiddenWords(store.getString(CSPreferenceConstants.FORBIDEENWORDS));
+ String icons = store.getString(CSPreferenceConstants.ICONS);
+ if (icons != null && icons.length() == 0) {
+ icons = null;
+ }
+ configSettings.setScriptIcons(icons);
configSettings.setScriptLFunctionIgnore(store.getString(CSPreferenceConstants.LFUNCTIONIGNORE));
configSettings.setScriptLongLinesLength(store.getInt(CSPreferenceConstants.LONGLINES_LENGTH));
configSettings.setScriptOpenIgnore(store.getString(CSPreferenceConstants.OPENIGNORE));
@@ -477,6 +487,7 @@
settings.put(CSPreferenceConstants.CCLASSIGNORE, getCClassIgnoreFromConfig(configSettings));
settings.put(CSPreferenceConstants.FORBIDEENWORDS, getForbiddenWordsFromConfig(configSettings));
+ settings.put(CSPreferenceConstants.ICONS, getIconsFromConfig(configSettings));
settings.put(CSPreferenceConstants.LFUNCTIONIGNORE, getLFunctionIgnoreFromConfig(configSettings));
settings.put(CSPreferenceConstants.LONGLINES_LENGTH, getLongLinesLengthFromConfig(configSettings));
settings.put(CSPreferenceConstants.OPENIGNORE, getOpenIgnoreFromConfig(configSettings));
@@ -540,6 +551,7 @@
store.setValue(CSPreferenceConstants.CCLASSIGNORE, getCClassIgnoreFromConfig(configSettings));
store.setValue(CSPreferenceConstants.FORBIDEENWORDS, getForbiddenWordsFromConfig(configSettings));
+ store.setValue(CSPreferenceConstants.ICONS, getIconsFromConfig(configSettings));
store.setValue(CSPreferenceConstants.LFUNCTIONIGNORE, getLFunctionIgnoreFromConfig(configSettings));
store.setValue(CSPreferenceConstants.LONGLINES_LENGTH, getLongLinesLengthFromConfig(configSettings));
store.setValue(CSPreferenceConstants.OPENIGNORE, getOpenIgnoreFromConfig(configSettings));
@@ -610,6 +622,23 @@
}
/**
+ * Get the customizable icons list from from a CodeScanner configuration settings.
+ * If the list does not exist in, get it from the default configuration settings.
+ * @param configSettings - CodeScanner configuration settings to be read
+ * @return customizable icons list as a string
+ */
+ private String getIconsFromConfig(CSConfigSettings configSettings) {
+ String value = configSettings.getScriptIcons();
+ if (value == null) {
+ value = getDefaultConfig().getScriptIcons();
+ }
+ if (value == null) {
+ value = "";
+ }
+ return value;
+ }
+
+ /**
* Get the L-function ignore list from from a CodeScanner configuration settings.
* If the list does not exist in, get it from the default configuration settings.
* @param configSettings - CodeScanner configuration settings to be read
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSConfigSettings.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSConfigSettings.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSConfigSettings.java Mon Apr 06 15:46:51 2009 -0500
@@ -340,8 +340,12 @@
return this.csConfig.getScripts().getConsttdescptr();
case script_controlornull:
return this.csConfig.getScripts().getControlornull();
+ case script_crepository:
+ return this.csConfig.getScripts().getCrepository();
case script_ctltargettype:
return this.csConfig.getScripts().getCtltargettype();
+ case script_customizableicons:
+ return this.csConfig.getScripts().getCustomizableicons();
case script_debugrom:
return this.csConfig.getScripts().getDebugrom();
case script_declarename:
@@ -366,8 +370,8 @@
return this.csConfig.getScripts().getExportinline();
case script_exportpurevirtual:
return this.csConfig.getScripts().getExportpurevirtual();
-// case script_externaldriveletters:
-// return this.csConfig.getScripts().getExternaldriveletters();
+ case script_flags:
+ return this.csConfig.getScripts().getFlags();
case script_foff:
return this.csConfig.getScripts().getFoff();
case script_forbiddenwords:
@@ -553,8 +557,12 @@
return this.csConfig.getScripts().getConsttdescptr().isEnable();
case script_controlornull:
return this.csConfig.getScripts().getControlornull().isEnable();
+ case script_crepository:
+ return this.csConfig.getScripts().getCrepository().isEnable();
case script_ctltargettype:
return this.csConfig.getScripts().getCtltargettype().isEnable();
+ case script_customizableicons:
+ return this.csConfig.getScripts().getCustomizableicons().isEnable();
case script_debugrom:
return this.csConfig.getScripts().getDebugrom().isEnable();
case script_declarename:
@@ -579,8 +587,8 @@
return this.csConfig.getScripts().getExportinline().isEnable();
case script_exportpurevirtual:
return this.csConfig.getScripts().getExportpurevirtual().isEnable();
-// case script_externaldriveletters:
-// return this.csConfig.getScripts().getExternaldriveletters().isEnable();
+ case script_flags:
+ return this.csConfig.getScripts().getFlags().isEnable();
case script_foff:
return this.csConfig.getScripts().getFoff().isEnable();
case script_forbiddenwords:
@@ -784,9 +792,15 @@
case script_controlornull:
this.csConfig.getScripts().getControlornull().setEnable(value);
break;
+ case script_crepository:
+ this.csConfig.getScripts().getCrepository().setEnable(value);
+ break;
case script_ctltargettype:
this.csConfig.getScripts().getCtltargettype().setEnable(value);
break;
+ case script_customizableicons:
+ this.csConfig.getScripts().getCustomizableicons().setEnable(value);
+ break;
case script_debugrom:
this.csConfig.getScripts().getDebugrom().setEnable(value);
break;
@@ -823,9 +837,9 @@
case script_exportpurevirtual:
this.csConfig.getScripts().getExportpurevirtual().setEnable(value);
break;
-// case script_externaldriveletters:
-// this.csConfig.getScripts().getExternaldriveletters().setEnable(value);
-// break;
+ case script_flags:
+ this.csConfig.getScripts().getFlags().setEnable(value);
+ break;
case script_foff:
this.csConfig.getScripts().getFoff().setEnable(value);
break;
@@ -1079,8 +1093,12 @@
return this.csConfig.getScripts().getConsttdescptr().getCategory().toString();
case script_controlornull:
return this.csConfig.getScripts().getControlornull().getCategory().toString();
+ case script_crepository:
+ return this.csConfig.getScripts().getCrepository().getCategory().toString();
case script_ctltargettype:
return this.csConfig.getScripts().getCtltargettype().getCategory().toString();
+ case script_customizableicons:
+ return this.csConfig.getScripts().getCustomizableicons().getCategory().toString();
case script_debugrom:
return this.csConfig.getScripts().getDebugrom().getCategory().toString();
case script_declarename:
@@ -1105,8 +1123,8 @@
return this.csConfig.getScripts().getExportinline().getCategory().toString();
case script_exportpurevirtual:
return this.csConfig.getScripts().getExportpurevirtual().getCategory().toString();
-// case script_externaldriveletters:
-// return this.csConfig.getScripts().getExternaldriveletters().getCategory().toString();
+ case script_flags:
+ return this.csConfig.getScripts().getFlags().getCategory().toString();
case script_foff:
return this.csConfig.getScripts().getFoff().getCategory().toString();
case script_forbiddenwords:
@@ -1311,9 +1329,15 @@
case script_controlornull:
this.csConfig.getScripts().getControlornull().setCategory(category);
break;
+ case script_crepository:
+ this.csConfig.getScripts().getCrepository().setCategory(category);
+ break;
case script_ctltargettype:
this.csConfig.getScripts().getCtltargettype().setCategory(category);
break;
+ case script_customizableicons:
+ this.csConfig.getScripts().getCustomizableicons().setCategory(category);
+ break;
case script_debugrom:
this.csConfig.getScripts().getDebugrom().setCategory(category);
break;
@@ -1350,9 +1374,9 @@
case script_exportpurevirtual:
this.csConfig.getScripts().getExportpurevirtual().setCategory(category);
break;
-// case script_externaldriveletters:
-// this.csConfig.getScripts().getExternaldriveletters().setCategory(category);
-// break;
+ case script_flags:
+ this.csConfig.getScripts().getFlags().setCategory(category);
+ break;
case script_foff:
this.csConfig.getScripts().getFoff().setCategory(category);
break;
@@ -1606,8 +1630,12 @@
return this.csConfig.getScripts().getConsttdescptr().getSeverity().toString();
case script_controlornull:
return this.csConfig.getScripts().getControlornull().getSeverity().toString();
+ case script_crepository:
+ return this.csConfig.getScripts().getCrepository().getSeverity().toString();
case script_ctltargettype:
return this.csConfig.getScripts().getCtltargettype().getSeverity().toString();
+ case script_customizableicons:
+ return this.csConfig.getScripts().getCustomizableicons().getSeverity().toString();
case script_debugrom:
return this.csConfig.getScripts().getDebugrom().getSeverity().toString();
case script_declarename:
@@ -1632,8 +1660,8 @@
return this.csConfig.getScripts().getExportinline().getSeverity().toString();
case script_exportpurevirtual:
return this.csConfig.getScripts().getExportpurevirtual().getSeverity().toString();
-// case script_externaldriveletters:
-// return this.csConfig.getScripts().getExternaldriveletters().getSeverity().toString();
+ case script_flags:
+ return this.csConfig.getScripts().getFlags().getSeverity().toString();
case script_foff:
return this.csConfig.getScripts().getFoff().getSeverity().toString();
case script_forbiddenwords:
@@ -1838,9 +1866,15 @@
case script_controlornull:
this.csConfig.getScripts().getControlornull().setSeverity(severity);
break;
+ case script_crepository:
+ this.csConfig.getScripts().getCrepository().setSeverity(severity);
+ break;
case script_ctltargettype:
this.csConfig.getScripts().getCtltargettype().setSeverity(severity);
break;
+ case script_customizableicons:
+ this.csConfig.getScripts().getCustomizableicons().setSeverity(severity);
+ break;
case script_debugrom:
this.csConfig.getScripts().getDebugrom().setSeverity(severity);
break;
@@ -1877,9 +1911,9 @@
case script_exportpurevirtual:
this.csConfig.getScripts().getExportpurevirtual().setSeverity(severity);
break;
-// case script_externaldriveletters:
-// this.csConfig.getScripts().getExternaldriveletters().setSeverity(severity);
-// break;
+ case script_flags:
+ this.csConfig.getScripts().getFlags().setSeverity(severity);
+ break;
case script_foff:
this.csConfig.getScripts().getFoff().setSeverity(severity);
break;
@@ -2123,6 +2157,22 @@
}
/**
+ * Retrieve the iconsRE value of the customizableicons script
+ * @return iconsRE
+ */
+ public String getScriptIcons() {
+ return this.csConfig.getScripts().getCustomizableicons().getIconsRE();
+ }
+
+ /**
+ * Set the iconsRE value of the customizableicons script
+ * @param value - new iconsRE value
+ */
+ public void setScriptIcons(String value) {
+ this.csConfig.getScripts().getCustomizableicons().setIconsRE(value);
+ }
+
+ /**
* Retrieve the LFunctionIgnoreRE value of the LFunctionCantLeave script
* @return LFunctionIgnoreRE
*/
@@ -2483,12 +2533,25 @@
script_Controlornull.setSeverity(SeverityType.HIGH);
scripts.setControlornull(script_Controlornull);
+ CrepositoryType script_Crepository = CSConfigFactory.eINSTANCE.createCrepositoryType();
+ script_Crepository.setCategory(CategoryType.OTHER);
+ script_Crepository.setEnable(true);
+ script_Crepository.setSeverity(SeverityType.LOW);
+ scripts.setCrepository(script_Crepository);
+
CtltargettypeType script_Ctltargettype = CSConfigFactory.eINSTANCE.createCtltargettypeType();
script_Ctltargettype.setCategory(CategoryType.FUNCTIONALITY);
script_Ctltargettype.setEnable(true);
script_Ctltargettype.setSeverity(SeverityType.MEDIUM);
scripts.setCtltargettype(script_Ctltargettype);
+ CustomizableiconsType script_Customizableicons = CSConfigFactory.eINSTANCE.createCustomizableiconsType();
+ script_Customizableicons.setCategory(CategoryType.OTHER);
+ script_Customizableicons.setEnable(true);
+ script_Customizableicons.setSeverity(SeverityType.LOW);
+ //script_Customizableicons.setIconsRE("");
+ scripts.setCustomizableicons(script_Customizableicons);
+
DebugromType script_Debugrom = CSConfigFactory.eINSTANCE.createDebugromType();
script_Debugrom.setCategory(CategoryType.PERFORMANCE);
script_Debugrom.setEnable(true);
@@ -2561,11 +2624,11 @@
script_Exportpurevirtual.setSeverity(SeverityType.MEDIUM);
scripts.setExportpurevirtual(script_Exportpurevirtual);
-// ExternaldrivelettersType script_Externaldriveletters = CSConfigFactory.eINSTANCE.createExternaldrivelettersType();
-// script_Externaldriveletters.setCategory(CategoryType.CANPANIC);
-// script_Externaldriveletters.setEnable(true);
-// script_Externaldriveletters.setSeverity(SeverityType.HIGH);
-// scripts.setExternaldriveletters(script_Externaldriveletters);
+ FlagsType script_Flags = CSConfigFactory.eINSTANCE.createFlagsType();
+ script_Flags.setCategory(CategoryType.OTHER);
+ script_Flags.setEnable(true);
+ script_Flags.setSeverity(SeverityType.LOW);
+ scripts.setFlags(script_Flags);
FoffType script_Foff = CSConfigFactory.eINSTANCE.createFoffType();
script_Foff.setCategory(CategoryType.CODEREVIEW);
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSRule.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSRule.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSRule.java Mon Apr 06 15:46:51 2009 -0500
@@ -123,8 +123,12 @@
return Messages.getString("CSRule.Consttdescptr");
case script_controlornull:
return Messages.getString("CSRule.Controlornull");
+ case script_crepository:
+ return Messages.getString("CSRule.Crepository");
case script_ctltargettype:
return Messages.getString("CSRule.Ctltargettype");
+ case script_customizableicons:
+ return Messages.getString("CSRule.Customizableicons");
case script_debugrom:
return Messages.getString("CSRule.Debugrom");
case script_declarename:
@@ -149,8 +153,8 @@
return Messages.getString("CSRule.Exportinline");
case script_exportpurevirtual:
return Messages.getString("CSRule.Exportpurevirtual");
-// case script_externaldriveletters:
-// return Messages.getString("CSRule.Externaldriveletters");
+ case script_flags:
+ return Messages.getString("CSRule.Flags");
case script_foff:
return Messages.getString("CSRule.Foff");
case script_forbiddenwords:
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSScript.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSScript.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/config/CSScript.java Mon Apr 06 15:46:51 2009 -0500
@@ -40,7 +40,9 @@
script_constnames("constnames"),
script_consttdescptr("consttdescptr"),
script_controlornull("controlornull"),
+ script_crepository("crepository"),
script_ctltargettype("ctltargettype"),
+ script_customizableicons("customizableicons"),
script_debugrom("debugrom"),
script_declarename("declarename"),
script_deleteMemberVariable("deleteMemberVariable"),
@@ -53,7 +55,7 @@
script_enumnames("enumnames"),
script_exportinline("exportinline"),
script_exportpurevirtual("exportpurevirtual"),
- //script_externaldriveletters("externaldriveletters"),
+ script_flags("flags"),
script_foff("foff"),
script_forbiddenwords("forbiddenwords"),
script_forgottoputptroncleanupstack("forgottoputptroncleanupstack"),
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CSConfigFactory.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CSConfigFactory.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CSConfigFactory.java Mon Apr 06 15:46:51 2009 -0500
@@ -253,6 +253,15 @@
ControlornullType createControlornullType();
/**
+ * Returns a new object of class 'Crepository Type'.
+ *
+ *
+ * @return a new object of class 'Crepository Type'.
+ * @generated
+ */
+ CrepositoryType createCrepositoryType();
+
+ /**
* Returns a new object of class 'Ctltargettype Type'.
*
*
@@ -262,6 +271,15 @@
CtltargettypeType createCtltargettypeType();
/**
+ * Returns a new object of class 'Customizableicons Type'.
+ *
+ *
+ * @return a new object of class 'Customizableicons Type'.
+ * @generated
+ */
+ CustomizableiconsType createCustomizableiconsType();
+
+ /**
* Returns a new object of class 'Customrules Type'.
*
*
@@ -415,6 +433,15 @@
ExternaldrivelettersType createExternaldrivelettersType();
/**
+ * Returns a new object of class 'Flags Type'.
+ *
+ *
+ * @return a new object of class 'Flags Type'.
+ * @generated
+ */
+ FlagsType createFlagsType();
+
+ /**
* Returns a new object of class 'Foff Type'.
*
*
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CSConfigPackage.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CSConfigPackage.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CSConfigPackage.java Mon Apr 06 15:46:51 2009 -0500
@@ -1232,6 +1232,52 @@
int CONTROLORNULL_TYPE_FEATURE_COUNT = 3;
/**
+ * The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CrepositoryTypeImpl Crepository Type}' class.
+ *
+ *
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CrepositoryTypeImpl
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getCrepositoryType()
+ * @generated
+ */
+ int CREPOSITORY_TYPE = 24;
+
+ /**
+ * The feature id for the 'Category' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CREPOSITORY_TYPE__CATEGORY = 0;
+
+ /**
+ * The feature id for the 'Enable' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CREPOSITORY_TYPE__ENABLE = 1;
+
+ /**
+ * The feature id for the 'Severity' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CREPOSITORY_TYPE__SEVERITY = 2;
+
+ /**
+ * The number of structural features of the 'Crepository Type' class.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CREPOSITORY_TYPE_FEATURE_COUNT = 3;
+
+ /**
* The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CtltargettypeTypeImpl Ctltargettype Type}' class.
*
*
@@ -1239,7 +1285,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getCtltargettypeType()
* @generated
*/
- int CTLTARGETTYPE_TYPE = 24;
+ int CTLTARGETTYPE_TYPE = 25;
/**
* The feature id for the 'Category' attribute.
@@ -1278,6 +1324,61 @@
int CTLTARGETTYPE_TYPE_FEATURE_COUNT = 3;
/**
+ * The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CustomizableiconsTypeImpl Customizableicons Type}' class.
+ *
+ *
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CustomizableiconsTypeImpl
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getCustomizableiconsType()
+ * @generated
+ */
+ int CUSTOMIZABLEICONS_TYPE = 26;
+
+ /**
+ * The feature id for the 'Icons RE' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CUSTOMIZABLEICONS_TYPE__ICONS_RE = 0;
+
+ /**
+ * The feature id for the 'Category' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CUSTOMIZABLEICONS_TYPE__CATEGORY = 1;
+
+ /**
+ * The feature id for the 'Enable' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CUSTOMIZABLEICONS_TYPE__ENABLE = 2;
+
+ /**
+ * The feature id for the 'Severity' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CUSTOMIZABLEICONS_TYPE__SEVERITY = 3;
+
+ /**
+ * The number of structural features of the 'Customizableicons Type' class.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int CUSTOMIZABLEICONS_TYPE_FEATURE_COUNT = 4;
+
+ /**
* The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CustomrulesTypeImpl Customrules Type}' class.
*
*
@@ -1285,7 +1386,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getCustomrulesType()
* @generated
*/
- int CUSTOMRULES_TYPE = 25;
+ int CUSTOMRULES_TYPE = 27;
/**
* The feature id for the 'Customrule' containment reference list.
@@ -1313,7 +1414,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getCustomruleType()
* @generated
*/
- int CUSTOMRULE_TYPE = 26;
+ int CUSTOMRULE_TYPE = 28;
/**
* The feature id for the 'Name' attribute.
@@ -1395,7 +1496,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDebugromType()
* @generated
*/
- int DEBUGROM_TYPE = 27;
+ int DEBUGROM_TYPE = 29;
/**
* The feature id for the 'Category' attribute.
@@ -1441,7 +1542,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDeclarenameType()
* @generated
*/
- int DECLARENAME_TYPE = 28;
+ int DECLARENAME_TYPE = 30;
/**
* The feature id for the 'Category' attribute.
@@ -1487,7 +1588,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDeleteMemberVariableType()
* @generated
*/
- int DELETE_MEMBER_VARIABLE_TYPE = 29;
+ int DELETE_MEMBER_VARIABLE_TYPE = 31;
/**
* The feature id for the 'Category' attribute.
@@ -1533,7 +1634,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDestructorType()
* @generated
*/
- int DESTRUCTOR_TYPE = 30;
+ int DESTRUCTOR_TYPE = 32;
/**
* The feature id for the 'Category' attribute.
@@ -1579,7 +1680,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDocumentationType()
* @generated
*/
- int DOCUMENTATION_TYPE = 31;
+ int DOCUMENTATION_TYPE = 33;
/**
* The feature id for the 'Enable' attribute.
@@ -1607,7 +1708,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDocumentRoot()
* @generated
*/
- int DOCUMENT_ROOT = 32;
+ int DOCUMENT_ROOT = 34;
/**
* The feature id for the 'Mixed' attribute list.
@@ -1862,13 +1963,31 @@
int DOCUMENT_ROOT__CONTROLORNULL = 27;
/**
+ * The feature id for the 'Crepository' containment reference.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int DOCUMENT_ROOT__CREPOSITORY = 28;
+
+ /**
* The feature id for the 'Ctltargettype' containment reference.
*
*
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__CTLTARGETTYPE = 28;
+ int DOCUMENT_ROOT__CTLTARGETTYPE = 29;
+
+ /**
+ * The feature id for the 'Customizableicons' containment reference.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int DOCUMENT_ROOT__CUSTOMIZABLEICONS = 30;
/**
* The feature id for the 'Customrule' containment reference.
@@ -1877,7 +1996,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__CUSTOMRULE = 29;
+ int DOCUMENT_ROOT__CUSTOMRULE = 31;
/**
* The feature id for the 'Customrules' containment reference.
@@ -1886,7 +2005,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__CUSTOMRULES = 30;
+ int DOCUMENT_ROOT__CUSTOMRULES = 32;
/**
* The feature id for the 'Debugrom' containment reference.
@@ -1895,7 +2014,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DEBUGROM = 31;
+ int DOCUMENT_ROOT__DEBUGROM = 33;
/**
* The feature id for the 'Declarename' containment reference.
@@ -1904,7 +2023,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DECLARENAME = 32;
+ int DOCUMENT_ROOT__DECLARENAME = 34;
/**
* The feature id for the 'Delete Member Variable' containment reference.
@@ -1913,7 +2032,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DELETE_MEMBER_VARIABLE = 33;
+ int DOCUMENT_ROOT__DELETE_MEMBER_VARIABLE = 35;
/**
* The feature id for the 'Description' attribute.
@@ -1922,7 +2041,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DESCRIPTION = 34;
+ int DOCUMENT_ROOT__DESCRIPTION = 36;
/**
* The feature id for the 'Destructor' containment reference.
@@ -1931,7 +2050,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DESTRUCTOR = 35;
+ int DOCUMENT_ROOT__DESTRUCTOR = 37;
/**
* The feature id for the 'Documentation' containment reference.
@@ -1940,7 +2059,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DOCUMENTATION = 36;
+ int DOCUMENT_ROOT__DOCUMENTATION = 38;
/**
* The feature id for the 'Double Semi Colon' containment reference.
@@ -1949,7 +2068,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DOUBLE_SEMI_COLON = 37;
+ int DOCUMENT_ROOT__DOUBLE_SEMI_COLON = 39;
/**
* The feature id for the 'Driveletters' containment reference.
@@ -1958,7 +2077,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__DRIVELETTERS = 38;
+ int DOCUMENT_ROOT__DRIVELETTERS = 40;
/**
* The feature id for the 'Eikbuttons' containment reference.
@@ -1967,7 +2086,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__EIKBUTTONS = 39;
+ int DOCUMENT_ROOT__EIKBUTTONS = 41;
/**
* The feature id for the 'Eikonenvstatic' containment reference.
@@ -1976,7 +2095,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__EIKONENVSTATIC = 40;
+ int DOCUMENT_ROOT__EIKONENVSTATIC = 42;
/**
* The feature id for the 'Enummembers' containment reference.
@@ -1985,7 +2104,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__ENUMMEMBERS = 41;
+ int DOCUMENT_ROOT__ENUMMEMBERS = 43;
/**
* The feature id for the 'Enumnames' containment reference.
@@ -1994,7 +2113,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__ENUMNAMES = 42;
+ int DOCUMENT_ROOT__ENUMNAMES = 44;
/**
* The feature id for the 'Exclude' attribute.
@@ -2003,7 +2122,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__EXCLUDE = 43;
+ int DOCUMENT_ROOT__EXCLUDE = 45;
/**
* The feature id for the 'Exportinline' containment reference.
@@ -2012,7 +2131,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__EXPORTINLINE = 44;
+ int DOCUMENT_ROOT__EXPORTINLINE = 46;
/**
* The feature id for the 'Exportpurevirtual' containment reference.
@@ -2021,7 +2140,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__EXPORTPUREVIRTUAL = 45;
+ int DOCUMENT_ROOT__EXPORTPUREVIRTUAL = 47;
/**
* The feature id for the 'Externaldriveletters' containment reference.
@@ -2030,7 +2149,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__EXTERNALDRIVELETTERS = 46;
+ int DOCUMENT_ROOT__EXTERNALDRIVELETTERS = 48;
/**
* The feature id for the 'Filetype' attribute.
@@ -2039,7 +2158,16 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__FILETYPE = 47;
+ int DOCUMENT_ROOT__FILETYPE = 49;
+
+ /**
+ * The feature id for the 'Flags' containment reference.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int DOCUMENT_ROOT__FLAGS = 50;
/**
* The feature id for the 'Foff' containment reference.
@@ -2048,7 +2176,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__FOFF = 48;
+ int DOCUMENT_ROOT__FOFF = 51;
/**
* The feature id for the 'Forbiddenwords' containment reference.
@@ -2057,7 +2185,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__FORBIDDENWORDS = 49;
+ int DOCUMENT_ROOT__FORBIDDENWORDS = 52;
/**
* The feature id for the 'Forgottoputptroncleanupstack' containment reference.
@@ -2066,7 +2194,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__FORGOTTOPUTPTRONCLEANUPSTACK = 50;
+ int DOCUMENT_ROOT__FORGOTTOPUTPTRONCLEANUPSTACK = 53;
/**
* The feature id for the 'Friend' containment reference.
@@ -2075,7 +2203,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__FRIEND = 51;
+ int DOCUMENT_ROOT__FRIEND = 54;
/**
* The feature id for the 'Functionality' containment reference.
@@ -2084,7 +2212,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__FUNCTIONALITY = 52;
+ int DOCUMENT_ROOT__FUNCTIONALITY = 55;
/**
* The feature id for the 'Goto' containment reference.
@@ -2093,7 +2221,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__GOTO = 53;
+ int DOCUMENT_ROOT__GOTO = 56;
/**
* The feature id for the 'High' containment reference.
@@ -2102,7 +2230,16 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__HIGH = 54;
+ int DOCUMENT_ROOT__HIGH = 57;
+
+ /**
+ * The feature id for the 'Icons RE' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int DOCUMENT_ROOT__ICONS_RE = 58;
/**
* The feature id for the 'Ifassignments' containment reference.
@@ -2111,7 +2248,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__IFASSIGNMENTS = 55;
+ int DOCUMENT_ROOT__IFASSIGNMENTS = 59;
/**
* The feature id for the 'Ifpreprocessor' containment reference.
@@ -2120,7 +2257,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__IFPREPROCESSOR = 56;
+ int DOCUMENT_ROOT__IFPREPROCESSOR = 60;
/**
* The feature id for the 'Inheritanceorder' containment reference.
@@ -2129,7 +2266,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__INHERITANCEORDER = 57;
+ int DOCUMENT_ROOT__INHERITANCEORDER = 61;
/**
* The feature id for the 'Input' attribute.
@@ -2138,7 +2275,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__INPUT = 58;
+ int DOCUMENT_ROOT__INPUT = 62;
/**
* The feature id for the 'Intleaves' containment reference.
@@ -2147,7 +2284,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__INTLEAVES = 59;
+ int DOCUMENT_ROOT__INTLEAVES = 63;
/**
* The feature id for the 'Jmp' containment reference.
@@ -2156,7 +2293,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__JMP = 60;
+ int DOCUMENT_ROOT__JMP = 64;
/**
* The feature id for the 'Keyword' containment reference.
@@ -2165,7 +2302,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__KEYWORD = 61;
+ int DOCUMENT_ROOT__KEYWORD = 65;
/**
* The feature id for the 'Leave' containment reference.
@@ -2174,7 +2311,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LEAVE = 62;
+ int DOCUMENT_ROOT__LEAVE = 66;
/**
* The feature id for the 'Leave No Error' containment reference.
@@ -2183,7 +2320,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LEAVE_NO_ERROR = 63;
+ int DOCUMENT_ROOT__LEAVE_NO_ERROR = 67;
/**
* The feature id for the 'Leavingoperators' containment reference.
@@ -2192,7 +2329,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LEAVINGOPERATORS = 64;
+ int DOCUMENT_ROOT__LEAVINGOPERATORS = 68;
/**
* The feature id for the 'Legal' containment reference.
@@ -2201,7 +2338,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LEGAL = 65;
+ int DOCUMENT_ROOT__LEGAL = 69;
/**
* The feature id for the 'LFunction Cant Leave' containment reference.
@@ -2210,7 +2347,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LFUNCTION_CANT_LEAVE = 66;
+ int DOCUMENT_ROOT__LFUNCTION_CANT_LEAVE = 70;
/**
* The feature id for the 'LFunction Ignore RE' attribute.
@@ -2219,7 +2356,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LFUNCTION_IGNORE_RE = 67;
+ int DOCUMENT_ROOT__LFUNCTION_IGNORE_RE = 71;
/**
* The feature id for the 'Link' attribute.
@@ -2228,7 +2365,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LINK = 68;
+ int DOCUMENT_ROOT__LINK = 72;
/**
* The feature id for the 'Localisation' containment reference.
@@ -2237,7 +2374,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LOCALISATION = 69;
+ int DOCUMENT_ROOT__LOCALISATION = 73;
/**
* The feature id for the 'Longlines' containment reference.
@@ -2246,7 +2383,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LONGLINES = 70;
+ int DOCUMENT_ROOT__LONGLINES = 74;
/**
* The feature id for the 'Low' containment reference.
@@ -2255,7 +2392,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LOW = 71;
+ int DOCUMENT_ROOT__LOW = 75;
/**
* The feature id for the 'Lxr' attribute.
@@ -2264,7 +2401,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LXR = 72;
+ int DOCUMENT_ROOT__LXR = 76;
/**
* The feature id for the 'Lxrversion' attribute.
@@ -2273,7 +2410,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__LXRVERSION = 73;
+ int DOCUMENT_ROOT__LXRVERSION = 77;
/**
* The feature id for the 'Magicnumbers' containment reference.
@@ -2282,7 +2419,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MAGICNUMBERS = 74;
+ int DOCUMENT_ROOT__MAGICNUMBERS = 78;
/**
* The feature id for the 'Mclassdestructor' containment reference.
@@ -2291,7 +2428,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MCLASSDESTRUCTOR = 75;
+ int DOCUMENT_ROOT__MCLASSDESTRUCTOR = 79;
/**
* The feature id for the 'Medium' containment reference.
@@ -2300,7 +2437,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MEDIUM = 76;
+ int DOCUMENT_ROOT__MEDIUM = 80;
/**
* The feature id for the 'Memberlc' containment reference.
@@ -2309,7 +2446,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MEMBERLC = 77;
+ int DOCUMENT_ROOT__MEMBERLC = 81;
/**
* The feature id for the 'Membervariablecallld' containment reference.
@@ -2318,7 +2455,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MEMBERVARIABLECALLLD = 78;
+ int DOCUMENT_ROOT__MEMBERVARIABLECALLLD = 82;
/**
* The feature id for the 'Missingcancel' containment reference.
@@ -2327,7 +2464,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MISSINGCANCEL = 79;
+ int DOCUMENT_ROOT__MISSINGCANCEL = 83;
/**
* The feature id for the 'Missingcclass' containment reference.
@@ -2336,7 +2473,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MISSINGCCLASS = 80;
+ int DOCUMENT_ROOT__MISSINGCCLASS = 84;
/**
* The feature id for the 'Mmpsourcepath' containment reference.
@@ -2345,7 +2482,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MMPSOURCEPATH = 81;
+ int DOCUMENT_ROOT__MMPSOURCEPATH = 85;
/**
* The feature id for the 'Multilangrsc' containment reference.
@@ -2354,7 +2491,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MULTILANGRSC = 82;
+ int DOCUMENT_ROOT__MULTILANGRSC = 86;
/**
* The feature id for the 'Multipledeclarations' containment reference.
@@ -2363,7 +2500,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MULTIPLEDECLARATIONS = 83;
+ int DOCUMENT_ROOT__MULTIPLEDECLARATIONS = 87;
/**
* The feature id for the 'Multipleinheritance' containment reference.
@@ -2372,7 +2509,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MULTIPLEINHERITANCE = 84;
+ int DOCUMENT_ROOT__MULTIPLEINHERITANCE = 88;
/**
* The feature id for the 'Mydocs' containment reference.
@@ -2381,7 +2518,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__MYDOCS = 85;
+ int DOCUMENT_ROOT__MYDOCS = 89;
/**
* The feature id for the 'Name' attribute.
@@ -2390,7 +2527,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NAME = 86;
+ int DOCUMENT_ROOT__NAME = 90;
/**
* The feature id for the 'Namespace' containment reference.
@@ -2399,7 +2536,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NAMESPACE = 87;
+ int DOCUMENT_ROOT__NAMESPACE = 91;
/**
* The feature id for the 'Newlreferences' containment reference.
@@ -2408,7 +2545,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NEWLREFERENCES = 88;
+ int DOCUMENT_ROOT__NEWLREFERENCES = 92;
/**
* The feature id for the 'Noleavetrap' containment reference.
@@ -2417,7 +2554,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NOLEAVETRAP = 89;
+ int DOCUMENT_ROOT__NOLEAVETRAP = 93;
/**
* The feature id for the 'Nonconsthbufc' containment reference.
@@ -2426,7 +2563,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NONCONSTHBUFC = 90;
+ int DOCUMENT_ROOT__NONCONSTHBUFC = 94;
/**
* The feature id for the 'Nonconsttdesc' containment reference.
@@ -2435,7 +2572,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NONCONSTTDESC = 91;
+ int DOCUMENT_ROOT__NONCONSTTDESC = 95;
/**
* The feature id for the 'Nonleavenew' containment reference.
@@ -2444,7 +2581,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NONLEAVENEW = 92;
+ int DOCUMENT_ROOT__NONLEAVENEW = 96;
/**
* The feature id for the 'Nonunicodeskins' containment reference.
@@ -2453,7 +2590,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NONUNICODESKINS = 93;
+ int DOCUMENT_ROOT__NONUNICODESKINS = 97;
/**
* The feature id for the 'Null' containment reference.
@@ -2462,7 +2599,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__NULL = 94;
+ int DOCUMENT_ROOT__NULL = 98;
/**
* The feature id for the 'Open' containment reference.
@@ -2471,7 +2608,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__OPEN = 95;
+ int DOCUMENT_ROOT__OPEN = 99;
/**
* The feature id for the 'Open Ignore RE' attribute.
@@ -2480,7 +2617,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__OPEN_IGNORE_RE = 96;
+ int DOCUMENT_ROOT__OPEN_IGNORE_RE = 100;
/**
* The feature id for the 'Other' containment reference.
@@ -2489,7 +2626,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__OTHER = 97;
+ int DOCUMENT_ROOT__OTHER = 101;
/**
* The feature id for the 'Outputformat' attribute.
@@ -2498,7 +2635,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__OUTPUTFORMAT = 98;
+ int DOCUMENT_ROOT__OUTPUTFORMAT = 102;
/**
* The feature id for the 'Panic' containment reference.
@@ -2507,7 +2644,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PANIC = 99;
+ int DOCUMENT_ROOT__PANIC = 103;
/**
* The feature id for the 'Performance' containment reference.
@@ -2516,7 +2653,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PERFORMANCE = 100;
+ int DOCUMENT_ROOT__PERFORMANCE = 104;
/**
* The feature id for the 'Pointertoarrays' containment reference.
@@ -2525,7 +2662,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__POINTERTOARRAYS = 101;
+ int DOCUMENT_ROOT__POINTERTOARRAYS = 105;
/**
* The feature id for the 'Pragmadisable' containment reference.
@@ -2534,7 +2671,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PRAGMADISABLE = 102;
+ int DOCUMENT_ROOT__PRAGMADISABLE = 106;
/**
* The feature id for the 'Pragmamessage' containment reference.
@@ -2543,7 +2680,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PRAGMAMESSAGE = 103;
+ int DOCUMENT_ROOT__PRAGMAMESSAGE = 107;
/**
* The feature id for the 'Pragmaother' containment reference.
@@ -2552,7 +2689,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PRAGMAOTHER = 104;
+ int DOCUMENT_ROOT__PRAGMAOTHER = 108;
/**
* The feature id for the 'Privateinheritance' containment reference.
@@ -2561,7 +2698,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PRIVATEINHERITANCE = 105;
+ int DOCUMENT_ROOT__PRIVATEINHERITANCE = 109;
/**
* The feature id for the 'Pushaddrvar' containment reference.
@@ -2570,7 +2707,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PUSHADDRVAR = 106;
+ int DOCUMENT_ROOT__PUSHADDRVAR = 110;
/**
* The feature id for the 'Pushmember' containment reference.
@@ -2579,7 +2716,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__PUSHMEMBER = 107;
+ int DOCUMENT_ROOT__PUSHMEMBER = 111;
/**
* The feature id for the 'Readresource' containment reference.
@@ -2588,7 +2725,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__READRESOURCE = 108;
+ int DOCUMENT_ROOT__READRESOURCE = 112;
/**
* The feature id for the 'Resourcenotoncleanupstack' containment reference.
@@ -2597,7 +2734,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__RESOURCENOTONCLEANUPSTACK = 109;
+ int DOCUMENT_ROOT__RESOURCENOTONCLEANUPSTACK = 113;
/**
* The feature id for the 'Resourcesonheap' containment reference.
@@ -2606,7 +2743,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__RESOURCESONHEAP = 110;
+ int DOCUMENT_ROOT__RESOURCESONHEAP = 114;
/**
* The feature id for the 'Returndescriptoroutofscope' containment reference.
@@ -2615,7 +2752,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__RETURNDESCRIPTOROUTOFSCOPE = 111;
+ int DOCUMENT_ROOT__RETURNDESCRIPTOROUTOFSCOPE = 115;
/**
* The feature id for the 'Rfs' containment reference.
@@ -2624,7 +2761,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__RFS = 112;
+ int DOCUMENT_ROOT__RFS = 116;
/**
* The feature id for the 'Rssnames' containment reference.
@@ -2633,7 +2770,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__RSSNAMES = 113;
+ int DOCUMENT_ROOT__RSSNAMES = 117;
/**
* The feature id for the 'Scripts' containment reference.
@@ -2642,7 +2779,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__SCRIPTS = 114;
+ int DOCUMENT_ROOT__SCRIPTS = 118;
/**
* The feature id for the 'Severities' containment reference.
@@ -2651,16 +2788,16 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__SEVERITIES = 115;
-
- /**
- * The feature id for the 'Severity' attribute.
- *
- *
- * @generated
- * @ordered
- */
- int DOCUMENT_ROOT__SEVERITY = 116;
+ int DOCUMENT_ROOT__SEVERITIES = 119;
+
+ /**
+ * The feature id for the 'Severity' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int DOCUMENT_ROOT__SEVERITY = 120;
/**
* The feature id for the 'Sources' containment reference.
@@ -2669,7 +2806,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__SOURCES = 117;
+ int DOCUMENT_ROOT__SOURCES = 121;
/**
* The feature id for the 'Stringliterals' containment reference.
@@ -2678,7 +2815,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__STRINGLITERALS = 118;
+ int DOCUMENT_ROOT__STRINGLITERALS = 122;
/**
* The feature id for the 'Stringsinresourcefiles' containment reference.
@@ -2687,7 +2824,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__STRINGSINRESOURCEFILES = 119;
+ int DOCUMENT_ROOT__STRINGSINRESOURCEFILES = 123;
/**
* The feature id for the 'Struct' containment reference.
@@ -2696,7 +2833,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__STRUCT = 120;
+ int DOCUMENT_ROOT__STRUCT = 124;
/**
* The feature id for the 'Tcclasses' containment reference.
@@ -2705,7 +2842,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TCCLASSES = 121;
+ int DOCUMENT_ROOT__TCCLASSES = 125;
/**
* The feature id for the 'Tclassdestructor' containment reference.
@@ -2714,7 +2851,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TCLASSDESTRUCTOR = 122;
+ int DOCUMENT_ROOT__TCLASSDESTRUCTOR = 126;
/**
* The feature id for the 'Timestampedoutput' attribute.
@@ -2723,7 +2860,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TIMESTAMPEDOUTPUT = 123;
+ int DOCUMENT_ROOT__TIMESTAMPEDOUTPUT = 127;
/**
* The feature id for the 'Title' attribute.
@@ -2732,7 +2869,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TITLE = 124;
+ int DOCUMENT_ROOT__TITLE = 128;
/**
* The feature id for the 'Todocomments' containment reference.
@@ -2741,7 +2878,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TODOCOMMENTS = 125;
+ int DOCUMENT_ROOT__TODOCOMMENTS = 129;
/**
* The feature id for the 'Trapcleanup' containment reference.
@@ -2750,7 +2887,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TRAPCLEANUP = 126;
+ int DOCUMENT_ROOT__TRAPCLEANUP = 130;
/**
* The feature id for the 'Trapeleave' containment reference.
@@ -2759,7 +2896,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TRAPELEAVE = 127;
+ int DOCUMENT_ROOT__TRAPELEAVE = 131;
/**
* The feature id for the 'Traprunl' containment reference.
@@ -2768,7 +2905,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TRAPRUNL = 128;
+ int DOCUMENT_ROOT__TRAPRUNL = 132;
/**
* The feature id for the 'Trspassing' containment reference.
@@ -2777,7 +2914,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__TRSPASSING = 129;
+ int DOCUMENT_ROOT__TRSPASSING = 133;
/**
* The feature id for the 'Uids' containment reference.
@@ -2786,7 +2923,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__UIDS = 130;
+ int DOCUMENT_ROOT__UIDS = 134;
/**
* The feature id for the 'Uncompressedaif' containment reference.
@@ -2795,7 +2932,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__UNCOMPRESSEDAIF = 131;
+ int DOCUMENT_ROOT__UNCOMPRESSEDAIF = 135;
/**
* The feature id for the 'Uncompressedbmp' containment reference.
@@ -2804,7 +2941,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__UNCOMPRESSEDBMP = 132;
+ int DOCUMENT_ROOT__UNCOMPRESSEDBMP = 136;
/**
* The feature id for the 'Unicodesource' containment reference.
@@ -2813,7 +2950,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__UNICODESOURCE = 133;
+ int DOCUMENT_ROOT__UNICODESOURCE = 137;
/**
* The feature id for the 'Userafter' containment reference.
@@ -2822,7 +2959,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__USERAFTER = 134;
+ int DOCUMENT_ROOT__USERAFTER = 138;
/**
* The feature id for the 'Userfree' containment reference.
@@ -2831,7 +2968,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__USERFREE = 135;
+ int DOCUMENT_ROOT__USERFREE = 139;
/**
* The feature id for the 'User Wait For Request' containment reference.
@@ -2840,7 +2977,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__USER_WAIT_FOR_REQUEST = 136;
+ int DOCUMENT_ROOT__USER_WAIT_FOR_REQUEST = 140;
/**
* The feature id for the 'Variablenames' containment reference.
@@ -2849,7 +2986,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__VARIABLENAMES = 137;
+ int DOCUMENT_ROOT__VARIABLENAMES = 141;
/**
* The feature id for the 'Voidparameter' containment reference.
@@ -2858,7 +2995,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__VOIDPARAMETER = 138;
+ int DOCUMENT_ROOT__VOIDPARAMETER = 142;
/**
* The feature id for the 'Words RE' attribute.
@@ -2867,7 +3004,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__WORDS_RE = 139;
+ int DOCUMENT_ROOT__WORDS_RE = 143;
/**
* The feature id for the 'Worryingcomments' containment reference.
@@ -2876,7 +3013,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__WORRYINGCOMMENTS = 140;
+ int DOCUMENT_ROOT__WORRYINGCOMMENTS = 144;
/**
* The feature id for the 'Worry RE' attribute.
@@ -2885,16 +3022,16 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__WORRY_RE = 141;
-
- /**
- * The feature id for the 'Category' attribute.
- *
- *
- * @generated
- * @ordered
- */
- int DOCUMENT_ROOT__CATEGORY = 142;
+ int DOCUMENT_ROOT__WORRY_RE = 145;
+
+ /**
+ * The feature id for the 'Category' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int DOCUMENT_ROOT__CATEGORY = 146;
/**
* The feature id for the 'Severity1' attribute.
@@ -2903,7 +3040,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT__SEVERITY1 = 143;
+ int DOCUMENT_ROOT__SEVERITY1 = 147;
/**
* The number of structural features of the 'Document Root' class.
@@ -2912,7 +3049,7 @@
* @generated
* @ordered
*/
- int DOCUMENT_ROOT_FEATURE_COUNT = 144;
+ int DOCUMENT_ROOT_FEATURE_COUNT = 148;
/**
* The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.DoubleSemiColonTypeImpl Double Semi Colon Type}' class.
@@ -2922,7 +3059,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDoubleSemiColonType()
* @generated
*/
- int DOUBLE_SEMI_COLON_TYPE = 33;
+ int DOUBLE_SEMI_COLON_TYPE = 35;
/**
* The feature id for the 'Category' attribute.
@@ -2968,7 +3105,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getDrivelettersType()
* @generated
*/
- int DRIVELETTERS_TYPE = 34;
+ int DRIVELETTERS_TYPE = 36;
/**
* The feature id for the 'Category' attribute.
@@ -3014,7 +3151,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getEikbuttonsType()
* @generated
*/
- int EIKBUTTONS_TYPE = 35;
+ int EIKBUTTONS_TYPE = 37;
/**
* The feature id for the 'Category' attribute.
@@ -3060,7 +3197,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getEikonenvstaticType()
* @generated
*/
- int EIKONENVSTATIC_TYPE = 36;
+ int EIKONENVSTATIC_TYPE = 38;
/**
* The feature id for the 'Category' attribute.
@@ -3106,7 +3243,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getEnummembersType()
* @generated
*/
- int ENUMMEMBERS_TYPE = 37;
+ int ENUMMEMBERS_TYPE = 39;
/**
* The feature id for the 'Category' attribute.
@@ -3152,7 +3289,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getEnumnamesType()
* @generated
*/
- int ENUMNAMES_TYPE = 38;
+ int ENUMNAMES_TYPE = 40;
/**
* The feature id for the 'Category' attribute.
@@ -3198,7 +3335,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getExportinlineType()
* @generated
*/
- int EXPORTINLINE_TYPE = 39;
+ int EXPORTINLINE_TYPE = 41;
/**
* The feature id for the 'Category' attribute.
@@ -3244,7 +3381,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getExportpurevirtualType()
* @generated
*/
- int EXPORTPUREVIRTUAL_TYPE = 40;
+ int EXPORTPUREVIRTUAL_TYPE = 42;
/**
* The feature id for the 'Category' attribute.
@@ -3290,7 +3427,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getExternaldrivelettersType()
* @generated
*/
- int EXTERNALDRIVELETTERS_TYPE = 41;
+ int EXTERNALDRIVELETTERS_TYPE = 43;
/**
* The feature id for the 'Category' attribute.
@@ -3329,6 +3466,52 @@
int EXTERNALDRIVELETTERS_TYPE_FEATURE_COUNT = 3;
/**
+ * The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.FlagsTypeImpl Flags Type}' class.
+ *
+ *
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.FlagsTypeImpl
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getFlagsType()
+ * @generated
+ */
+ int FLAGS_TYPE = 44;
+
+ /**
+ * The feature id for the 'Category' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int FLAGS_TYPE__CATEGORY = 0;
+
+ /**
+ * The feature id for the 'Enable' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int FLAGS_TYPE__ENABLE = 1;
+
+ /**
+ * The feature id for the 'Severity' attribute.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int FLAGS_TYPE__SEVERITY = 2;
+
+ /**
+ * The number of structural features of the 'Flags Type' class.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int FLAGS_TYPE_FEATURE_COUNT = 3;
+
+ /**
* The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.FoffTypeImpl Foff Type}' class.
*
*
@@ -3336,7 +3519,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getFoffType()
* @generated
*/
- int FOFF_TYPE = 42;
+ int FOFF_TYPE = 45;
/**
* The feature id for the 'Category' attribute.
@@ -3382,7 +3565,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getForbiddenwordsType()
* @generated
*/
- int FORBIDDENWORDS_TYPE = 43;
+ int FORBIDDENWORDS_TYPE = 46;
/**
* The feature id for the 'Words RE' attribute.
@@ -3437,7 +3620,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getForgottoputptroncleanupstackType()
* @generated
*/
- int FORGOTTOPUTPTRONCLEANUPSTACK_TYPE = 44;
+ int FORGOTTOPUTPTRONCLEANUPSTACK_TYPE = 47;
/**
* The feature id for the 'Category' attribute.
@@ -3483,7 +3666,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getFriendType()
* @generated
*/
- int FRIEND_TYPE = 45;
+ int FRIEND_TYPE = 48;
/**
* The feature id for the 'Category' attribute.
@@ -3529,7 +3712,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getFunctionalityType()
* @generated
*/
- int FUNCTIONALITY_TYPE = 46;
+ int FUNCTIONALITY_TYPE = 49;
/**
* The feature id for the 'Enable' attribute.
@@ -3557,7 +3740,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getGotoType()
* @generated
*/
- int GOTO_TYPE = 47;
+ int GOTO_TYPE = 50;
/**
* The feature id for the 'Category' attribute.
@@ -3603,7 +3786,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getHighType()
* @generated
*/
- int HIGH_TYPE = 48;
+ int HIGH_TYPE = 51;
/**
* The feature id for the 'Enable' attribute.
@@ -3631,7 +3814,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getIfassignmentsType()
* @generated
*/
- int IFASSIGNMENTS_TYPE = 49;
+ int IFASSIGNMENTS_TYPE = 52;
/**
* The feature id for the 'Category' attribute.
@@ -3677,7 +3860,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getIfpreprocessorType()
* @generated
*/
- int IFPREPROCESSOR_TYPE = 50;
+ int IFPREPROCESSOR_TYPE = 53;
/**
* The feature id for the 'Category' attribute.
@@ -3723,7 +3906,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getInheritanceorderType()
* @generated
*/
- int INHERITANCEORDER_TYPE = 51;
+ int INHERITANCEORDER_TYPE = 54;
/**
* The feature id for the 'Category' attribute.
@@ -3769,7 +3952,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getIntleavesType()
* @generated
*/
- int INTLEAVES_TYPE = 52;
+ int INTLEAVES_TYPE = 55;
/**
* The feature id for the 'Category' attribute.
@@ -3815,7 +3998,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getJmpType()
* @generated
*/
- int JMP_TYPE = 53;
+ int JMP_TYPE = 56;
/**
* The feature id for the 'Category' attribute.
@@ -3861,7 +4044,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getKeywordType()
* @generated
*/
- int KEYWORD_TYPE = 54;
+ int KEYWORD_TYPE = 57;
/**
* The feature id for the 'Value' attribute.
@@ -3898,7 +4081,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLeaveNoErrorType()
* @generated
*/
- int LEAVE_NO_ERROR_TYPE = 55;
+ int LEAVE_NO_ERROR_TYPE = 58;
/**
* The feature id for the 'Category' attribute.
@@ -3944,7 +4127,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLeaveType()
* @generated
*/
- int LEAVE_TYPE = 56;
+ int LEAVE_TYPE = 59;
/**
* The feature id for the 'Category' attribute.
@@ -3990,7 +4173,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLeavingoperatorsType()
* @generated
*/
- int LEAVINGOPERATORS_TYPE = 57;
+ int LEAVINGOPERATORS_TYPE = 60;
/**
* The feature id for the 'Category' attribute.
@@ -4036,7 +4219,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLegalType()
* @generated
*/
- int LEGAL_TYPE = 58;
+ int LEGAL_TYPE = 61;
/**
* The feature id for the 'Enable' attribute.
@@ -4064,7 +4247,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLFunctionCantLeaveType()
* @generated
*/
- int LFUNCTION_CANT_LEAVE_TYPE = 59;
+ int LFUNCTION_CANT_LEAVE_TYPE = 62;
/**
* The feature id for the 'LFunction Ignore RE' attribute.
@@ -4119,7 +4302,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLocalisationType()
* @generated
*/
- int LOCALISATION_TYPE = 60;
+ int LOCALISATION_TYPE = 63;
/**
* The feature id for the 'Enable' attribute.
@@ -4147,7 +4330,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLonglinesType()
* @generated
*/
- int LONGLINES_TYPE = 61;
+ int LONGLINES_TYPE = 64;
/**
* The feature id for the 'Category' attribute.
@@ -4202,7 +4385,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getLowType()
* @generated
*/
- int LOW_TYPE = 62;
+ int LOW_TYPE = 65;
/**
* The feature id for the 'Enable' attribute.
@@ -4230,7 +4413,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMagicnumbersType()
* @generated
*/
- int MAGICNUMBERS_TYPE = 63;
+ int MAGICNUMBERS_TYPE = 66;
/**
* The feature id for the 'Category' attribute.
@@ -4276,7 +4459,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMclassdestructorType()
* @generated
*/
- int MCLASSDESTRUCTOR_TYPE = 64;
+ int MCLASSDESTRUCTOR_TYPE = 67;
/**
* The feature id for the 'Category' attribute.
@@ -4322,7 +4505,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMediumType()
* @generated
*/
- int MEDIUM_TYPE = 65;
+ int MEDIUM_TYPE = 68;
/**
* The feature id for the 'Enable' attribute.
@@ -4350,7 +4533,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMemberlcType()
* @generated
*/
- int MEMBERLC_TYPE = 66;
+ int MEMBERLC_TYPE = 69;
/**
* The feature id for the 'Category' attribute.
@@ -4396,7 +4579,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMembervariablecallldType()
* @generated
*/
- int MEMBERVARIABLECALLLD_TYPE = 67;
+ int MEMBERVARIABLECALLLD_TYPE = 70;
/**
* The feature id for the 'Category' attribute.
@@ -4442,7 +4625,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMissingcancelType()
* @generated
*/
- int MISSINGCANCEL_TYPE = 68;
+ int MISSINGCANCEL_TYPE = 71;
/**
* The feature id for the 'Category' attribute.
@@ -4488,7 +4671,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMissingcclassType()
* @generated
*/
- int MISSINGCCLASS_TYPE = 69;
+ int MISSINGCCLASS_TYPE = 72;
/**
* The feature id for the 'Cclass Ignore RE' attribute.
@@ -4543,7 +4726,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMmpsourcepathType()
* @generated
*/
- int MMPSOURCEPATH_TYPE = 70;
+ int MMPSOURCEPATH_TYPE = 73;
/**
* The feature id for the 'Category' attribute.
@@ -4589,7 +4772,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMultilangrscType()
* @generated
*/
- int MULTILANGRSC_TYPE = 71;
+ int MULTILANGRSC_TYPE = 74;
/**
* The feature id for the 'Category' attribute.
@@ -4635,7 +4818,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMultipledeclarationsType()
* @generated
*/
- int MULTIPLEDECLARATIONS_TYPE = 72;
+ int MULTIPLEDECLARATIONS_TYPE = 75;
/**
* The feature id for the 'Category' attribute.
@@ -4681,7 +4864,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMultipleinheritanceType()
* @generated
*/
- int MULTIPLEINHERITANCE_TYPE = 73;
+ int MULTIPLEINHERITANCE_TYPE = 76;
/**
* The feature id for the 'Category' attribute.
@@ -4727,7 +4910,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getMydocsType()
* @generated
*/
- int MYDOCS_TYPE = 74;
+ int MYDOCS_TYPE = 77;
/**
* The feature id for the 'Category' attribute.
@@ -4773,7 +4956,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNamespaceType()
* @generated
*/
- int NAMESPACE_TYPE = 75;
+ int NAMESPACE_TYPE = 78;
/**
* The feature id for the 'Category' attribute.
@@ -4819,7 +5002,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNewlreferencesType()
* @generated
*/
- int NEWLREFERENCES_TYPE = 76;
+ int NEWLREFERENCES_TYPE = 79;
/**
* The feature id for the 'Category' attribute.
@@ -4865,7 +5048,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNoleavetrapType()
* @generated
*/
- int NOLEAVETRAP_TYPE = 77;
+ int NOLEAVETRAP_TYPE = 80;
/**
* The feature id for the 'Category' attribute.
@@ -4911,7 +5094,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNonconsthbufcType()
* @generated
*/
- int NONCONSTHBUFC_TYPE = 78;
+ int NONCONSTHBUFC_TYPE = 81;
/**
* The feature id for the 'Category' attribute.
@@ -4957,7 +5140,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNonconsttdescType()
* @generated
*/
- int NONCONSTTDESC_TYPE = 79;
+ int NONCONSTTDESC_TYPE = 82;
/**
* The feature id for the 'Category' attribute.
@@ -5003,7 +5186,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNonleavenewType()
* @generated
*/
- int NONLEAVENEW_TYPE = 80;
+ int NONLEAVENEW_TYPE = 83;
/**
* The feature id for the 'Category' attribute.
@@ -5049,7 +5232,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNonunicodeskinsType()
* @generated
*/
- int NONUNICODESKINS_TYPE = 81;
+ int NONUNICODESKINS_TYPE = 84;
/**
* The feature id for the 'Category' attribute.
@@ -5095,7 +5278,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getNullType()
* @generated
*/
- int NULL_TYPE = 82;
+ int NULL_TYPE = 85;
/**
* The feature id for the 'Category' attribute.
@@ -5141,7 +5324,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getOpenType()
* @generated
*/
- int OPEN_TYPE = 83;
+ int OPEN_TYPE = 86;
/**
* The feature id for the 'Open Ignore RE' attribute.
@@ -5196,7 +5379,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getOtherType()
* @generated
*/
- int OTHER_TYPE = 84;
+ int OTHER_TYPE = 87;
/**
* The feature id for the 'Enable' attribute.
@@ -5224,7 +5407,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPanicType()
* @generated
*/
- int PANIC_TYPE = 85;
+ int PANIC_TYPE = 88;
/**
* The feature id for the 'Enable' attribute.
@@ -5252,7 +5435,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPerformanceType()
* @generated
*/
- int PERFORMANCE_TYPE = 86;
+ int PERFORMANCE_TYPE = 89;
/**
* The feature id for the 'Enable' attribute.
@@ -5280,7 +5463,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPointertoarraysType()
* @generated
*/
- int POINTERTOARRAYS_TYPE = 87;
+ int POINTERTOARRAYS_TYPE = 90;
/**
* The feature id for the 'Category' attribute.
@@ -5326,7 +5509,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPragmadisableType()
* @generated
*/
- int PRAGMADISABLE_TYPE = 88;
+ int PRAGMADISABLE_TYPE = 91;
/**
* The feature id for the 'Category' attribute.
@@ -5372,7 +5555,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPragmamessageType()
* @generated
*/
- int PRAGMAMESSAGE_TYPE = 89;
+ int PRAGMAMESSAGE_TYPE = 92;
/**
* The feature id for the 'Category' attribute.
@@ -5418,7 +5601,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPragmaotherType()
* @generated
*/
- int PRAGMAOTHER_TYPE = 90;
+ int PRAGMAOTHER_TYPE = 93;
/**
* The feature id for the 'Category' attribute.
@@ -5464,7 +5647,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPrivateinheritanceType()
* @generated
*/
- int PRIVATEINHERITANCE_TYPE = 91;
+ int PRIVATEINHERITANCE_TYPE = 94;
/**
* The feature id for the 'Category' attribute.
@@ -5510,7 +5693,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPushaddrvarType()
* @generated
*/
- int PUSHADDRVAR_TYPE = 92;
+ int PUSHADDRVAR_TYPE = 95;
/**
* The feature id for the 'Category' attribute.
@@ -5556,7 +5739,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getPushmemberType()
* @generated
*/
- int PUSHMEMBER_TYPE = 93;
+ int PUSHMEMBER_TYPE = 96;
/**
* The feature id for the 'Category' attribute.
@@ -5602,7 +5785,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getReadresourceType()
* @generated
*/
- int READRESOURCE_TYPE = 94;
+ int READRESOURCE_TYPE = 97;
/**
* The feature id for the 'Category' attribute.
@@ -5648,7 +5831,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getResourcenotoncleanupstackType()
* @generated
*/
- int RESOURCENOTONCLEANUPSTACK_TYPE = 95;
+ int RESOURCENOTONCLEANUPSTACK_TYPE = 98;
/**
* The feature id for the 'Category' attribute.
@@ -5694,7 +5877,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getResourcesonheapType()
* @generated
*/
- int RESOURCESONHEAP_TYPE = 96;
+ int RESOURCESONHEAP_TYPE = 99;
/**
* The feature id for the 'Category' attribute.
@@ -5740,7 +5923,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getReturndescriptoroutofscopeType()
* @generated
*/
- int RETURNDESCRIPTOROUTOFSCOPE_TYPE = 97;
+ int RETURNDESCRIPTOROUTOFSCOPE_TYPE = 100;
/**
* The feature id for the 'Category' attribute.
@@ -5786,7 +5969,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getRfsType()
* @generated
*/
- int RFS_TYPE = 98;
+ int RFS_TYPE = 101;
/**
* The feature id for the 'Category' attribute.
@@ -5832,7 +6015,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getRssnamesType()
* @generated
*/
- int RSSNAMES_TYPE = 99;
+ int RSSNAMES_TYPE = 102;
/**
* The feature id for the 'Category' attribute.
@@ -5878,7 +6061,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getScriptsType()
* @generated
*/
- int SCRIPTS_TYPE = 100;
+ int SCRIPTS_TYPE = 103;
/**
* The feature id for the 'Mixed' attribute list.
@@ -6052,13 +6235,31 @@
int SCRIPTS_TYPE__CONTROLORNULL = 18;
/**
+ * The feature id for the 'Crepository' containment reference.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int SCRIPTS_TYPE__CREPOSITORY = 19;
+
+ /**
* The feature id for the 'Ctltargettype' containment reference.
*
*
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__CTLTARGETTYPE = 19;
+ int SCRIPTS_TYPE__CTLTARGETTYPE = 20;
+
+ /**
+ * The feature id for the 'Customizableicons' containment reference.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int SCRIPTS_TYPE__CUSTOMIZABLEICONS = 21;
/**
* The feature id for the 'Debugrom' containment reference.
@@ -6067,7 +6268,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__DEBUGROM = 20;
+ int SCRIPTS_TYPE__DEBUGROM = 22;
/**
* The feature id for the 'Declarename' containment reference.
@@ -6076,7 +6277,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__DECLARENAME = 21;
+ int SCRIPTS_TYPE__DECLARENAME = 23;
/**
* The feature id for the 'Delete Member Variable' containment reference.
@@ -6085,7 +6286,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__DELETE_MEMBER_VARIABLE = 22;
+ int SCRIPTS_TYPE__DELETE_MEMBER_VARIABLE = 24;
/**
* The feature id for the 'Destructor' containment reference.
@@ -6094,7 +6295,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__DESTRUCTOR = 23;
+ int SCRIPTS_TYPE__DESTRUCTOR = 25;
/**
* The feature id for the 'Double Semi Colon' containment reference.
@@ -6103,7 +6304,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__DOUBLE_SEMI_COLON = 24;
+ int SCRIPTS_TYPE__DOUBLE_SEMI_COLON = 26;
/**
* The feature id for the 'Driveletters' containment reference.
@@ -6112,7 +6313,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__DRIVELETTERS = 25;
+ int SCRIPTS_TYPE__DRIVELETTERS = 27;
/**
* The feature id for the 'Eikbuttons' containment reference.
@@ -6121,7 +6322,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__EIKBUTTONS = 26;
+ int SCRIPTS_TYPE__EIKBUTTONS = 28;
/**
* The feature id for the 'Eikonenvstatic' containment reference.
@@ -6130,7 +6331,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__EIKONENVSTATIC = 27;
+ int SCRIPTS_TYPE__EIKONENVSTATIC = 29;
/**
* The feature id for the 'Enummembers' containment reference.
@@ -6139,7 +6340,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__ENUMMEMBERS = 28;
+ int SCRIPTS_TYPE__ENUMMEMBERS = 30;
/**
* The feature id for the 'Enumnames' containment reference.
@@ -6148,7 +6349,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__ENUMNAMES = 29;
+ int SCRIPTS_TYPE__ENUMNAMES = 31;
/**
* The feature id for the 'Exportinline' containment reference.
@@ -6157,7 +6358,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__EXPORTINLINE = 30;
+ int SCRIPTS_TYPE__EXPORTINLINE = 32;
/**
* The feature id for the 'Exportpurevirtual' containment reference.
@@ -6166,7 +6367,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__EXPORTPUREVIRTUAL = 31;
+ int SCRIPTS_TYPE__EXPORTPUREVIRTUAL = 33;
/**
* The feature id for the 'Externaldriveletters' containment reference.
@@ -6175,7 +6376,16 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__EXTERNALDRIVELETTERS = 32;
+ int SCRIPTS_TYPE__EXTERNALDRIVELETTERS = 34;
+
+ /**
+ * The feature id for the 'Flags' containment reference.
+ *
+ *
+ * @generated
+ * @ordered
+ */
+ int SCRIPTS_TYPE__FLAGS = 35;
/**
* The feature id for the 'Foff' containment reference.
@@ -6184,7 +6394,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__FOFF = 33;
+ int SCRIPTS_TYPE__FOFF = 36;
/**
* The feature id for the 'Forbiddenwords' containment reference.
@@ -6193,7 +6403,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__FORBIDDENWORDS = 34;
+ int SCRIPTS_TYPE__FORBIDDENWORDS = 37;
/**
* The feature id for the 'Forgottoputptroncleanupstack' containment reference.
@@ -6202,7 +6412,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__FORGOTTOPUTPTRONCLEANUPSTACK = 35;
+ int SCRIPTS_TYPE__FORGOTTOPUTPTRONCLEANUPSTACK = 38;
/**
* The feature id for the 'Friend' containment reference.
@@ -6211,7 +6421,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__FRIEND = 36;
+ int SCRIPTS_TYPE__FRIEND = 39;
/**
* The feature id for the 'Goto' containment reference.
@@ -6220,7 +6430,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__GOTO = 37;
+ int SCRIPTS_TYPE__GOTO = 40;
/**
* The feature id for the 'Ifassignments' containment reference.
@@ -6229,7 +6439,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__IFASSIGNMENTS = 38;
+ int SCRIPTS_TYPE__IFASSIGNMENTS = 41;
/**
* The feature id for the 'Ifpreprocessor' containment reference.
@@ -6238,7 +6448,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__IFPREPROCESSOR = 39;
+ int SCRIPTS_TYPE__IFPREPROCESSOR = 42;
/**
* The feature id for the 'Inheritanceorder' containment reference.
@@ -6247,7 +6457,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__INHERITANCEORDER = 40;
+ int SCRIPTS_TYPE__INHERITANCEORDER = 43;
/**
* The feature id for the 'Intleaves' containment reference.
@@ -6256,7 +6466,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__INTLEAVES = 41;
+ int SCRIPTS_TYPE__INTLEAVES = 44;
/**
* The feature id for the 'Jmp' containment reference.
@@ -6265,7 +6475,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__JMP = 42;
+ int SCRIPTS_TYPE__JMP = 45;
/**
* The feature id for the 'Leave' containment reference.
@@ -6274,7 +6484,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__LEAVE = 43;
+ int SCRIPTS_TYPE__LEAVE = 46;
/**
* The feature id for the 'Leave No Error' containment reference.
@@ -6283,7 +6493,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__LEAVE_NO_ERROR = 44;
+ int SCRIPTS_TYPE__LEAVE_NO_ERROR = 47;
/**
* The feature id for the 'Leavingoperators' containment reference.
@@ -6292,7 +6502,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__LEAVINGOPERATORS = 45;
+ int SCRIPTS_TYPE__LEAVINGOPERATORS = 48;
/**
* The feature id for the 'LFunction Cant Leave' containment reference.
@@ -6301,7 +6511,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__LFUNCTION_CANT_LEAVE = 46;
+ int SCRIPTS_TYPE__LFUNCTION_CANT_LEAVE = 49;
/**
* The feature id for the 'Longlines' containment reference.
@@ -6310,7 +6520,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__LONGLINES = 47;
+ int SCRIPTS_TYPE__LONGLINES = 50;
/**
* The feature id for the 'Magicnumbers' containment reference.
@@ -6319,7 +6529,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MAGICNUMBERS = 48;
+ int SCRIPTS_TYPE__MAGICNUMBERS = 51;
/**
* The feature id for the 'Mclassdestructor' containment reference.
@@ -6328,7 +6538,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MCLASSDESTRUCTOR = 49;
+ int SCRIPTS_TYPE__MCLASSDESTRUCTOR = 52;
/**
* The feature id for the 'Memberlc' containment reference.
@@ -6337,7 +6547,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MEMBERLC = 50;
+ int SCRIPTS_TYPE__MEMBERLC = 53;
/**
* The feature id for the 'Membervariablecallld' containment reference.
@@ -6346,7 +6556,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MEMBERVARIABLECALLLD = 51;
+ int SCRIPTS_TYPE__MEMBERVARIABLECALLLD = 54;
/**
* The feature id for the 'Missingcancel' containment reference.
@@ -6355,7 +6565,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MISSINGCANCEL = 52;
+ int SCRIPTS_TYPE__MISSINGCANCEL = 55;
/**
* The feature id for the 'Missingcclass' containment reference.
@@ -6364,7 +6574,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MISSINGCCLASS = 53;
+ int SCRIPTS_TYPE__MISSINGCCLASS = 56;
/**
* The feature id for the 'Mmpsourcepath' containment reference.
@@ -6373,7 +6583,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MMPSOURCEPATH = 54;
+ int SCRIPTS_TYPE__MMPSOURCEPATH = 57;
/**
* The feature id for the 'Multilangrsc' containment reference.
@@ -6382,7 +6592,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MULTILANGRSC = 55;
+ int SCRIPTS_TYPE__MULTILANGRSC = 58;
/**
* The feature id for the 'Multipledeclarations' containment reference.
@@ -6391,7 +6601,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MULTIPLEDECLARATIONS = 56;
+ int SCRIPTS_TYPE__MULTIPLEDECLARATIONS = 59;
/**
* The feature id for the 'Multipleinheritance' containment reference.
@@ -6400,7 +6610,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MULTIPLEINHERITANCE = 57;
+ int SCRIPTS_TYPE__MULTIPLEINHERITANCE = 60;
/**
* The feature id for the 'Mydocs' containment reference.
@@ -6409,7 +6619,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__MYDOCS = 58;
+ int SCRIPTS_TYPE__MYDOCS = 61;
/**
* The feature id for the 'Namespace' containment reference.
@@ -6418,7 +6628,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NAMESPACE = 59;
+ int SCRIPTS_TYPE__NAMESPACE = 62;
/**
* The feature id for the 'Newlreferences' containment reference.
@@ -6427,7 +6637,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NEWLREFERENCES = 60;
+ int SCRIPTS_TYPE__NEWLREFERENCES = 63;
/**
* The feature id for the 'Noleavetrap' containment reference.
@@ -6436,7 +6646,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NOLEAVETRAP = 61;
+ int SCRIPTS_TYPE__NOLEAVETRAP = 64;
/**
* The feature id for the 'Nonconsthbufc' containment reference.
@@ -6445,7 +6655,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NONCONSTHBUFC = 62;
+ int SCRIPTS_TYPE__NONCONSTHBUFC = 65;
/**
* The feature id for the 'Nonconsttdesc' containment reference.
@@ -6454,7 +6664,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NONCONSTTDESC = 63;
+ int SCRIPTS_TYPE__NONCONSTTDESC = 66;
/**
* The feature id for the 'Nonleavenew' containment reference.
@@ -6463,7 +6673,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NONLEAVENEW = 64;
+ int SCRIPTS_TYPE__NONLEAVENEW = 67;
/**
* The feature id for the 'Nonunicodeskins' containment reference.
@@ -6472,7 +6682,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NONUNICODESKINS = 65;
+ int SCRIPTS_TYPE__NONUNICODESKINS = 68;
/**
* The feature id for the 'Null' containment reference.
@@ -6481,7 +6691,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__NULL = 66;
+ int SCRIPTS_TYPE__NULL = 69;
/**
* The feature id for the 'Open' containment reference.
@@ -6490,7 +6700,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__OPEN = 67;
+ int SCRIPTS_TYPE__OPEN = 70;
/**
* The feature id for the 'Pointertoarrays' containment reference.
@@ -6499,7 +6709,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__POINTERTOARRAYS = 68;
+ int SCRIPTS_TYPE__POINTERTOARRAYS = 71;
/**
* The feature id for the 'Pragmadisable' containment reference.
@@ -6508,7 +6718,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__PRAGMADISABLE = 69;
+ int SCRIPTS_TYPE__PRAGMADISABLE = 72;
/**
* The feature id for the 'Pragmamessage' containment reference.
@@ -6517,7 +6727,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__PRAGMAMESSAGE = 70;
+ int SCRIPTS_TYPE__PRAGMAMESSAGE = 73;
/**
* The feature id for the 'Pragmaother' containment reference.
@@ -6526,7 +6736,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__PRAGMAOTHER = 71;
+ int SCRIPTS_TYPE__PRAGMAOTHER = 74;
/**
* The feature id for the 'Privateinheritance' containment reference.
@@ -6535,7 +6745,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__PRIVATEINHERITANCE = 72;
+ int SCRIPTS_TYPE__PRIVATEINHERITANCE = 75;
/**
* The feature id for the 'Pushaddrvar' containment reference.
@@ -6544,7 +6754,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__PUSHADDRVAR = 73;
+ int SCRIPTS_TYPE__PUSHADDRVAR = 76;
/**
* The feature id for the 'Pushmember' containment reference.
@@ -6553,7 +6763,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__PUSHMEMBER = 74;
+ int SCRIPTS_TYPE__PUSHMEMBER = 77;
/**
* The feature id for the 'Readresource' containment reference.
@@ -6562,7 +6772,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__READRESOURCE = 75;
+ int SCRIPTS_TYPE__READRESOURCE = 78;
/**
* The feature id for the 'Resourcenotoncleanupstack' containment reference.
@@ -6571,7 +6781,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__RESOURCENOTONCLEANUPSTACK = 76;
+ int SCRIPTS_TYPE__RESOURCENOTONCLEANUPSTACK = 79;
/**
* The feature id for the 'Resourcesonheap' containment reference.
@@ -6580,7 +6790,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__RESOURCESONHEAP = 77;
+ int SCRIPTS_TYPE__RESOURCESONHEAP = 80;
/**
* The feature id for the 'Returndescriptoroutofscope' containment reference.
@@ -6589,7 +6799,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__RETURNDESCRIPTOROUTOFSCOPE = 78;
+ int SCRIPTS_TYPE__RETURNDESCRIPTOROUTOFSCOPE = 81;
/**
* The feature id for the 'Rfs' containment reference.
@@ -6598,7 +6808,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__RFS = 79;
+ int SCRIPTS_TYPE__RFS = 82;
/**
* The feature id for the 'Rssnames' containment reference.
@@ -6607,7 +6817,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__RSSNAMES = 80;
+ int SCRIPTS_TYPE__RSSNAMES = 83;
/**
* The feature id for the 'Stringliterals' containment reference.
@@ -6616,7 +6826,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__STRINGLITERALS = 81;
+ int SCRIPTS_TYPE__STRINGLITERALS = 84;
/**
* The feature id for the 'Stringsinresourcefiles' containment reference.
@@ -6625,7 +6835,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__STRINGSINRESOURCEFILES = 82;
+ int SCRIPTS_TYPE__STRINGSINRESOURCEFILES = 85;
/**
* The feature id for the 'Struct' containment reference.
@@ -6634,7 +6844,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__STRUCT = 83;
+ int SCRIPTS_TYPE__STRUCT = 86;
/**
* The feature id for the 'Tcclasses' containment reference.
@@ -6643,7 +6853,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__TCCLASSES = 84;
+ int SCRIPTS_TYPE__TCCLASSES = 87;
/**
* The feature id for the 'Tclassdestructor' containment reference.
@@ -6652,7 +6862,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__TCLASSDESTRUCTOR = 85;
+ int SCRIPTS_TYPE__TCLASSDESTRUCTOR = 88;
/**
* The feature id for the 'Todocomments' containment reference.
@@ -6661,7 +6871,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__TODOCOMMENTS = 86;
+ int SCRIPTS_TYPE__TODOCOMMENTS = 89;
/**
* The feature id for the 'Trapcleanup' containment reference.
@@ -6670,7 +6880,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__TRAPCLEANUP = 87;
+ int SCRIPTS_TYPE__TRAPCLEANUP = 90;
/**
* The feature id for the 'Trapeleave' containment reference.
@@ -6679,7 +6889,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__TRAPELEAVE = 88;
+ int SCRIPTS_TYPE__TRAPELEAVE = 91;
/**
* The feature id for the 'Traprunl' containment reference.
@@ -6688,7 +6898,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__TRAPRUNL = 89;
+ int SCRIPTS_TYPE__TRAPRUNL = 92;
/**
* The feature id for the 'Trspassing' containment reference.
@@ -6697,7 +6907,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__TRSPASSING = 90;
+ int SCRIPTS_TYPE__TRSPASSING = 93;
/**
* The feature id for the 'Uids' containment reference.
@@ -6706,7 +6916,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__UIDS = 91;
+ int SCRIPTS_TYPE__UIDS = 94;
/**
* The feature id for the 'Uncompressedaif' containment reference.
@@ -6715,7 +6925,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__UNCOMPRESSEDAIF = 92;
+ int SCRIPTS_TYPE__UNCOMPRESSEDAIF = 95;
/**
* The feature id for the 'Uncompressedbmp' containment reference.
@@ -6724,7 +6934,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__UNCOMPRESSEDBMP = 93;
+ int SCRIPTS_TYPE__UNCOMPRESSEDBMP = 96;
/**
* The feature id for the 'Unicodesource' containment reference.
@@ -6733,7 +6943,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__UNICODESOURCE = 94;
+ int SCRIPTS_TYPE__UNICODESOURCE = 97;
/**
* The feature id for the 'Userafter' containment reference.
@@ -6742,7 +6952,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__USERAFTER = 95;
+ int SCRIPTS_TYPE__USERAFTER = 98;
/**
* The feature id for the 'Userfree' containment reference.
@@ -6751,7 +6961,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__USERFREE = 96;
+ int SCRIPTS_TYPE__USERFREE = 99;
/**
* The feature id for the 'User Wait For Request' containment reference.
@@ -6760,7 +6970,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__USER_WAIT_FOR_REQUEST = 97;
+ int SCRIPTS_TYPE__USER_WAIT_FOR_REQUEST = 100;
/**
* The feature id for the 'Variablenames' containment reference.
@@ -6769,7 +6979,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__VARIABLENAMES = 98;
+ int SCRIPTS_TYPE__VARIABLENAMES = 101;
/**
* The feature id for the 'Voidparameter' containment reference.
@@ -6778,7 +6988,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__VOIDPARAMETER = 99;
+ int SCRIPTS_TYPE__VOIDPARAMETER = 102;
/**
* The feature id for the 'Worryingcomments' containment reference.
@@ -6787,7 +6997,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE__WORRYINGCOMMENTS = 100;
+ int SCRIPTS_TYPE__WORRYINGCOMMENTS = 103;
/**
* The number of structural features of the 'Scripts Type' class.
@@ -6796,7 +7006,7 @@
* @generated
* @ordered
*/
- int SCRIPTS_TYPE_FEATURE_COUNT = 101;
+ int SCRIPTS_TYPE_FEATURE_COUNT = 104;
/**
* The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.SeveritiesTypeImpl Severities Type}' class.
@@ -6806,7 +7016,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getSeveritiesType()
* @generated
*/
- int SEVERITIES_TYPE = 101;
+ int SEVERITIES_TYPE = 104;
/**
* The feature id for the 'High' containment reference.
@@ -6852,7 +7062,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getSourcesType()
* @generated
*/
- int SOURCES_TYPE = 102;
+ int SOURCES_TYPE = 105;
/**
* The feature id for the 'Exclude' attribute list.
@@ -6880,7 +7090,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getStringliteralsType()
* @generated
*/
- int STRINGLITERALS_TYPE = 103;
+ int STRINGLITERALS_TYPE = 106;
/**
* The feature id for the 'Category' attribute.
@@ -6926,7 +7136,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getStringsinresourcefilesType()
* @generated
*/
- int STRINGSINRESOURCEFILES_TYPE = 104;
+ int STRINGSINRESOURCEFILES_TYPE = 107;
/**
* The feature id for the 'Category' attribute.
@@ -6972,7 +7182,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getStructType()
* @generated
*/
- int STRUCT_TYPE = 105;
+ int STRUCT_TYPE = 108;
/**
* The feature id for the 'Category' attribute.
@@ -7018,7 +7228,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getTcclassesType()
* @generated
*/
- int TCCLASSES_TYPE = 106;
+ int TCCLASSES_TYPE = 109;
/**
* The feature id for the 'Category' attribute.
@@ -7064,7 +7274,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getTclassdestructorType()
* @generated
*/
- int TCLASSDESTRUCTOR_TYPE = 107;
+ int TCLASSDESTRUCTOR_TYPE = 110;
/**
* The feature id for the 'Category' attribute.
@@ -7110,7 +7320,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getTodocommentsType()
* @generated
*/
- int TODOCOMMENTS_TYPE = 108;
+ int TODOCOMMENTS_TYPE = 111;
/**
* The feature id for the 'Category' attribute.
@@ -7156,7 +7366,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getTrapcleanupType()
* @generated
*/
- int TRAPCLEANUP_TYPE = 109;
+ int TRAPCLEANUP_TYPE = 112;
/**
* The feature id for the 'Category' attribute.
@@ -7202,7 +7412,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getTrapeleaveType()
* @generated
*/
- int TRAPELEAVE_TYPE = 110;
+ int TRAPELEAVE_TYPE = 113;
/**
* The feature id for the 'Category' attribute.
@@ -7248,7 +7458,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getTraprunlType()
* @generated
*/
- int TRAPRUNL_TYPE = 111;
+ int TRAPRUNL_TYPE = 114;
/**
* The feature id for the 'Category' attribute.
@@ -7294,7 +7504,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getTrspassingType()
* @generated
*/
- int TRSPASSING_TYPE = 112;
+ int TRSPASSING_TYPE = 115;
/**
* The feature id for the 'Category' attribute.
@@ -7340,7 +7550,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getUidsType()
* @generated
*/
- int UIDS_TYPE = 113;
+ int UIDS_TYPE = 116;
/**
* The feature id for the 'Category' attribute.
@@ -7386,7 +7596,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getUncompressedaifType()
* @generated
*/
- int UNCOMPRESSEDAIF_TYPE = 114;
+ int UNCOMPRESSEDAIF_TYPE = 117;
/**
* The feature id for the 'Category' attribute.
@@ -7432,7 +7642,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getUncompressedbmpType()
* @generated
*/
- int UNCOMPRESSEDBMP_TYPE = 115;
+ int UNCOMPRESSEDBMP_TYPE = 118;
/**
* The feature id for the 'Category' attribute.
@@ -7478,7 +7688,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getUnicodesourceType()
* @generated
*/
- int UNICODESOURCE_TYPE = 116;
+ int UNICODESOURCE_TYPE = 119;
/**
* The feature id for the 'Category' attribute.
@@ -7524,7 +7734,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getUserafterType()
* @generated
*/
- int USERAFTER_TYPE = 117;
+ int USERAFTER_TYPE = 120;
/**
* The feature id for the 'Category' attribute.
@@ -7570,7 +7780,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getUserfreeType()
* @generated
*/
- int USERFREE_TYPE = 118;
+ int USERFREE_TYPE = 121;
/**
* The feature id for the 'Category' attribute.
@@ -7616,7 +7826,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getUserWaitForRequestType()
* @generated
*/
- int USER_WAIT_FOR_REQUEST_TYPE = 119;
+ int USER_WAIT_FOR_REQUEST_TYPE = 122;
/**
* The feature id for the 'Category' attribute.
@@ -7662,7 +7872,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getVariablenamesType()
* @generated
*/
- int VARIABLENAMES_TYPE = 120;
+ int VARIABLENAMES_TYPE = 123;
/**
* The feature id for the 'Category' attribute.
@@ -7708,7 +7918,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getVoidparameterType()
* @generated
*/
- int VOIDPARAMETER_TYPE = 121;
+ int VOIDPARAMETER_TYPE = 124;
/**
* The feature id for the 'Category' attribute.
@@ -7754,7 +7964,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getWorryingcommentsType()
* @generated
*/
- int WORRYINGCOMMENTS_TYPE = 122;
+ int WORRYINGCOMMENTS_TYPE = 125;
/**
* The feature id for the 'Worry RE' attribute.
@@ -7809,7 +8019,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getCategoryType()
* @generated
*/
- int CATEGORY_TYPE = 123;
+ int CATEGORY_TYPE = 126;
/**
* The meta object id for the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.SeverityType Severity Type}' enum.
@@ -7819,7 +8029,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getSeverityType()
* @generated
*/
- int SEVERITY_TYPE = 124;
+ int SEVERITY_TYPE = 127;
/**
* The meta object id for the 'Category Type Object' data type.
@@ -7829,7 +8039,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getCategoryTypeObject()
* @generated
*/
- int CATEGORY_TYPE_OBJECT = 125;
+ int CATEGORY_TYPE_OBJECT = 128;
/**
* The meta object id for the 'Severity Type Object' data type.
@@ -7839,7 +8049,7 @@
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.impl.CSConfigPackageImpl#getSeverityTypeObject()
* @generated
*/
- int SEVERITY_TYPE_OBJECT = 126;
+ int SEVERITY_TYPE_OBJECT = 129;
/**
@@ -8941,6 +9151,49 @@
EAttribute getControlornullType_Severity();
/**
+ * Returns the meta object for class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType Crepository Type}'.
+ *
+ *
+ * @return the meta object for class 'Crepository Type'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType
+ * @generated
+ */
+ EClass getCrepositoryType();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType#getCategory Category}'.
+ *
+ *
+ * @return the meta object for the attribute 'Category'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType#getCategory()
+ * @see #getCrepositoryType()
+ * @generated
+ */
+ EAttribute getCrepositoryType_Category();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType#isEnable Enable}'.
+ *
+ *
+ * @return the meta object for the attribute 'Enable'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType#isEnable()
+ * @see #getCrepositoryType()
+ * @generated
+ */
+ EAttribute getCrepositoryType_Enable();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType#getSeverity Severity}'.
+ *
+ *
+ * @return the meta object for the attribute 'Severity'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType#getSeverity()
+ * @see #getCrepositoryType()
+ * @generated
+ */
+ EAttribute getCrepositoryType_Severity();
+
+ /**
* Returns the meta object for class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CtltargettypeType Ctltargettype Type}'.
*
*
@@ -8984,6 +9237,60 @@
EAttribute getCtltargettypeType_Severity();
/**
+ * Returns the meta object for class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType Customizableicons Type}'.
+ *
+ *
+ * @return the meta object for class 'Customizableicons Type'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType
+ * @generated
+ */
+ EClass getCustomizableiconsType();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getIconsRE Icons RE}'.
+ *
+ *
+ * @return the meta object for the attribute 'Icons RE'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getIconsRE()
+ * @see #getCustomizableiconsType()
+ * @generated
+ */
+ EAttribute getCustomizableiconsType_IconsRE();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getCategory Category}'.
+ *
+ *
+ * @return the meta object for the attribute 'Category'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getCategory()
+ * @see #getCustomizableiconsType()
+ * @generated
+ */
+ EAttribute getCustomizableiconsType_Category();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#isEnable Enable}'.
+ *
+ *
+ * @return the meta object for the attribute 'Enable'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#isEnable()
+ * @see #getCustomizableiconsType()
+ * @generated
+ */
+ EAttribute getCustomizableiconsType_Enable();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getSeverity Severity}'.
+ *
+ *
+ * @return the meta object for the attribute 'Severity'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getSeverity()
+ * @see #getCustomizableiconsType()
+ * @generated
+ */
+ EAttribute getCustomizableiconsType_Severity();
+
+ /**
* Returns the meta object for class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomrulesType Customrules Type}'.
*
*
@@ -9603,6 +9910,17 @@
EReference getDocumentRoot_Controlornull();
/**
+ * Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCrepository Crepository}'.
+ *
+ *
+ * @return the meta object for the containment reference 'Crepository'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCrepository()
+ * @see #getDocumentRoot()
+ * @generated
+ */
+ EReference getDocumentRoot_Crepository();
+
+ /**
* Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCtltargettype Ctltargettype}'.
*
*
@@ -9614,6 +9932,17 @@
EReference getDocumentRoot_Ctltargettype();
/**
+ * Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCustomizableicons Customizableicons}'.
+ *
+ *
+ * @return the meta object for the containment reference 'Customizableicons'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCustomizableicons()
+ * @see #getDocumentRoot()
+ * @generated
+ */
+ EReference getDocumentRoot_Customizableicons();
+
+ /**
* Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCustomrule Customrule}'.
*
*
@@ -9823,6 +10152,17 @@
EAttribute getDocumentRoot_Filetype();
/**
+ * Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getFlags Flags}'.
+ *
+ *
+ * @return the meta object for the containment reference 'Flags'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getFlags()
+ * @see #getDocumentRoot()
+ * @generated
+ */
+ EReference getDocumentRoot_Flags();
+
+ /**
* Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getFoff Foff}'.
*
*
@@ -9900,6 +10240,17 @@
EReference getDocumentRoot_High();
/**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getIconsRE Icons RE}'.
+ *
+ *
+ * @return the meta object for the attribute 'Icons RE'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getIconsRE()
+ * @see #getDocumentRoot()
+ * @generated
+ */
+ EAttribute getDocumentRoot_IconsRE();
+
+ /**
* Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getIfassignments Ifassignments}'.
*
*
@@ -11266,6 +11617,49 @@
EAttribute getExternaldrivelettersType_Severity();
/**
+ * Returns the meta object for class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType Flags Type}'.
+ *
+ *
+ * @return the meta object for class 'Flags Type'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType
+ * @generated
+ */
+ EClass getFlagsType();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType#getCategory Category}'.
+ *
+ *
+ * @return the meta object for the attribute 'Category'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType#getCategory()
+ * @see #getFlagsType()
+ * @generated
+ */
+ EAttribute getFlagsType_Category();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType#isEnable Enable}'.
+ *
+ *
+ * @return the meta object for the attribute 'Enable'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType#isEnable()
+ * @see #getFlagsType()
+ * @generated
+ */
+ EAttribute getFlagsType_Enable();
+
+ /**
+ * Returns the meta object for the attribute '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType#getSeverity Severity}'.
+ *
+ *
+ * @return the meta object for the attribute 'Severity'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType#getSeverity()
+ * @see #getFlagsType()
+ * @generated
+ */
+ EAttribute getFlagsType_Severity();
+
+ /**
* Returns the meta object for class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FoffType Foff Type}'.
*
*
@@ -13825,6 +14219,17 @@
EReference getScriptsType_Controlornull();
/**
+ * Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getCrepository Crepository}'.
+ *
+ *
+ * @return the meta object for the containment reference 'Crepository'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getCrepository()
+ * @see #getScriptsType()
+ * @generated
+ */
+ EReference getScriptsType_Crepository();
+
+ /**
* Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getCtltargettype Ctltargettype}'.
*
*
@@ -13836,6 +14241,17 @@
EReference getScriptsType_Ctltargettype();
/**
+ * Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getCustomizableicons Customizableicons}'.
+ *
+ *
+ * @return the meta object for the containment reference 'Customizableicons'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getCustomizableicons()
+ * @see #getScriptsType()
+ * @generated
+ */
+ EReference getScriptsType_Customizableicons();
+
+ /**
* Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getDebugrom Debugrom}'.
*
*
@@ -13979,6 +14395,17 @@
EReference getScriptsType_Externaldriveletters();
/**
+ * Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getFlags Flags}'.
+ *
+ *
+ * @return the meta object for the containment reference 'Flags'.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getFlags()
+ * @see #getScriptsType()
+ * @generated
+ */
+ EReference getScriptsType_Flags();
+
+ /**
* Returns the meta object for the containment reference '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getFoff Foff}'.
*
*
@@ -15687,7 +16114,7 @@
*
* @return the meta object for data type 'Category Type Object'.
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CategoryType
- * @model instanceClass="com.nokia.carbide.cpp.codescanner.gen.CSConfig.CategoryType"
+ * @model instanceClass="com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CategoryType"
* extendedMetaData="name='category_._type:Object' baseType='category_._type'"
* @generated
*/
@@ -15699,7 +16126,7 @@
*
* @return the meta object for data type 'Severity Type Object'.
* @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.SeverityType
- * @model instanceClass="com.nokia.carbide.cpp.codescanner.gen.CSConfig.SeverityType"
+ * @model instanceClass="com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.SeverityType"
* extendedMetaData="name='severity_._type:Object' baseType='severity_._type'"
* @generated
*/
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CrepositoryType.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/CrepositoryType.java Mon Apr 06 15:46:51 2009 -0500
@@ -0,0 +1,209 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+package com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ *
+ * A representation of the model object 'Crepository Type'.
+ *
+ *
+ *
+ *
+ *
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getCustomizableiconsType()
+ * @model extendedMetaData="name='customizableicons_._type' kind='elementOnly'"
+ * @generated
+ */
+public interface CustomizableiconsType extends EObject {
+ /**
+ * Returns the value of the 'Icons RE' attribute.
+ *
+ *
+ * If the meaning of the 'Icons RE' attribute isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Icons RE' attribute.
+ * @see #setIconsRE(String)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getCustomizableiconsType_IconsRE()
+ * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
+ * extendedMetaData="kind='element' name='iconsRE' namespace='##targetNamespace'"
+ * @generated
+ */
+ String getIconsRE();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getIconsRE Icons RE}' attribute.
+ *
+ *
+ * @param value the new value of the 'Icons RE' attribute.
+ * @see #getIconsRE()
+ * @generated
+ */
+ void setIconsRE(String value);
+
+ /**
+ * Returns the value of the 'Category' attribute.
+ * The literals are from the enumeration {@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CategoryType}.
+ *
+ *
+ * If the meaning of the 'Category' attribute isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Category' attribute.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CategoryType
+ * @see #isSetCategory()
+ * @see #unsetCategory()
+ * @see #setCategory(CategoryType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getCustomizableiconsType_Category()
+ * @model unsettable="true"
+ * extendedMetaData="kind='attribute' name='category' namespace='##targetNamespace'"
+ * @generated
+ */
+ CategoryType getCategory();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getCategory Category}' attribute.
+ *
+ *
+ * @param value the new value of the 'Category' attribute.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CategoryType
+ * @see #isSetCategory()
+ * @see #unsetCategory()
+ * @see #getCategory()
+ * @generated
+ */
+ void setCategory(CategoryType value);
+
+ /**
+ * Unsets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getCategory Category}' attribute.
+ *
+ *
+ * @see #isSetCategory()
+ * @see #getCategory()
+ * @see #setCategory(CategoryType)
+ * @generated
+ */
+ void unsetCategory();
+
+ /**
+ * Returns whether the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getCategory Category}' attribute is set.
+ *
+ *
+ * @return whether the value of the 'Category' attribute is set.
+ * @see #unsetCategory()
+ * @see #getCategory()
+ * @see #setCategory(CategoryType)
+ * @generated
+ */
+ boolean isSetCategory();
+
+ /**
+ * Returns the value of the 'Enable' attribute.
+ *
+ *
+ * If the meaning of the 'Enable' attribute isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Enable' attribute.
+ * @see #isSetEnable()
+ * @see #unsetEnable()
+ * @see #setEnable(boolean)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getCustomizableiconsType_Enable()
+ * @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Boolean" required="true"
+ * extendedMetaData="kind='attribute' name='enable' namespace='##targetNamespace'"
+ * @generated
+ */
+ boolean isEnable();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#isEnable Enable}' attribute.
+ *
+ *
+ * @param value the new value of the 'Enable' attribute.
+ * @see #isSetEnable()
+ * @see #unsetEnable()
+ * @see #isEnable()
+ * @generated
+ */
+ void setEnable(boolean value);
+
+ /**
+ * Unsets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#isEnable Enable}' attribute.
+ *
+ *
+ * @see #isSetEnable()
+ * @see #isEnable()
+ * @see #setEnable(boolean)
+ * @generated
+ */
+ void unsetEnable();
+
+ /**
+ * Returns whether the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#isEnable Enable}' attribute is set.
+ *
+ *
+ * @return whether the value of the 'Enable' attribute is set.
+ * @see #unsetEnable()
+ * @see #isEnable()
+ * @see #setEnable(boolean)
+ * @generated
+ */
+ boolean isSetEnable();
+
+ /**
+ * Returns the value of the 'Severity' attribute.
+ * The literals are from the enumeration {@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.SeverityType}.
+ *
+ *
+ * If the meaning of the 'Severity' attribute isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Severity' attribute.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.SeverityType
+ * @see #isSetSeverity()
+ * @see #unsetSeverity()
+ * @see #setSeverity(SeverityType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getCustomizableiconsType_Severity()
+ * @model unsettable="true"
+ * extendedMetaData="kind='attribute' name='severity' namespace='##targetNamespace'"
+ * @generated
+ */
+ SeverityType getSeverity();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getSeverity Severity}' attribute.
+ *
+ *
+ * @param value the new value of the 'Severity' attribute.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.SeverityType
+ * @see #isSetSeverity()
+ * @see #unsetSeverity()
+ * @see #getSeverity()
+ * @generated
+ */
+ void setSeverity(SeverityType value);
+
+ /**
+ * Unsets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getSeverity Severity}' attribute.
+ *
+ *
+ * @see #isSetSeverity()
+ * @see #getSeverity()
+ * @see #setSeverity(SeverityType)
+ * @generated
+ */
+ void unsetSeverity();
+
+ /**
+ * Returns whether the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType#getSeverity Severity}' attribute is set.
+ *
+ *
+ * @return whether the value of the 'Severity' attribute is set.
+ * @see #unsetSeverity()
+ * @see #getSeverity()
+ * @see #setSeverity(SeverityType)
+ * @generated
+ */
+ boolean isSetSeverity();
+
+} // CustomizableiconsType
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/DocumentRoot.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/DocumentRoot.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/DocumentRoot.java Mon Apr 06 15:46:51 2009 -0500
@@ -59,7 +59,9 @@
*
@@ -912,6 +916,33 @@
void setControlornull(ControlornullType value);
/**
+ * Returns the value of the 'Crepository' containment reference.
+ *
+ *
+ * If the meaning of the 'Crepository' containment reference isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Crepository' containment reference.
+ * @see #setCrepository(CrepositoryType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getDocumentRoot_Crepository()
+ * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
+ * extendedMetaData="kind='element' name='crepository' namespace='##targetNamespace'"
+ * @generated
+ */
+ CrepositoryType getCrepository();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCrepository Crepository}' containment reference.
+ *
+ *
+ * @param value the new value of the 'Crepository' containment reference.
+ * @see #getCrepository()
+ * @generated
+ */
+ void setCrepository(CrepositoryType value);
+
+ /**
* Returns the value of the 'Ctltargettype' containment reference.
*
*
@@ -939,6 +970,33 @@
void setCtltargettype(CtltargettypeType value);
/**
+ * Returns the value of the 'Customizableicons' containment reference.
+ *
+ *
+ * If the meaning of the 'Customizableicons' containment reference isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Customizableicons' containment reference.
+ * @see #setCustomizableicons(CustomizableiconsType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getDocumentRoot_Customizableicons()
+ * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
+ * extendedMetaData="kind='element' name='customizableicons' namespace='##targetNamespace'"
+ * @generated
+ */
+ CustomizableiconsType getCustomizableicons();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getCustomizableicons Customizableicons}' containment reference.
+ *
+ *
+ * @param value the new value of the 'Customizableicons' containment reference.
+ * @see #getCustomizableicons()
+ * @generated
+ */
+ void setCustomizableicons(CustomizableiconsType value);
+
+ /**
* Returns the value of the 'Customrule' containment reference.
*
*
@@ -1452,6 +1510,33 @@
void setFiletype(String value);
/**
+ * Returns the value of the 'Flags' containment reference.
+ *
+ *
+ * If the meaning of the 'Flags' containment reference isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Flags' containment reference.
+ * @see #setFlags(FlagsType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getDocumentRoot_Flags()
+ * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
+ * extendedMetaData="kind='element' name='flags' namespace='##targetNamespace'"
+ * @generated
+ */
+ FlagsType getFlags();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getFlags Flags}' containment reference.
+ *
+ *
+ * @param value the new value of the 'Flags' containment reference.
+ * @see #getFlags()
+ * @generated
+ */
+ void setFlags(FlagsType value);
+
+ /**
* Returns the value of the 'Foff' containment reference.
*
*
@@ -1641,6 +1726,33 @@
void setHigh(HighType value);
/**
+ * Returns the value of the 'Icons RE' attribute.
+ *
+ *
+ * If the meaning of the 'Icons RE' attribute isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Icons RE' attribute.
+ * @see #setIconsRE(String)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getDocumentRoot_IconsRE()
+ * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" upper="-2" transient="true" volatile="true" derived="true"
+ * extendedMetaData="kind='element' name='iconsRE' namespace='##targetNamespace'"
+ * @generated
+ */
+ String getIconsRE();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.DocumentRoot#getIconsRE Icons RE}' attribute.
+ *
+ *
+ * @param value the new value of the 'Icons RE' attribute.
+ * @see #getIconsRE()
+ * @generated
+ */
+ void setIconsRE(String value);
+
+ /**
* Returns the value of the 'Ifassignments' containment reference.
*
*
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/FlagsType.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/FlagsType.java Mon Apr 06 15:46:51 2009 -0500
@@ -0,0 +1,209 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+package com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ *
+ * A representation of the model object 'Flags Type'.
+ *
+ *
+ *
@@ -642,6 +645,33 @@
void setControlornull(ControlornullType value);
/**
+ * Returns the value of the 'Crepository' containment reference.
+ *
+ *
+ * If the meaning of the 'Crepository' containment reference isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Crepository' containment reference.
+ * @see #setCrepository(CrepositoryType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getScriptsType_Crepository()
+ * @model containment="true" transient="true" volatile="true" derived="true"
+ * extendedMetaData="kind='element' name='crepository' namespace='##targetNamespace'"
+ * @generated
+ */
+ CrepositoryType getCrepository();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getCrepository Crepository}' containment reference.
+ *
+ *
+ * @param value the new value of the 'Crepository' containment reference.
+ * @see #getCrepository()
+ * @generated
+ */
+ void setCrepository(CrepositoryType value);
+
+ /**
* Returns the value of the 'Ctltargettype' containment reference.
*
*
@@ -669,6 +699,33 @@
void setCtltargettype(CtltargettypeType value);
/**
+ * Returns the value of the 'Customizableicons' containment reference.
+ *
+ *
+ * If the meaning of the 'Customizableicons' containment reference isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Customizableicons' containment reference.
+ * @see #setCustomizableicons(CustomizableiconsType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getScriptsType_Customizableicons()
+ * @model containment="true" transient="true" volatile="true" derived="true"
+ * extendedMetaData="kind='element' name='customizableicons' namespace='##targetNamespace'"
+ * @generated
+ */
+ CustomizableiconsType getCustomizableicons();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getCustomizableicons Customizableicons}' containment reference.
+ *
+ *
+ * @param value the new value of the 'Customizableicons' containment reference.
+ * @see #getCustomizableicons()
+ * @generated
+ */
+ void setCustomizableicons(CustomizableiconsType value);
+
+ /**
* Returns the value of the 'Debugrom' containment reference.
*
*
@@ -1020,6 +1077,33 @@
void setExternaldriveletters(ExternaldrivelettersType value);
/**
+ * Returns the value of the 'Flags' containment reference.
+ *
+ *
+ * If the meaning of the 'Flags' containment reference isn't clear,
+ * there really should be more of a description here...
+ *
+ *
+ * @return the value of the 'Flags' containment reference.
+ * @see #setFlags(FlagsType)
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CSConfigPackage#getScriptsType_Flags()
+ * @model containment="true" transient="true" volatile="true" derived="true"
+ * extendedMetaData="kind='element' name='flags' namespace='##targetNamespace'"
+ * @generated
+ */
+ FlagsType getFlags();
+
+ /**
+ * Sets the value of the '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.ScriptsType#getFlags Flags}' containment reference.
+ *
+ *
+ * @param value the new value of the 'Flags' containment reference.
+ * @see #getFlags()
+ * @generated
+ */
+ void setFlags(FlagsType value);
+
+ /**
* Returns the value of the 'Foff' containment reference.
*
*
@@ -676,6 +784,33 @@
*
* @generated
*/
+ public CrepositoryType getCrepository() {
+ return (CrepositoryType)getMixed().get(CSConfigPackage.eINSTANCE.getScriptsType_Crepository(), true);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public NotificationChain basicSetCrepository(CrepositoryType newCrepository, NotificationChain msgs) {
+ return ((FeatureMap.Internal)getMixed()).basicAdd(CSConfigPackage.eINSTANCE.getScriptsType_Crepository(), newCrepository, msgs);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public void setCrepository(CrepositoryType newCrepository) {
+ ((FeatureMap.Internal)getMixed()).set(CSConfigPackage.eINSTANCE.getScriptsType_Crepository(), newCrepository);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
public CtltargettypeType getCtltargettype() {
return (CtltargettypeType)getMixed().get(CSConfigPackage.eINSTANCE.getScriptsType_Ctltargettype(), true);
}
@@ -703,6 +838,33 @@
*
* @generated
*/
+ public CustomizableiconsType getCustomizableicons() {
+ return (CustomizableiconsType)getMixed().get(CSConfigPackage.eINSTANCE.getScriptsType_Customizableicons(), true);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public NotificationChain basicSetCustomizableicons(CustomizableiconsType newCustomizableicons, NotificationChain msgs) {
+ return ((FeatureMap.Internal)getMixed()).basicAdd(CSConfigPackage.eINSTANCE.getScriptsType_Customizableicons(), newCustomizableicons, msgs);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public void setCustomizableicons(CustomizableiconsType newCustomizableicons) {
+ ((FeatureMap.Internal)getMixed()).set(CSConfigPackage.eINSTANCE.getScriptsType_Customizableicons(), newCustomizableicons);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
public DebugromType getDebugrom() {
return (DebugromType)getMixed().get(CSConfigPackage.eINSTANCE.getScriptsType_Debugrom(), true);
}
@@ -1054,6 +1216,33 @@
*
* @generated
*/
+ public FlagsType getFlags() {
+ return (FlagsType)getMixed().get(CSConfigPackage.eINSTANCE.getScriptsType_Flags(), true);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public NotificationChain basicSetFlags(FlagsType newFlags, NotificationChain msgs) {
+ return ((FeatureMap.Internal)getMixed()).basicAdd(CSConfigPackage.eINSTANCE.getScriptsType_Flags(), newFlags, msgs);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public void setFlags(FlagsType newFlags) {
+ ((FeatureMap.Internal)getMixed()).set(CSConfigPackage.eINSTANCE.getScriptsType_Flags(), newFlags);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
public FoffType getFoff() {
return (FoffType)getMixed().get(CSConfigPackage.eINSTANCE.getScriptsType_Foff(), true);
}
@@ -2931,8 +3120,12 @@
return basicSetConsttdescptr(null, msgs);
case CSConfigPackage.SCRIPTS_TYPE__CONTROLORNULL:
return basicSetControlornull(null, msgs);
+ case CSConfigPackage.SCRIPTS_TYPE__CREPOSITORY:
+ return basicSetCrepository(null, msgs);
case CSConfigPackage.SCRIPTS_TYPE__CTLTARGETTYPE:
return basicSetCtltargettype(null, msgs);
+ case CSConfigPackage.SCRIPTS_TYPE__CUSTOMIZABLEICONS:
+ return basicSetCustomizableicons(null, msgs);
case CSConfigPackage.SCRIPTS_TYPE__DEBUGROM:
return basicSetDebugrom(null, msgs);
case CSConfigPackage.SCRIPTS_TYPE__DECLARENAME:
@@ -2959,6 +3152,8 @@
return basicSetExportpurevirtual(null, msgs);
case CSConfigPackage.SCRIPTS_TYPE__EXTERNALDRIVELETTERS:
return basicSetExternaldriveletters(null, msgs);
+ case CSConfigPackage.SCRIPTS_TYPE__FLAGS:
+ return basicSetFlags(null, msgs);
case CSConfigPackage.SCRIPTS_TYPE__FOFF:
return basicSetFoff(null, msgs);
case CSConfigPackage.SCRIPTS_TYPE__FORBIDDENWORDS:
@@ -3146,8 +3341,12 @@
return getConsttdescptr();
case CSConfigPackage.SCRIPTS_TYPE__CONTROLORNULL:
return getControlornull();
+ case CSConfigPackage.SCRIPTS_TYPE__CREPOSITORY:
+ return getCrepository();
case CSConfigPackage.SCRIPTS_TYPE__CTLTARGETTYPE:
return getCtltargettype();
+ case CSConfigPackage.SCRIPTS_TYPE__CUSTOMIZABLEICONS:
+ return getCustomizableicons();
case CSConfigPackage.SCRIPTS_TYPE__DEBUGROM:
return getDebugrom();
case CSConfigPackage.SCRIPTS_TYPE__DECLARENAME:
@@ -3174,6 +3373,8 @@
return getExportpurevirtual();
case CSConfigPackage.SCRIPTS_TYPE__EXTERNALDRIVELETTERS:
return getExternaldriveletters();
+ case CSConfigPackage.SCRIPTS_TYPE__FLAGS:
+ return getFlags();
case CSConfigPackage.SCRIPTS_TYPE__FOFF:
return getFoff();
case CSConfigPackage.SCRIPTS_TYPE__FORBIDDENWORDS:
@@ -3379,9 +3580,15 @@
case CSConfigPackage.SCRIPTS_TYPE__CONTROLORNULL:
setControlornull((ControlornullType)newValue);
return;
+ case CSConfigPackage.SCRIPTS_TYPE__CREPOSITORY:
+ setCrepository((CrepositoryType)newValue);
+ return;
case CSConfigPackage.SCRIPTS_TYPE__CTLTARGETTYPE:
setCtltargettype((CtltargettypeType)newValue);
return;
+ case CSConfigPackage.SCRIPTS_TYPE__CUSTOMIZABLEICONS:
+ setCustomizableicons((CustomizableiconsType)newValue);
+ return;
case CSConfigPackage.SCRIPTS_TYPE__DEBUGROM:
setDebugrom((DebugromType)newValue);
return;
@@ -3421,6 +3628,9 @@
case CSConfigPackage.SCRIPTS_TYPE__EXTERNALDRIVELETTERS:
setExternaldriveletters((ExternaldrivelettersType)newValue);
return;
+ case CSConfigPackage.SCRIPTS_TYPE__FLAGS:
+ setFlags((FlagsType)newValue);
+ return;
case CSConfigPackage.SCRIPTS_TYPE__FOFF:
setFoff((FoffType)newValue);
return;
@@ -3694,9 +3904,15 @@
case CSConfigPackage.SCRIPTS_TYPE__CONTROLORNULL:
setControlornull((ControlornullType)null);
return;
+ case CSConfigPackage.SCRIPTS_TYPE__CREPOSITORY:
+ setCrepository((CrepositoryType)null);
+ return;
case CSConfigPackage.SCRIPTS_TYPE__CTLTARGETTYPE:
setCtltargettype((CtltargettypeType)null);
return;
+ case CSConfigPackage.SCRIPTS_TYPE__CUSTOMIZABLEICONS:
+ setCustomizableicons((CustomizableiconsType)null);
+ return;
case CSConfigPackage.SCRIPTS_TYPE__DEBUGROM:
setDebugrom((DebugromType)null);
return;
@@ -3736,6 +3952,9 @@
case CSConfigPackage.SCRIPTS_TYPE__EXTERNALDRIVELETTERS:
setExternaldriveletters((ExternaldrivelettersType)null);
return;
+ case CSConfigPackage.SCRIPTS_TYPE__FLAGS:
+ setFlags((FlagsType)null);
+ return;
case CSConfigPackage.SCRIPTS_TYPE__FOFF:
setFoff((FoffType)null);
return;
@@ -3990,8 +4209,12 @@
return getConsttdescptr() != null;
case CSConfigPackage.SCRIPTS_TYPE__CONTROLORNULL:
return getControlornull() != null;
+ case CSConfigPackage.SCRIPTS_TYPE__CREPOSITORY:
+ return getCrepository() != null;
case CSConfigPackage.SCRIPTS_TYPE__CTLTARGETTYPE:
return getCtltargettype() != null;
+ case CSConfigPackage.SCRIPTS_TYPE__CUSTOMIZABLEICONS:
+ return getCustomizableicons() != null;
case CSConfigPackage.SCRIPTS_TYPE__DEBUGROM:
return getDebugrom() != null;
case CSConfigPackage.SCRIPTS_TYPE__DECLARENAME:
@@ -4018,6 +4241,8 @@
return getExportpurevirtual() != null;
case CSConfigPackage.SCRIPTS_TYPE__EXTERNALDRIVELETTERS:
return getExternaldriveletters() != null;
+ case CSConfigPackage.SCRIPTS_TYPE__FLAGS:
+ return getFlags() != null;
case CSConfigPackage.SCRIPTS_TYPE__FOFF:
return getFoff() != null;
case CSConfigPackage.SCRIPTS_TYPE__FORBIDDENWORDS:
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/util/CSConfigAdapterFactory.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/util/CSConfigAdapterFactory.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/util/CSConfigAdapterFactory.java Mon Apr 06 15:46:51 2009 -0500
@@ -179,10 +179,18 @@
return createControlornullTypeAdapter();
}
@Override
+ public Adapter caseCrepositoryType(CrepositoryType object) {
+ return createCrepositoryTypeAdapter();
+ }
+ @Override
public Adapter caseCtltargettypeType(CtltargettypeType object) {
return createCtltargettypeTypeAdapter();
}
@Override
+ public Adapter caseCustomizableiconsType(CustomizableiconsType object) {
+ return createCustomizableiconsTypeAdapter();
+ }
+ @Override
public Adapter caseCustomrulesType(CustomrulesType object) {
return createCustomrulesTypeAdapter();
}
@@ -251,6 +259,10 @@
return createExternaldrivelettersTypeAdapter();
}
@Override
+ public Adapter caseFlagsType(FlagsType object) {
+ return createFlagsTypeAdapter();
+ }
+ @Override
public Adapter caseFoffType(FoffType object) {
return createFoffTypeAdapter();
}
@@ -931,6 +943,20 @@
}
/**
+ * Creates a new adapter for an object of class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType Crepository Type}'.
+ *
+ * This default implementation returns null so that we can easily ignore cases;
+ * it's useful to ignore a case when inheritance will catch all the cases anyway.
+ *
+ * @return the new adapter.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CrepositoryType
+ * @generated
+ */
+ public Adapter createCrepositoryTypeAdapter() {
+ return null;
+ }
+
+ /**
* Creates a new adapter for an object of class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CtltargettypeType Ctltargettype Type}'.
*
* This default implementation returns null so that we can easily ignore cases;
@@ -945,6 +971,20 @@
}
/**
+ * Creates a new adapter for an object of class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType Customizableicons Type}'.
+ *
+ * This default implementation returns null so that we can easily ignore cases;
+ * it's useful to ignore a case when inheritance will catch all the cases anyway.
+ *
+ * @return the new adapter.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomizableiconsType
+ * @generated
+ */
+ public Adapter createCustomizableiconsTypeAdapter() {
+ return null;
+ }
+
+ /**
* Creates a new adapter for an object of class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.CustomrulesType Customrules Type}'.
*
* This default implementation returns null so that we can easily ignore cases;
@@ -1183,6 +1223,20 @@
}
/**
+ * Creates a new adapter for an object of class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType Flags Type}'.
+ *
+ * This default implementation returns null so that we can easily ignore cases;
+ * it's useful to ignore a case when inheritance will catch all the cases anyway.
+ *
+ * @return the new adapter.
+ * @see com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FlagsType
+ * @generated
+ */
+ public Adapter createFlagsTypeAdapter() {
+ return null;
+ }
+
+ /**
* Creates a new adapter for an object of class '{@link com.nokia.carbide.cpp.internal.codescanner.gen.CSConfig.FoffType Foff Type}'.
*
* This default implementation returns null so that we can easily ignore cases;
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/util/CSConfigSwitch.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/util/CSConfigSwitch.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/gen/CSConfig/util/CSConfigSwitch.java Mon Apr 06 15:46:51 2009 -0500
@@ -242,12 +242,24 @@
if (result == null) result = defaultCase(theEObject);
return result;
}
+ case CSConfigPackage.CREPOSITORY_TYPE: {
+ CrepositoryType crepositoryType = (CrepositoryType)theEObject;
+ T result = caseCrepositoryType(crepositoryType);
+ if (result == null) result = defaultCase(theEObject);
+ return result;
+ }
case CSConfigPackage.CTLTARGETTYPE_TYPE: {
CtltargettypeType ctltargettypeType = (CtltargettypeType)theEObject;
T result = caseCtltargettypeType(ctltargettypeType);
if (result == null) result = defaultCase(theEObject);
return result;
}
+ case CSConfigPackage.CUSTOMIZABLEICONS_TYPE: {
+ CustomizableiconsType customizableiconsType = (CustomizableiconsType)theEObject;
+ T result = caseCustomizableiconsType(customizableiconsType);
+ if (result == null) result = defaultCase(theEObject);
+ return result;
+ }
case CSConfigPackage.CUSTOMRULES_TYPE: {
CustomrulesType customrulesType = (CustomrulesType)theEObject;
T result = caseCustomrulesType(customrulesType);
@@ -350,6 +362,12 @@
if (result == null) result = defaultCase(theEObject);
return result;
}
+ case CSConfigPackage.FLAGS_TYPE: {
+ FlagsType flagsType = (FlagsType)theEObject;
+ T result = caseFlagsType(flagsType);
+ if (result == null) result = defaultCase(theEObject);
+ return result;
+ }
case CSConfigPackage.FOFF_TYPE: {
FoffType foffType = (FoffType)theEObject;
T result = caseFoffType(foffType);
@@ -1201,6 +1219,21 @@
}
/**
+ * Returns the result of interpreting the object as an instance of 'Crepository Type'.
+ *
+ * This implementation returns null;
+ * returning a non-null result will terminate the switch.
+ *
+ * @param object the target of the switch.
+ * @return the result of interpreting the object as an instance of 'Crepository Type'.
+ * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
+ * @generated
+ */
+ public T caseCrepositoryType(CrepositoryType object) {
+ return null;
+ }
+
+ /**
* Returns the result of interpreting the object as an instance of 'Ctltargettype Type'.
*
* This implementation returns null;
@@ -1216,6 +1249,21 @@
}
/**
+ * Returns the result of interpreting the object as an instance of 'Customizableicons Type'.
+ *
+ * This implementation returns null;
+ * returning a non-null result will terminate the switch.
+ *
+ * @param object the target of the switch.
+ * @return the result of interpreting the object as an instance of 'Customizableicons Type'.
+ * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
+ * @generated
+ */
+ public T caseCustomizableiconsType(CustomizableiconsType object) {
+ return null;
+ }
+
+ /**
* Returns the result of interpreting the object as an instance of 'Customrules Type'.
*
* This implementation returns null;
@@ -1471,6 +1519,21 @@
}
/**
+ * Returns the result of interpreting the object as an instance of 'Flags Type'.
+ *
+ * This implementation returns null;
+ * returning a non-null result will terminate the switch.
+ *
+ * @param object the target of the switch.
+ * @return the result of interpreting the object as an instance of 'Flags Type'.
+ * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
+ * @generated
+ */
+ public T caseFlagsType(FlagsType object) {
+ return null;
+ }
+
+ /**
* Returns the result of interpreting the object as an instance of 'Foff Type'.
*
* This implementation returns null;
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/messages.properties
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/messages.properties Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/messages.properties Mon Apr 06 15:46:51 2009 -0500
@@ -72,6 +72,7 @@
RulesTabPage.RulesTableCategoriesLabel=Categories
RulesTabPage.RulesTableSeveritiesLabel=Severities
RulesTabPage.EditForbiddenWordsLabel=Forbidden words :
+RulesTabPage.EditIconsLabel=Icons:
RulesTabPage.EditLFunctionCantLeaveLabel=LFunction ignore :
RulesTabPage.EditLongLinesLabel=Long lines length :
RulesTabPage.EditMissingCClassLabel=C Class ignore :
@@ -102,7 +103,9 @@
CSRule.Constnames=A badly-named constant will make the source code harder to maintain and make defects more likely.
CSRule.Consttdescptr=Using const descriptor pointer as an argument. For example: use 'const TDesC&' instead of 'const TDesC*'.
CSRule.Controlornull=You should always check the return value of ControlOrNull() for NULL before attempting to access it.
+CSRule.Crepository=Independent application cannot assume that the Central Repository is set up fully. This means the return value of CRepository::get() cannot be ignored.
CSRule.Ctltargettype=The ctl targettype should not be used. Instead, use DLL and explicitly refer to the Control Panel\u2019s DEF file.
+CSRule.Customizableicons=Due to device customization requirements, independent application must not remove any customization done by the variant team. This means customizable icons cannot be used.
CSRule.Debugrom=Debug versions of components in the ROM mean that ROM space is being taken up with debugging information or that logging is still being output. Only release versions should be in the ROM.
CSRule.Declarename=The __DECLARE_NAME macro is historical and serves no purpose anymore and should be removed.
CSRule.DeleteMemberVariable=The Member variable was deleted incorrectly by not assigning it to NULL or another value to prevent accidental access of the deleted object.
@@ -115,7 +118,7 @@
CSRule.Enumnames=Badly-named enums make the code harder to maintain and may cause defects.
CSRule.Exportinline=Exporting inline functions can cause those that link to the DLL to fail to build. Exporting functions limits future changes due to considerations of binary-compatibility.
CSRule.Exportpurevirtual=The exporting of pure virtual functions is not recommended by Symbian.
-#CSRule.Externaldriveletters=External drive letters should not be hard-coded as the external drive may change between platforms and releases. This ownership confusion can lead to classes being deleted erroneously and leaks occurring.
+CSRule.Flags=Independent application must not use R&D flags nor feature flags via preprocessor statements in the source code. This means bld*.hrh and productvariant.hrh should not be used.
CSRule.Foff=_FOFF allows access to data in classes that were not intended for public access. This may cause problems, especially when the location of the data changes.
CSRule.Forbiddenwords=Use of forbidden words in header files, especially those destined for external release. Some words may be forbidden for legal reasons or for platform consistency. Where they exist, alternative allowed words should be used.
CSRule.Forgottoputptroncleanupstack=A memory leak can occur if a variable is not put on the cleanup stack and a leaving function or ELeave is called.
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/ui/CSPreferenceConstants.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/ui/CSPreferenceConstants.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/ui/CSPreferenceConstants.java Mon Apr 06 15:46:51 2009 -0500
@@ -41,6 +41,7 @@
public final static String RULES_ENABLED = "CodeScannerRulesEnabled";
public final static String CCLASSIGNORE = "CodeScannerCClassIgnore";
public final static String FORBIDEENWORDS = "CodeScannerForbiddenWords";
+ public final static String ICONS = "CodeScannerIcons";
public final static String LFUNCTIONIGNORE = "CodeScannerLFunctionIgnore";
public final static String LONGLINES_LENGTH = "CodeScannerLongLinesLength";
public final static String OPENIGNORE = "CodeScannerOpenIgnore";
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/ui/CSRulesTabPage.java
--- a/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/ui/CSRulesTabPage.java Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.codescanner/src/com/nokia/carbide/cpp/internal/codescanner/ui/CSRulesTabPage.java Mon Apr 06 15:46:51 2009 -0500
@@ -92,11 +92,12 @@
private Button enableAllButton = null;
private Button disableAllButton = null;
private String cclassIgnore = "";
+ private String icons = "";
private String lfunctionIgnore = "";
+ private int longLinesLength = 0;
private String forbiddenWords = "";
private String openIgnore = "";
private String worryingComments = "";
- private int longLinesLength = 0;
private CSConfigSettings defaultConfigSettings = null;
private List rules = null;
private CSRulesSorter rulesSorter = null;
@@ -282,6 +283,10 @@
rulesTableViewer.setInput(rules.toArray());
setCheckedElements();
cclassIgnore = defaultConfigSettings.getScriptCClassIgnore();
+ icons = defaultConfigSettings.getScriptIcons();
+ if (icons == null) {
+ icons = "";
+ }
longLinesLength = defaultConfigSettings.getScriptLongLinesLength();
forbiddenWords = defaultConfigSettings.getScriptForbiddenWords();
openIgnore = defaultConfigSettings.getScriptOpenIgnore();
@@ -341,6 +346,7 @@
// retrieve other stored values
cclassIgnore = store.getString(CSPreferenceConstants.CCLASSIGNORE);
forbiddenWords = store.getString(CSPreferenceConstants.FORBIDEENWORDS);
+ icons = store.getString(CSPreferenceConstants.ICONS);
lfunctionIgnore = store.getString(CSPreferenceConstants.LFUNCTIONIGNORE);
longLinesLength = store.getInt(CSPreferenceConstants.LONGLINES_LENGTH);
openIgnore = store.getString(CSPreferenceConstants.OPENIGNORE);
@@ -398,6 +404,7 @@
// retrieve other stored values
cclassIgnore = pageSettings.get(CSPreferenceConstants.CCLASSIGNORE);
forbiddenWords = pageSettings.get(CSPreferenceConstants.FORBIDEENWORDS);
+ icons = pageSettings.get(CSPreferenceConstants.ICONS);
lfunctionIgnore = pageSettings.get(CSPreferenceConstants.LFUNCTIONIGNORE);
longLinesLength = pageSettings.getInt(CSPreferenceConstants.LONGLINES_LENGTH);
openIgnore = pageSettings.get(CSPreferenceConstants.OPENIGNORE);
@@ -438,6 +445,7 @@
// store other values
store.setValue(CSPreferenceConstants.CCLASSIGNORE, cclassIgnore);
store.setValue(CSPreferenceConstants.FORBIDEENWORDS, forbiddenWords);
+ store.setValue(CSPreferenceConstants.ICONS, icons);
store.setValue(CSPreferenceConstants.LFUNCTIONIGNORE, lfunctionIgnore);
store.setValue(CSPreferenceConstants.LONGLINES_LENGTH, longLinesLength);
store.setValue(CSPreferenceConstants.OPENIGNORE, openIgnore);
@@ -478,6 +486,7 @@
// store other values
pageSettings.put(CSPreferenceConstants.CCLASSIGNORE, cclassIgnore);
pageSettings.put(CSPreferenceConstants.FORBIDEENWORDS, forbiddenWords);
+ pageSettings.put(CSPreferenceConstants.ICONS, icons);
pageSettings.put(CSPreferenceConstants.LFUNCTIONIGNORE, lfunctionIgnore);
pageSettings.put(CSPreferenceConstants.LONGLINES_LENGTH, longLinesLength);
pageSettings.put(CSPreferenceConstants.OPENIGNORE, openIgnore);
@@ -516,6 +525,11 @@
store.setDefault(CSPreferenceConstants.RULES_ENABLED, enabledString);
store.setDefault(CSPreferenceConstants.CCLASSIGNORE, configSettings.getScriptCClassIgnore());
store.setDefault(CSPreferenceConstants.FORBIDEENWORDS, configSettings.getScriptForbiddenWords());
+ String icons = configSettings.getScriptIcons();
+ if (icons == null) {
+ icons = "";
+ }
+ store.setDefault(CSPreferenceConstants.ICONS, icons);
store.setDefault(CSPreferenceConstants.LFUNCTIONIGNORE, configSettings.getScriptLFunctionIgnore());
store.setDefault(CSPreferenceConstants.LONGLINES_LENGTH, configSettings.getScriptLongLinesLength());
store.setDefault(CSPreferenceConstants.OPENIGNORE, configSettings.getScriptOpenIgnore());
@@ -552,6 +566,11 @@
pageSettings.put(CSPreferenceConstants.RULES_ENABLED, enabledString);
pageSettings.put(CSPreferenceConstants.CCLASSIGNORE, configSettings.getScriptCClassIgnore());
pageSettings.put(CSPreferenceConstants.FORBIDEENWORDS, configSettings.getScriptForbiddenWords());
+ String icons = configSettings.getScriptIcons();
+ if (icons == null) {
+ icons = "";
+ }
+ pageSettings.put(CSPreferenceConstants.ICONS, icons);
pageSettings.put(CSPreferenceConstants.LFUNCTIONIGNORE, configSettings.getScriptLFunctionIgnore());
pageSettings.put(CSPreferenceConstants.LONGLINES_LENGTH, configSettings.getScriptLongLinesLength());
pageSettings.put(CSPreferenceConstants.OPENIGNORE, configSettings.getScriptOpenIgnore());
@@ -574,10 +593,12 @@
String extraAttr = "";
CSScript script = rule.getScript();
- if (script.equals(CSScript.script_longlines)) {
+ if (script.equals(CSScript.script_customizableicons)) {
hasExtra = true;
- extraAttrTitle = Messages.getString("RulesTabPage.EditLongLinesLabel");
- extraAttr = longLinesLength + "";
+ extraAttrTitle = Messages.getString("RulesTabPage.EditIconsLabel");
+ if (icons != null) {
+ extraAttr = icons;
+ }
}
else
if (script.equals(CSScript.script_forbiddenwords)) {
@@ -596,6 +617,12 @@
}
}
else
+ if (script.equals(CSScript.script_longlines)) {
+ hasExtra = true;
+ extraAttrTitle = Messages.getString("RulesTabPage.EditLongLinesLabel");
+ extraAttr = longLinesLength + "";
+ }
+ else
if (script.equals(CSScript.script_missingcclass)) {
hasExtra = true;
extraAttrTitle = Messages.getString("RulesTabPage.EditMissingCClassLabel");
@@ -637,6 +664,10 @@
}
String newExtraAttr = dialog.getExtra();
if (dialog.hasExtra() && !newExtraAttr.equals(extraAttr)) {
+ if (script.equals(CSScript.script_customizableicons)) {
+ icons = newExtraAttr;
+ }
+ else
if (script.equals(CSScript.script_forbiddenwords)) {
forbiddenWords = newExtraAttr;
}
diff -r 15fe054c0872 -r 05c4630a6d73 core/com.nokia.carbide.cpp.doc.user/html/bugs_fixed.htm
--- a/core/com.nokia.carbide.cpp.doc.user/html/bugs_fixed.htm Mon Apr 06 15:44:39 2009 -0500
+++ b/core/com.nokia.carbide.cpp.doc.user/html/bugs_fixed.htm Mon Apr 06 15:46:51 2009 -0500
@@ -16,7 +16,7 @@
Carbide.c++ bugs fixed
This is a comprehensive list of bugs fixed by release: