WebObjects 5.2.3

Uses of Interface
com.webobjects.eocontrol.EOEnterpriseObject

Packages that use EOEnterpriseObject
com.webobjects.directtoweb Provides the framework for rapid development of HTML-based WebObjects applications. 
com.webobjects.eoaccess Provides the data access mechanisms for the Enterprise Objects technology. 
com.webobjects.eoapplication Provides application logic utility classes to the client side of Java Client applications. 
com.webobjects.eocontrol Provides infrastructure for creating and manging enterprise objects. 
com.webobjects.eodistribution.client Provides the communication mechanism between the client and server components of Java Client applications. 
com.webobjects.webservices.generation   
com.webobjects.webservices.support.xml Provides serializers and deserializers for the WebObjects Web services feature. 
 

Uses of EOEnterpriseObject in com.webobjects.directtoweb
 

Fields in com.webobjects.directtoweb declared as EOEnterpriseObject
 EOEnterpriseObject D2WMasterDetailPage.selectedObject
           
 EOEnterpriseObject D2WKeyPathContainer.listEo
           
 EOEnterpriseObject D2WEditToManyFault.browserItem
          The item for a WOBrowser.
 EOEnterpriseObject D2WEditRelationshipPage.browserItem
          The iteration variable bound to the item attribute of the WOBrowser on the edit-relationship page.
 EOEnterpriseObject D2WDisplayToManyTable.item
          This constant is intentionally undocumented.
 EOEnterpriseObject D2WDisplayToManyBrowser.browserItem
          This constant is intentionally undocumented.
 EOEnterpriseObject D2WDisplayToMany2.item
          This constant is intentionally undocumented.
 EOEnterpriseObject D2WDefaultCustomComponent.object
          The Enterprise Object (for D2WCustomComponent).
 

Methods in com.webobjects.directtoweb that return EOEnterpriseObject
 EOEnterpriseObject SelectPageInterface.selectedObject()
          Returns the object selected by the user.
 EOEnterpriseObject D2WStatelessComponent.object()
          Provides access to the local instance of EOEnterpriseObject.
 EOEnterpriseObject D2WListPage.selectedObject()
          Gets the selected object of the display group.
 EOEnterpriseObject D2WInspectPage.object()
          Returns the Object displayed by the inspect or edit page.
 EOEnterpriseObject D2WEditRelationshipPage.newObjectInRelationship()
          Returns the EOEnterpriseObject, defined in the EOControl Framework, that is created when the user clicks New.
 EOEnterpriseObject D2WEditRelationshipPage.objectToAddToRelationship()
          Returns the EOEnterpriseObject, defined in the EOControl Framework, that is added to the relationship edited by the receiver.
 EOEnterpriseObject D2WComponent.object()
          Returns the EOEnterpriseObject, defined in the EOControl Framework, displayed by this component.
 

Methods in com.webobjects.directtoweb with parameters of type EOEnterpriseObject
 void SelectPageInterface.setSelectedObject(EOEnterpriseObject selectedObject)
          Sets the receiver's selected object.
 void InspectPageInterface.setObject(EOEnterpriseObject eo)
          Sets the object displayed by the inspect page.
 void EditRelationshipPageInterface.setMasterObjectAndRelationshipKey(EOEnterpriseObject eo, String relationshipKey)
          Sets the object and relationship to edit.
 void D2WListPage.setSelectedObject(EOEnterpriseObject selectedObject)
          Selects the object in the display group if the specified object is not null; clears the selection of the display group otherwise.
 void D2WKeyPathContainer.setObject(EOEnterpriseObject eo)
          This method is intentionally undocumented.
 void D2WInspectPage.setObject(EOEnterpriseObject eo)
          Sets the object displayed by the inspect or edit page.
 void D2WEditRelationshipPage.setMasterObjectAndRelationshipKey(EOEnterpriseObject eo, String relationshipKey)
          This method is intentionally undocumented.
 void D2WEditRelationshipPage.setObjectToAddToRelationship(EOEnterpriseObject newValue)
          Sets the object that is added to the relationship.
 void D2WComponent.setObject(EOEnterpriseObject eo)
          Sets the EOEnterpriseObject, defined in the EOControl Framework, that the receiver manipulates to the specified object.
 

Uses of EOEnterpriseObject in com.webobjects.eoaccess
 

