Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

ClassHierarchy's error and warning messages.


Defines

#define CH_ERROR_UNKNOWN_BASE_CLASS   "Base class \"%s\" specified in class \"%s\" not found (non-persistent class ?)."
#define CH_ERROR_CYCLE_FOUND   "Cycle found in given class inheritance hierarchy: "
#define CH_ERROR_ATTRIBUTES_NAMES_CONFLICT   "Class \"%s\": attribute \"%s\" is specified twice - first occurence in group \"%s\", second one in group \"%s\"."
#define CH_ERROR_INH_ATTRIBUTES_NAMES_CONFLICT   "Class \"%s\": inherited attribute \"%s\" declared in class \"%s\" is specified twice - first occurence in group \"%s\", second one in group \"%s\"."
#define CH_ERROR_PERSISTENT_INHERITED_AS_NON_PERSISTENT   "Class \"%s\": inherited attribute \"%s\" declared in class \"%s\" as persistent is specified in non-persistent group \"%s\"."
#define CH_ERROR_NON_PERSISTENT_INHERITED_AS_PERSISTENT   "Class \"%s\": inherited attribute \"%s\" declared in class \"%s\" as non-persistent is specified in persistent group \"%s\"."
#define CH_ERROR_INHERITING_FROM_SELF   "Class \"%s\", inherited attribute \"%s\" : cannot inherit attribute from self (invalid \"declared_in\" property)."
#define CH_ERROR_CLASS_DOESNT_CONTAIN_ATTR   "Class \"%s\", inherited attribute \"%s\" : attribute is said to be declared in class \"%s\" but it isn't."
#define CH_ERROR_DECLARED_IN_ISNT_ANCESTOR   "Class \"%s\", inherited attribute \"%s\" : cannot inherit attribute from class \"%s\" because it isn't ancestor of this class."
#define CH_ERROR_INVALID_ADD_ATTRIBUTES_TO   "Class \"%s\": invalid \"add_attributes_to\" property of \"mapping\" attribute - class \"%s\" is not a parent of this class."
#define CH_ERROR_UNKNOWN_BASE_CLASS_ATTR   "Class \"%s\": inherited attribute \"%s\" (group \"%s\") specifies non-existing or non-persistent class \"%s\" in its attribute \"declared_in\"."
#define CH_ERROR_CLASSES_WITH_SAME_DB_TABLE   "Mapping for classes \"%s\" and \"%s\" have the save value \"%s\" specified in property \"db_table\"."
#define CH_ERROR_COLUMN_NAMES_CONFLICT   "Class \"%s\", attributes \"%s\" and \"%s\" should be stored in the same column \"%s\"."
#define CH_ERROR_COLUMN_NAMES_CONFLICT_2   "Class \"%s\", attribute \"%s\" should be stored in the same column \"%s\" as inherited attribute \"%s\" declared in class \"%s\". This is not permited for any mapping type."
#define CH_ERROR_COLUMN_NAMES_CONFLICT_3   "Class \"%s\", attribute \"%s\" inherited from class \"%s\" should be stored in column with the same name \"%s\" as inherited attribute \"%s\" declared in class \"%s\". This is not permitted for any mapping type."
#define CH_ERROR_FILTERED_COLUMN_NAMES_CONFLICT   "Class \"%s\", attribute \"%s\" declared in descendant class \"%s\" should be stored in the same column \"%s\" as attribute \"%s\" declared in descendant class \"%s\". Both descendants come to the same table due to filtered mapping."
#define CH_ERROR_FILTERED_COLUMN_NAMES_CONFLICT_2   "Class \"%s\", attribute \"%s\" should be stored in the same column \"%s\" as attribute \"%s\" declared in descendant class \"%s\". The descendant comes to the same table as this class due to filtered mapping."
#define CH_ERROR_FILTERED_COLUMN_NAMES_CONFLICT_3   "Class \"%s\", attribute \"%s\" inherited from class \"%s\" should be stored in the same column \"%s\" as attribute \"%s\" declared in descendant class \"%s\". The descendant comes to the same table as this class due to filtered mapping."
#define CH_ERROR_USING_CLASS_ID_COLUMN_NAME   "Class \"%s\", attribute \"%s\" should be stored in column \"%s\", but this column name is reserved for distinguishing class types in filtered mapping."
#define CH_ERROR_USING_OID_COLUMN_NAME   "Class \"%s\", attribute \"%s\" should be stored in column \"%s\", but this column name is reserved for object IDs (OIDs)."
#define CH_WRN_FILTERED_BUT_DBTABLE_SPECIFIED   "Class \"%s\": mapping type is filtered, but \"db_table\" property is specified. Ignoring."
#define CH_WRN_NOT_FILTERED_BUT_ADD_ATTRIBUTES_TO_SPECIFIED   "Class \"%s\": mapping type is \"%s\" but \"add_attributes_to\" property is specified. Ignoring."
#define CH_WRN_RENAMING_PERSISTENT_GROUP   "Class \"%s\": non-persistent group \"%s\" declared in this class (or inherited from another class) has the same name as a persistent one inherited from class \"%s\". Attributes from the inherited group has been put to new group \"%s\"."
#define CH_WRN_RENAMING_NON_PERSISTENT_GROUP   "Class \"%s\": persistent group \"%s\" declared in this class (or inherited from another class) has the same name as a non-persistent one inherited from class \"%s\". Attributes from the inherited group has been put to new group \"%s\"."

Define Documentation

