|
A class specifies the type of a variable. There are three types of classes in WebObjects:
Object, Number, String, and Array are all part of the Foundation Framework. For
example, if you click the array checkbox when creating a variable, you are creating
an instance of NSMutableArray (mutable meaning you can add or delete values). If
you're unfamiliar with the Foundation Framework, see the Foundation Framework Reference.
When you create a dictionary, you're also creating an instance of a Foundation
class, namely NSMutableDictionary. The attributes you define for the class are keys
to the dictionary.
Enterprise object classes are created when you add a display group to your application. See "Creating a WODisplayGroup."
|