Methods in com.webobjects.eoaccess that return EOEnterpriseObject
static EOEnterpriseObject EOUtilities.createAndInsertInstance(EOEditingContext ec, String entityName)
          Creates a new Enterprise Object for the specified entity, inserts it into ec, and returns the new object.
static EOEnterpriseObject EOUtilities.faultWithPrimaryKey(EOEditingContext ec, String entityName, NSDictionary pkDict)
          Returns the Enterprise Object identified by the specified primary key dictionary.
static EOEnterpriseObject EOUtilities.faultWithPrimaryKeyValue(EOEditingContext ec, String entityName, Object value)
          Fetches the Enterprise Object identified by the specified primary key value.
static EOEnterpriseObject EOUtilities.localInstanceOfObject(EOEditingContext ec, EOEnterpriseObject object)
          Translates the specified Enterprise Object from another editing context to the specified one.
static EOEnterpriseObject EOUtilities.objectFromRawRow(EOEditingContext ec, String name, NSDictionary row)
          Fetches the object corresponding to the specified raw row (using faultForRawRow).
static EOEnterpriseObject EOUtilities.objectMatchingKeyAndValue(EOEditingContext ec, String name, String key, Object value)
          Creates an EOKeyValueQualifier with the specified key and value and returns the matching Enterprise Object.
static EOEnterpriseObject EOUtilities.objectMatchingValues(EOEditingContext ec, String name, NSDictionary values)
          Creates EOKeyValueQualifiers for each key-value pair in the specified dictionary, ANDs these qualifiers together into an EOAndQualifier, and returns the matching Enterprise Object.
static EOEnterpriseObject EOUtilities.objectWithFetchSpecificationAndBindings(EOEditingContext ec, String entityName, String fetchSpecName, NSDictionary bindings)
          Fetches the Enterprise Object retrieved with the specified fetch specification and bindings.
static EOEnterpriseObject EOUtilities.objectWithPrimaryKey(EOEditingContext ec, String entityName, NSDictionary pkDict)
          Fetches the Enterprise Object identified by the specified primary key dictionary.
static EOEnterpriseObject EOUtilities.objectWithPrimaryKeyValue(EOEditingContext ec, String entityName, Object value)
          Fetches the Enterprise Object identified by the specified primary key value.
static EOEnterpriseObject EOUtilities.objectWithQualifierFormat(EOEditingContext ec, String name, String format, NSArray args)
          Creates a qualifier with the provided format string and arguments, and returns the matching Enterprise Object.
 EOEnterpriseObject EOEntityClassDescription.createInstanceWithEditingContext(EOEditingContext ec, EOGlobalID gid)
          Creates and returns an Enterprise Object in the editing context ec by using the EOGlobalID gid to query the receiver's EOEntity for the appropriate class of object to instantiate.
 EOEnterpriseObject EODatabaseContext.faultForGlobalID(EOGlobalID globalID, EOEditingContext context)
          Creates a to-one fault for the object identified by globalID and registers it in the editing context context.
 EOEnterpriseObject EODatabaseContext.faultForRawRow(NSDictionary row, String entityName, EOEditingContext editingContext)
          Returns a fault for a raw row.
 

Methods in com.webobjects.eoaccess with parameters of type EOEnterpriseObject
static NSDictionary EOUtilities.destinationKeyForSourceObject(EOEditingContext ec, EOEnterpriseObject object, String name)
          Returns the foreign key for the rows at the destination of the specified relationship.
static EOEntity EOUtilities.entityForObject(EOEditingContext ec, EOEnterpriseObject obj)
          Returns the entity associated with the provided Enterprise Object.
static EOEnterpriseObject EOUtilities.localInstanceOfObject(EOEditingContext ec, EOEnterpriseObject object)
          Translates the specified Enterprise Object from another editing context to the specified one.
static NSDictionary EOUtilities.primaryKeyForObject(EOEditingContext ec, EOEnterpriseObject object)
          Returns the primary key dictionary for the specified Enterprise Object.