#define CH_ERROR_UNKNOWN_BASE_CLASS   "Base class \"%s\" specified in class \"%s\" not found (non-persistent class ?)."
 

#define CH_ERROR_CYCLE_FOUND   "Cycle found in given class inheritance hierarchy: "
 

#define CH_ERROR_ATTRIBUTES_NAMES_CONFLICT   "Class \"%s\": attribute \"%s\" is specified twice - first occurence in group \"%s\", second one in group \"%s\"."
 

#define CH_ERROR_INH_ATTRIBUTES_NAMES_CONFLICT   "Class \"%s\": inherited attribute \"%s\" declared in class \"%s\" is specified twice - first occurence in group \"%s\", second one in group \"%s\"."
 

#define CH_ERROR_PERSISTENT_INHERITED_AS_NON_PERSISTENT   "Class \"%s\": inherited attribute \"%s\" declared in class \"%s\" as persistent is specified in non-persistent group \"%s\"."
 

#define CH_ERROR_NON_PERSISTENT_INHERITED_AS_PERSISTENT   "Class \"%s\": inherited attribute \"%s\" declared in class \"%s\" as non-persistent is specified in persistent group \"%s\"."
 

#define CH_ERROR_INHERITING_FROM_SELF   "Class \"%s\", inherited attribute \"%s\" : cannot inherit attribute from self (invalid \"declared_in\" property)."
 

#define CH_ERROR_CLASS_DOESNT_CONTAIN_ATTR   "Class \"%s\", inherited attribute \"%s\" : attribute is said to be declared in class \"%s\" but it isn't."
 

#define CH_ERROR_DECLARED_IN_ISNT_ANCESTOR   "Class \"%s\", inherited attribute \"%s\" : cannot inherit attribute from class \"%s\" because it isn't ancestor of this class."
 

#define CH_ERROR_INVALID_ADD_ATTRIBUTES_TO   "Class \"%s\": invalid \"add_attributes_to\" property of \"mapping\" attribute - class \"%s\" is not a parent of this class."
 

#define CH_ERROR_UNKNOWN_BASE_CLASS_ATTR   "Class \"%s\": inherited attribute \"%s\" (group \"%s\") specifies non-existing or non-persistent class \"%s\" in its attribute \"declared_in\"."
 

#define CH_ERROR_CLASSES_WITH_SAME_DB_TABLE   "Mapping for classes \"%s\" and \"%s\" have the save value \"%s\" specified in property \"db_table\"."
 

#define CH_ERROR_COLUMN_NAMES_CONFLICT   "Class \"%s\", attributes \"%s\" and \"%s\" should be stored in the same column \"%s\"."
 

#define CH_ERROR_COLUMN_NAMES_CONFLICT_2   "Class \"%s\", attribute \"%s\" should be stored in the same column \"%s\" as inherited attribute \"%s\" declared in class \"%s\". This is not permited for any mapping type."
 

#define CH_ERROR_COLUMN_NAMES_CONFLICT_3   "Class \"%s\", attribute \"%s\" inherited from class \"%s\" should be stored in column with the same name \"%s\" as inherited attribute \"%s\" declared in class \"%s\". This is not permitted for any mapping type."
 

#define CH_ERROR_FILTERED_COLUMN_NAMES_CONFLICT   "Class \"%s\", attribute \"%s\" declared in descendant class \"%s\" should be stored in the same column \"%s\" as attribute \"%s\" declared in descendant class \"%s\". Both descendants come to the same table due to filtered mapping."
 

#define CH_ERROR_FILTERED_COLUMN_NAMES_CONFLICT_2   "Class \"%s\", attribute \"%s\" should be stored in the same column \"%s\" as attribute \"%s\" declared in descendant class \"%s\". The descendant comes to the same table as this class due to filtered mapping."
 

#define CH_ERROR_FILTERED_COLUMN_NAMES_CONFLICT_3   "Class \"%s\", attribute \"%s\" inherited from class \"%s\" should be stored in the same column \"%s\" as attribute \"%s\" declared in descendant class \"%s\". The descendant comes to the same table as this class due to filtered mapping."
 

#define CH_ERROR_USING_CLASS_ID_COLUMN_NAME   "Class \"%s\", attribute \"%s\" should be stored in column \"%s\", but this column name is reserved for distinguishing class types in filtered mapping."
 

#define CH_ERROR_USING_OID_COLUMN_NAME   "Class \"%s\", attribute \"%s\" should be stored in column \"%s\", but this column name is reserved for object IDs (OIDs)."
 

#define CH_WRN_FILTERED_BUT_DBTABLE_SPECIFIED   "Class \"%s\": mapping type is filtered, but \"db_table\" property is specified. Ignoring."
 

#define CH_WRN_NOT_FILTERED_BUT_ADD_ATTRIBUTES_TO_SPECIFIED   "Class \"%s\": mapping type is \"%s\" but \"add_attributes_to\" property is specified. Ignoring."
 

#define CH_WRN_RENAMING_PERSISTENT_GROUP   "Class \"%s\": non-persistent group \"%s\" declared in this class (or inherited from another class) has the same name as a persistent one inherited from class \"%s\". Attributes from the inherited group has been put to new group \"%s\"."
 

#define CH_WRN_RENAMING_NON_PERSISTENT_GROUP   "Class \"%s\": persistent group \"%s\" declared in this class (or inherited from another class) has the same name as a non-persistent one inherited from class \"%s\". Attributes from the inherited group has been put to new group \"%s\"."
 


Generated on Wed Aug 11 22:36:52 2004 for IOPC by Doxygen 1.3.6