This file is indexed.

/usr/include/sbml/packages/groups/validator/GroupsSBMLErrorTable.h is in libsbml5-dev 5.16.0+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/**
 * @file GroupsSBMLErrorTable.h
 * @brief Definition of the GroupsSBMLErrorTable class.
 * @author SBMLTeam
 *
 * <!--------------------------------------------------------------------------
 * This file is part of libSBML. Please visit http://sbml.org for more
 * information about SBML, and the latest version of libSBML.
 *
 * Copyright (C) 2013-2017 jointly by the following organizations:
 * 1. California Institute of Technology, Pasadena, CA, USA
 * 2. EMBL European Bioinformatics Institute (EMBL-EBI), Hinxton, UK
 * 3. University of Heidelberg, Heidelberg, Germany
 *
 * Copyright (C) 2009-2013 jointly by the following organizations:
 * 1. California Institute of Technology, Pasadena, CA, USA
 * 2. EMBL European Bioinformatics Institute (EMBL-EBI), Hinxton, UK
 *
 * Copyright (C) 2006-2008 by the California Institute of Technology,
 * Pasadena, CA, USA
 *
 * Copyright (C) 2002-2005 jointly by the following organizations:
 * 1. California Institute of Technology, Pasadena, CA, USA
 * 2. Japan Science and Technology Agency, Japan
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by the
 * Free Software Foundation. A copy of the license agreement is provided in the
 * file named "LICENSE.txt" included with this software distribution and also
 * available online as http://sbml.org/software/libsbml/license.html
 * ------------------------------------------------------------------------ -->
 */


#ifndef GroupsSBMLErrorTable_H__
#define GroupsSBMLErrorTable_H__


#include <sbml/packages/groups/validator/GroupsSBMLError.h>


LIBSBML_CPP_NAMESPACE_BEGIN



/** @cond doxygenLibsbmlInternal */