static EOQualifier EOUtilities.qualifierForEnterpriseObject(EOEditingContext ec, EOEnterpriseObject object)
          Returns an EOQualifier for the specified Enterprise Object.
 EOEntity EOModelGroup.entityForObject(EOEnterpriseObject object)
          Returns the EOEntity associated with object from any of the models in the receiver that handle object, or null if none of the models in the receiver handle object.
 EOEntity EOModel.entityForObject(EOEnterpriseObject object)
          Returns the entity associated with object, whether object is an instance of an Enterprise Object class, an instance of EOGenericRecord, or a fault.
 void EOEntityClassDescription.awakeObjectFromInsertion(EOEnterpriseObject object, EOEditingContext ec)
          Propagates inserts for the newly-inserted Enterprise Object object in the editing context ec.
 void EOEntityClassDescription.validateObjectForDelete(EOEnterpriseObject object)
          Determines whether it is permissible to delete object.
 void EODatabaseContext.initializeObject(EOEnterpriseObject object, EOGlobalID gid, EOEditingContext context)
          Initializes the enteprise object object in the editing context context based on the snapshot for gid.
 boolean EODatabaseContext.ownsObject(EOEnterpriseObject object)
          Returns true if the receiver is responsible for fetching and saving object, false otherwise.
 void EODatabaseContext.recordUpdateForObject(EOEnterpriseObject object, NSDictionary changes)
          Applies changes supplied from another EOCooperatingObjectStore (through the EOObjectStoreCoordinator) to the database operation for object in the receiver.
 void EODatabaseContext.refaultObject(EOEnterpriseObject object, EOGlobalID globalID, EOEditingContext context)
          Refault the Enterprise Object identified by globalID in the editing context context.
 NSDictionary EODatabaseContext.valuesForKeys(NSArray keys, EOEnterpriseObject object)
          Returns values for the specified keys from the snapshot of object.
 EOEntity EODatabase.entityForObject(EOEnterpriseObject object)
          Searches the receiver's list of registered EOModels and returns the first EOEntity found whose name matches the entity name of object.
 

Uses of EOEnterpriseObject in com.webobjects.eoapplication
 

Methods in com.webobjects.eoapplication that return EOEnterpriseObject
 EOEnterpriseObject EOEntityController.selectedObject()
          Returns the first enterprise object selected in the receiver's display group.
 

Uses of EOEnterpriseObject in com.webobjects.eocontrol
 

Classes in com.webobjects.eocontrol that implement EOEnterpriseObject
 class EOCustomObject
          The EOCustomObject class provides a default implementation of the EOEnterpriseObject interface.
 class EOGenericRecord
          EOGenericRecord is a generic enterprise object class that can be used in place of custom classes when custom behavior is not needed.
 

Methods in com.webobjects.eocontrol that return EOEnterpriseObject
 EOEnterpriseObject EOSharedEditingContext.faultForGlobalID(EOGlobalID gid, EOEditingContext editingContext)
           
 EOEnterpriseObject EOSharedEditingContext.objectForGlobalID(EOGlobalID gid)
           
 EOEnterpriseObject EOObjectStoreCoordinator.faultForGlobalID(EOGlobalID gid, EOEditingContext editingContext)
          Implementation for faultForGlobalID inherited from EOObjectStore.
 EOEnterpriseObject EOObjectStoreCoordinator.faultForRawRow(NSDictionary row, String entityName, EOEditingContext editingContext)
          Implementation for faultForRawRow inherited from EOObjectStore.
abstract  EOEnterpriseObject EOObjectStore.faultForGlobalID(EOGlobalID globalID, EOEditingContext context)
          If the receiver is context and the object associated with globalID is already registered in context, this method returns that object.
abstract  EOEnterpriseObject EOObjectStore.faultForRawRow(NSDictionary row, String entityName, EOEditingContext context)
          Returns a fault for the enterprise object corresponding to row, which is a dictionary of values containing at least the primary key of the corresponding enterprise object.
 EOEnterpriseObject EOEditingContext.faultForGlobalID(EOGlobalID gid, EOEditingContext context)
          Overrides the implementation inherited from EOObjectStore.
 EOEnterpriseObject EOEditingContext.faultForRawRow(NSDictionary row, String entityName, EOEditingContext context)
          Returns a fault for the raw row row by invoking faultForRawRow on this EOEditingContext's parent EOObjectStore with context as the editing context.
 EOEnterpriseObject EOEditingContext.faultForRawRow(NSDictionary row, String entityName)
          Returns a fault for the raw row row.
 EOEnterpriseObject EOEditingContext.objectForGlobalID(EOGlobalID gid)
          Returns the EOEnterpriseObject associated with gid in this EOEditingContext or its shared context, or null if no such object exists.
 EOEnterpriseObject EOClassDescription.createInstanceWithEditingContext(EOEditingContext editingContext, EOGlobalID globalID)
          Overridden by subclasses to create an object of the appropriate class in editingContext with globalID.
 

