About the Product and Documentation > Naming Conventions > API Naming Conventions
 
API Naming Conventions
The following naming conventions apply throughout this manual:
*The names of basic types, classes, exceptions, and global functions defined in the Rogue Wave Server library begin with Ils. They are written as concatenated words whose initial is capitalized. For example:
IlsOwnsList
*Macro names, variable names, as well as the names of enumerated-type values, are all capitalized and underscore characters are used to concatenate their items.
ILS_OBJECT_BEGIN
*Accessors begin with the keyword get followed by the name of the data member.
IlsMvComponentId getId();
*Accessors for Boolean members begin with is followed by the name of the data member.
IlsBoolean isModified();
*Modifiers begin with the keyword set followed by the name of the data member.
void setAutoCommit(IlsBoolean);

Version 5.8
Copyright © 2014, Rogue Wave Software, Inc. All Rights Reserved.