static const packageErrorTableEntry groupsErrorTable[] =
{
  // 4010100
  { GroupsUnknown,
    "Unknown error from Groups",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "Unknown error from Groups",
    { ""
    }
  },

  // 4010101
  { GroupsNSUndeclared,
    "The Groups namespace is not correctly declared.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "To conform to the Groups Package specification for SBML Level 3 Version 1, "
    "an SBML document must declare "
    "'http://www.sbml.org/sbml/level3/version1/groups/version1' as the "
    "XMLNamespace to use for elements of this package.",
    { "L3V1 Groups V1 Section 3.1"
    }
  },

  // 4010102
  { GroupsElementNotInNs,
    "Element not in Groups namespace",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "Wherever they appear in an SBML document, elements and attributes from the "
    "Groups Package must use the "
    "'http://www.sbml.org/sbml/level3/version1/groups/version1' namespace, "
    "declaring so either explicitly or implicitly.",
    { "L3V1 Groups V1 Section 3.1"
    }
  },

  // 4010301
  { GroupsDuplicateComponentId,
    "Duplicate 'id' attribute value",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "(Extends validation rule #10301 in the SBML Level 3 Core specification. TO "
    "DO list scope of ids)",
    { "L3V1 Groups V1 Section 3.3"
    }
  },

  // 4010302
  { GroupsIdSyntaxRule,
    "Invalid SId syntax",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of a 'groups:id' must conform to the syntax of the <sbml> data "
    "type 'SId'",
    { "L3V1 Groups V1 Section 3.3.1"
    }
  },

  // 4020101
  { GroupsAttributeRequiredMissing,
    "Required groups:required attribute on <sbml>",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "In all SBML documents using the Groups Package, the <sbml> object must "
    "have the 'groups:required' attribute.",
    { "L3V1 Core Section 4.1.2"
    }
  },

  // 4020102
  { GroupsAttributeRequiredMustBeBoolean,
    "The groups:required attribute must be Boolean",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of attribute 'groups:required' on the <sbml> object must be of "
    "data type Boolean.",
    { "L3V1 Core Section 4.1.2"
    }
  },

  // 4020103
  { GroupsAttributeRequiredMustHaveValue,
    "The groups:required attribute must be 'false'",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of attribute 'groups:required' on the <sbml> object must be set "
    "to 'false'.",
    { "L3V1 Groups V1 Section 3.1"
    }
  },

  // 4020201
  { GroupsModelAllowedElements,
    "Elements allowed on <model>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <model> object may contain one and only one instance of the "
    "<listOfGroups> element. No other elements from the SBML Level 3 Groups "
    "namespaces are permitted on a <model> object. ",
    { "L3V1 Groups V1 Section 3.6"
    }
  },

  // 4020202
  { GroupsModelEmptyLOElements,
    "No Empty ListOf elements allowed on <Model>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The <listOfGroups> subobject on a <model> object is optional, but if "
    "present, this container object must not be empty.",
    { "L3V1 Groups V1 Section 3.6"
    }
  },

  // 4020203
  { GroupsModelLOGroupsAllowedCoreElements,
    "Core elements allowed on <model>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotations subobjects permitted on all "
    "SBML objects, a <listOfGroups> container object may only contain <group> "
    "objects.",
    { "L3V1 Groups V1 Section 3.6"
    }
  },

  // 4020204
  { GroupsModelLOGroupsAllowedCoreAttributes,
    "Core attributes allowed on <model>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <listOfGroups> object may have the optional SBML Level 3 Core attributes "
    "'metaid' and 'sboTerm'. No other attributes from the SBML Level 3 Core "
    "namespaces are permitted on a <listOfGroups> object.",
    { "L3V1 Groups V1 Section 3.6"
    }
  },

  // 4020301
  { GroupsGroupAllowedCoreAttributes,
    "Core attributes allowed on <group>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <group> object may have the optional SBML Level 3 Core attributes "
    "'metaid' and 'sboTerm'. No other attributes from the SBML Level 3 Core "
    "namespaces are permitted on a <group>.",
    { "L3V1 Core Section 3.2"
    }
  },

  // 4020302
  { GroupsGroupAllowedCoreElements,
    "Core elements allowed on <group>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <group> object may have the optional SBML Level 3 Core subobjects for "
    "notes and annotations. No other elements from the SBML Level 3 Core "
    "namespaces are permitted on a <group>.",
    { "L3V1 Core Section 3.2"
    }
  },

  // 4020303
  { GroupsGroupAllowedAttributes,
    "Attributes allowed on <group>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <group> object must have the required attribute 'groups:kind', and may "
    "have the optional attributes 'groups:id' and 'groups:name'. No other "
    "attributes from the SBML Level 3 Groups namespaces are permitted on a "
    "<group> object. ",
    { "L3V1 Groups V1 Section 3.3"
    }
  },

  // 4020304
  { GroupsGroupAllowedElements,
    "Elements allowed on <group>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <group> object may contain one and only one instance of the "
    "<listOfMembers> element. No other elements from the SBML Level 3 Groups "
    "namespaces are permitted on a <group> object. ",
    { "L3V1 Groups V1 Section 3.3"
    }
  },

  // 4020305
  { GroupsGroupKindMustBeGroupKindEnum,
    "The 'kind' attribute must be GroupKindEnum.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of the attribute 'groups:kind' of a <group> object must conform "
    "to the syntax of SBML data type 'groupKind' and may only take on the "
    "allowed values of 'groupKind' defined in SBML; that is, the value must be "
    "one of the following: 'classification', 'partonomy' or 'collection'.",
    { "L3V1 Groups V1 Section 3.3"
    }
  },

  // 4020306
  { GroupsGroupNameMustBeString,
    "The 'name' attribute must be String.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The attribute 'groups:name' on a <group> must have a value of data type "
    "'string'.",
    { "L3V1 Groups V1 Section 3.3"
    }
  },

  // 4020307
  { GroupsGroupEmptyLOElements,
    "No Empty ListOf elements allowed on <group>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The <listOfMembers> subobject on a <group> object is optional, but if "
    "present, this container object must not be empty.",
    { "L3V1 Groups V1 Section 3.3"
    }
  },

  // 4020308
  { GroupsGroupLOMembersAllowedCoreElements,
    "Core elements allowed on <listOfMembers>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotations subobjects permitted on all "
    "SBML objects, a <listOfMembers> container object may only contain <member> "
    "objects.",
    { "L3V1 Core Section 3.2"
    }
  },

  // 4020309
  { GroupsGroupLOMembersAllowedCoreAttributes,
    "Core attributes allowed on <listOfMembers>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <listOfMembers> object may have the optional SBML Level 3 Core "
    "attributes 'metaid' and 'sboTerm'. No other attributes from the SBML Level "
    "3 Core namespaces are permitted on a <listOfMembers> object.",
    { "L3V1 Core Section 3.2"
    }
  },

  // 4020310
  { GroupsGroupLOMembersAllowedAttributes,
    "Attributes allowed on <listOfMembers>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <listOfMembers> object may have the optional attributes 'groups:id' and "
    "'groups:name'. No other attributes from the SBML Level 3 Groups namespaces "
    "are permitted on a <listOfMembers> object. ",
    { "L3V1 Groups V1 Section 3.4"
    }
  },

  // 4020311
  { GroupsLOMembersNameMustBeString,
    "The 'name' attribute must be String.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The attribute 'groups:name' on a <listOfMembers> must have a value of data "
    "type 'string'.",
    { "L3V1 Groups V1 Section 3.4"
    }
  },

  // 4020312
  { GroupsLOMembersConsistentReferences,
    "Consistent references by multiple <member> objects.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_WARNING,
    "If <listOfMembers> objects from different <group> objects contain "
    "<member> elements that reference the same SBase object, the 'sboTerm' "
    "attribute and any child <notes> or <annotation> elements set for those "
    "<listOfMembers> should be consistent, as they should all apply to the "
    "same referenced object.",
    { "L3V1 Groups V1 Section 3.5.4"
    }
  },

  // 4020313
  { GroupsNotCircularReferences,
    "Circular references by multiple <member> objects.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "Member references may not be circular: no <member>'s 'idRef' or "
    "'metaIdRef' may reference itself, its parent <listOfMembers>, nor its "
    "parent <group>. If a <member> references a <group> or a <listOfMembers>, "
    "the same restrictions apply to that subgroup's children: they may not "
    "reference the <member>, its parent <listOfMembers>, nor its parent "
    "<group>, and if any of those children reference a <group>, the same "
    "restrictions apply to them, etc.",
    { "L3V1 Groups V1 Section 3.5.4"
    }
  },

  // 4020401
  { GroupsMemberAllowedCoreAttributes,
    "Core attributes allowed on <member>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <member> object may have the optional SBML Level 3 Core attributes "
    "'metaid' and 'sboTerm'. No other attributes from the SBML Level 3 Core "
    "namespaces are permitted on a <member>.",
    { "L3V1 Core Section 3.2"
    }
  },

  // 4020402
  { GroupsMemberAllowedCoreElements,
    "Core elements allowed on <member>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <member> object may have the optional SBML Level 3 Core subobjects for "
    "notes and annotations. No other elements from the SBML Level 3 Core "
    "namespaces are permitted on a <member>.",
    { "L3V1 Core Section 3.2"
    }
  },

  // 4020403
  { GroupsMemberAllowedAttributes,
    "Attributes allowed on <member>.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "A <member> object may have the optional attributes 'groups:id' and "
    "'groups:name' and must have a value for one (and exactly one) of "
    "the attributes 'groups:idRef' and 'groups:metaIdRef'. No other attributes "
    "from the SBML Level 3 Groups namespaces are permitted on a <member> "
    "object. ",
    { "L3V1 Groups V1 Section 3.5"
    }
  },

  // 4020404
  { GroupsMemberNameMustBeString,
    "The 'name' attribute must be String.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The attribute 'groups:name' on a <member> must have a value of data type "
    "'string'.",
    { "L3V1 Groups V1 Section 3.5"
    }
  },

  // 4020405
  { GroupsMemberIdRefMustBeSBase,
    "The attribute 'idRef' must point to SBase object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of the attribute 'groups:idRef' of a <member> object must be the "
    "identifier of an existing object derived from the 'SBase' class and "
    "defined in the enclosing <model> object.",
    { "L3V1 Groups V1 Section"
    }
  },

  // 4020406
  { GroupsMemberMetaIdRefMustBeSBase,
    "The attribute 'metaIdRef' must point to SBase object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of the attribute 'groups:metaIdRef' of a <member> object must be "
    "the 'metaid' of an existing 'SBase' object defined in the enclosing "
    "<model> object.",
    { "L3V1 Groups V1 Section 3.5"
    }
  },

  // 4020407
  { GroupsMemberIdRefMustBeSId,
    "Attribute 'idRef' must be type 'SId'.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of the attribute 'groups:idRef' of a <member> object must "
    "conform to the syntax of the SBML data type 'SId'.",
    { "L3V1 Groups V1 Section 3.5"
    }
  },

  // 4020408
  { GroupsMemberMetaIdRefMustBeID,
    "Attribute 'metaIdRef' must be type 'ID'.",
    LIBSBML_CAT_GENERAL_CONSISTENCY,
    LIBSBML_SEV_ERROR,
    "The value of the attribute 'groups:metaIdRef' of a <member> object must "
    "conform to the syntax of the SBML data type 'ID'.",
    { "L3V1 Groups V1 Section 3.5"
    }
  },

};

/** @endcond */



LIBSBML_CPP_NAMESPACE_END




#endif /* !GroupsSBMLErrorTable_H__ */