Methods in com.webobjects.eocontrol with parameters of type EOEnterpriseObject
 void EOSharedEditingContext.deleteObject(EOEnterpriseObject object)
          Raises an exception.
 void EOSharedEditingContext.forgetObject(EOEnterpriseObject object)
           
 EOGlobalID EOSharedEditingContext.globalIDForObject(EOEnterpriseObject object)
           
 void EOSharedEditingContext.initializeObject(EOEnterpriseObject object, EOGlobalID gid, EOEditingContext editingContext)
           
 void EOSharedEditingContext.insertObject(EOEnterpriseObject object)
          Throws an exception.
 void EOSharedEditingContext.insertObjectWithGlobalID(EOEnterpriseObject object, EOGlobalID gid)
          Throws an exception.
 void EOSharedEditingContext.refaultObject(EOEnterpriseObject object, EOGlobalID gid, EOEditingContext editingContext)
           
 void EOObjectStoreCoordinator.forwardUpdateForObject(EOEnterpriseObject object, NSDictionary changes)
          Tells the receiver to forward a message from an EOCooperatingObjectStore to another store, informing it that changes need to be made to object.
 void EOObjectStoreCoordinator.initializeObject(EOEnterpriseObject object, EOGlobalID gid, EOEditingContext editingContext)
          Implementation for initializeObject inherited from EOObjectStore to set object's properties, as obtained for gid.
 EOCooperatingObjectStore EOObjectStoreCoordinator.objectStoreForObject(EOEnterpriseObject object)
          Returns the EOCooperatingObjectStore that owns object.
 void EOObjectStoreCoordinator.refaultObject(EOEnterpriseObject object, EOGlobalID gid, EOEditingContext editingContext)
          Turns object into a fault (an empty enterprise object), identified by globalID in editingContext.
 NSDictionary EOObjectStoreCoordinator.valuesForKeys(NSArray keys, EOEnterpriseObject object)
          Communicates with the appropriate EOCooperatingObjectStore to get the values identified by keys for object, so that it can then forward them on to another EOCooperatingObjectStore.
abstract  void EOObjectStore.initializeObject(EOEnterpriseObject object, EOGlobalID globalID, EOEditingContext context)
          Implemented by subclasses to set object's properties, as obtained for globalID.
abstract  void EOObjectStore.refaultObject(EOEnterpriseObject object, EOGlobalID globalID, EOEditingContext context)
          Turns object into a fault (an empty enterprise object), identified by globalID in context.
 Object EOFaultHandler.createFaultForDeferredFault(Object fault, EOEnterpriseObject sourceEO)
          Invoked by willReadRelationship to ensure that fault isn't a deferred fault, or to replace it with a normal fault if it is.
 NSDictionary EOEditingContext.committedSnapshotForObject(EOEnterpriseObject object)
          Returns a dictionary containing a snapshot of object that reflects its committed values (that is, its values as they were last committed to the database).
 NSDictionary EOEditingContext.currentEventSnapshotForObject(EOEnterpriseObject object)
          Returns a dictionary containing a snapshot of object that reflects its state as it was at the beginning of the current event loop.
 void EOEditingContext.deleteObject(EOEnterpriseObject object)
          Specifies that object should be removed from this EOEditingContext's parent EOObjectStore when changes are committed.
static void EOEditingContext.encodeObjectWithCoder(EOEnterpriseObject object, NSCoder coder)
          Invoked by an EOEnterpriseObject object to ask the EOEditingContext to encode object using encoder.
 void EOEditingContext.forgetObject(EOEnterpriseObject object)
          Removes object from the uniquing tables and causes this EOEditingContext to remove itself from the object's list of observers.
 EOGlobalID EOEditingContext.globalIDForObject(EOEnterpriseObject object)
          Returns the EOGlobalID associated with object in this EOEditingContext or its shared context.
static Object EOEditingContext.initObjectWithCoder(EOEnterpriseObject object, NSCoder coder)
          Invoked by an EOEnterpriseObject object to ask the EOEditingContext to initialize object from data in decoder.
 void EOEditingContext.initializeObject(EOEnterpriseObject object, EOGlobalID gid, EOEditingContext context)
          Overrides the implementation inherited from EOObjectStore to build the properties for the object identified by gid.
 void EOEditingContext.insertObject(EOEnterpriseObject object)
          Registers (by invoking insertObjectWithGlobalID) object to be inserted in this EOEditingContext's parent EOObjectStore the next time changes are saved.
 void EOEditingContext.insertObjectWithGlobalID(EOEnterpriseObject object, EOGlobalID gid)
          Registers a new object identified by globalID that should be inserted in the parent EOObjectStore when changes are saved.
 void EOEditingContext.lockObject(EOEnterpriseObject object)
          Attempts to lock object in the external store.
 void EOEditingContext.recordObject(EOEnterpriseObject object, EOGlobalID gid)
          Makes this EOEditingContext aware of an object identified by gid existing in its parent object store.
 void EOEditingContext.refaultObject(EOEnterpriseObject object)
           
 void EOEditingContext.refaultObject(EOEnterpriseObject object, EOGlobalID gid, EOEditingContext ctx)
          Overrides the implementation inherited from EOObjectStore to refault the enterprise object object identified by gid in ctx.
 void EOEditingContext.refreshObject(EOEnterpriseObject eo)
          This method invokes refaultObject on an EOEnterpriseObject which is not inserted, updated, or deleted.
 boolean EOEditingContext.Delegate.editingContextShouldInvalidateObject(EOEditingContext context, EOEnterpriseObject object, EOGlobalID globalID)
          Sent when an object identified by globalID has been explicitly invalidated.
 boolean EOEditingContext.Delegate.editingContextShouldMergeChangesForObject(EOEditingContext context, EOEnterpriseObject object)
          When an ObjectsChangedInStoreNotification is received, anEditingContext invokes this method in its delegate once for each of the objects that has both uncommitted changes and an update from the EOObjectStore.
abstract  boolean EOCooperatingObjectStore.ownsObject(EOEnterpriseObject object)
          Overridden by subclasses to return true if the receiver is responsible for fetching and saving object.
abstract  void EOCooperatingObjectStore.recordUpdateForObject(EOEnterpriseObject object, NSDictionary changes)
          Overridden by subclasses to communicate from one EOCooperatingObjectStore to another (through the EOObjectStoreCoordinator) that changes need to be made to the an EOEnterpriseObject.
abstract  NSDictionary EOCooperatingObjectStore.valuesForKeys(NSArray keys, EOEnterpriseObject object)
          Overridden by subclasses to return values (as identified by keys) held by the receiver that augment properties in object.
 void EOClassDescription.awakeObjectFromFetch(EOEnterpriseObject object, EOEditingContext editingContext)
          Overridden by subclasses to perform standard post fetch initialization for object in editingContext.
 void EOClassDescription.awakeObjectFromInsertion(EOEnterpriseObject object, EOEditingContext editingContext)
          Assigns empty arrays to to many relationship properties of newly inserted enterprise objects.
 void EOClassDescription.propagateDeleteForObject(EOEnterpriseObject obj, EOEditingContext ec)
          Propagates a delete operation for an object in an EditingContext, according to the delete rules specified in the EOModel.
 String EOClassDescription.userPresentableDescriptionForObject(EOEnterpriseObject eo)
          Returns a short (no longer than 60 characters) description of an EOEnterpriseObject based on its data.
 void EOClassDescription.validateObjectForDelete(EOEnterpriseObject object)
          Overridden by subclasses to determine whether it's permissible to delete an object.
 void EOClassDescription.validateObjectForSave(EOEnterpriseObject object)
          Overridden by subclasses to determine whether the values being saved for an object are acceptable.
 boolean EOClassDescription.ClassDelegate.shouldPropagateDeleteForObject(EOEnterpriseObject object, EOEditingContext ec, String key)
          Invoked from propagateDeleteForObject.
 

Uses of EOEnterpriseObject in com.webobjects.eodistribution.client
 

Methods in com.webobjects.eodistribution.client that return EOEnterpriseObject
 EOEnterpriseObject EODistributedObjectStore.faultForGlobalID(EOGlobalID globalID, EOEditingContext editingContext)
          Creates a to-one fault for the enterprise object identified by the global ID globalID, registers it in the editing context editingContext, and returns the fault.
 EOEnterpriseObject EODistributedObjectStore.faultForRawRow(NSDictionary row, String entityName, EOEditingContext editingContext)
          Creates a to-one fault for an enterprise object identified by the raw row row and the entity name entityName, registers it in the editing context editingContext, and returns the fault.
 EOEnterpriseObject EODistributedClassDescription.createInstanceWithEditingContext(EOEditingContext ec, EOGlobalID gid)
          Creates an enterprise object of the appropriate class.
 

Methods in com.webobjects.eodistribution.client with parameters of type EOEnterpriseObject
 void EODistributedObjectStore.initializeObject(EOEnterpriseObject object, EOGlobalID globalID, EOEditingContext editingContext)
          Initializes the enterprise object object with its attributes and relationships using key-value coding.
 void EODistributedObjectStore.refaultObject(EOEnterpriseObject object, EOGlobalID globalID, EOEditingContext editingContext)
          Turns the enterprise object object back into a fault (an empty enterprise object, identified by the global ID globalID) in the editing context editingContext.
 void EODistributedClassDescription.awakeObjectFromFetch(EOEnterpriseObject eo, EOEditingContext ec)
          Called every time an object is fetched in an editing context.
 void EODistributedClassDescription.awakeObjectFromInsertion(EOEnterpriseObject target, EOEditingContext ec)
          Automatically creates related objects for relationships which propagate primary keys.
 

Uses of EOEnterpriseObject in com.webobjects.webservices.generation
 

Methods in com.webobjects.webservices.generation with parameters of type EOEnterpriseObject
static void WOServiceUtilities.addDestinationObjectToEOWithKey(WOEnterpriseObjectSerializationStrategy strategy, Object object, EOEnterpriseObject eo, String propertyName)
          Performs addObjectToBothSidesOfRelationshipWithKey using eo as the origin and object as the destination.
 Class WORuleSerializationStrategy.classForKeyPath(EOEnterpriseObject eo, String keyPath)
          Returns the Class associated with the final component of the path, keyPath, of eo.
 NSArray WORuleSerializationStrategy.keyPathsForSerialization(EOEnterpriseObject eo)
          Returns an array of output part names that will be added to the serialized content of EOEnterpriseObjects (specifically those EO's whose entity name match the D2WContext value for key WOServiceUtilities.RuleSystemConstants.EntityNameKey).
 Object WORuleSerializationStrategy.proxyForKeyPath(EOEnterpriseObject eo, String keyPath)
          Overrides proxyForKeyPath in WOEnterpriseObjectSerializationStrategy to replace the EO(s) at key path keyPath of EO eo with the globalID(s) of the EO(s) at keyPath.
 

Uses of EOEnterpriseObject in com.webobjects.webservices.support.xml
 

Methods in com.webobjects.webservices.support.xml that return EOEnterpriseObject
 EOEnterpriseObject WOEnterpriseObjectSerializationStrategy.promoteGlobalIDToObject(String entityName, EOGlobalID gid, EOEditingContext ec, boolean shouldAttemptFetch)
          A utility method to attempt several different ways to promote a EOGlobalID into an EOEnterpriseObject.
 

Methods in com.webobjects.webservices.support.xml with parameters of type EOEnterpriseObject
 Class WOEnterpriseObjectSerializationStrategy.classForKeyPath(EOEnterpriseObject eo, String keyPath)
          The default implementation simply returns the Class associated with the final component of the keyPath's EOClassDescription's classForAttributeKey() result.
 Object WOEnterpriseObjectSerializationStrategy.elementAttributesForKeyPath(EOEnterpriseObject eo, String keyPath)
          The default implementation returns null which indicates that the SOAP-XML engine should fill in its own defaults for the element attributes.
 String WOEnterpriseObjectSerializationStrategy.elementNameForKeyPath(EOEnterpriseObject eo, String keyPath)
          The default implementation just returns the keyPath argument.
 NSArray WOEnterpriseObjectSerializationStrategy.keyPathsForSerialization(EOEnterpriseObject eo)
          The default implementation returns all the attribute class properties sorted alphabetically and none of the EO's relationships.
 Object WOEnterpriseObjectSerializationStrategy.proxyForKeyPath(EOEnterpriseObject eo, String keyPath)
          The default implementation simply returns eo.valueForKeyPath(keyPath) but a replacement for this can be substituted as the XML element value.
 


Last updated Thu Oct 21 15:04:16 PDT 2004.

Copyright © 2004 Apple Computer, Inc.