|
WebObjects 5.4.2 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.webobjects.appserver.WOContext
public class WOContext
A WOContext object lets you access objects and information that define the context of a transaction. In a typical request-response loop (a transaction), several objects have a hand in what is going on: the WOApplication and WOSession objects, the page involved in the request or response (a
WOComponent object), the page's subcomponents (also WOComponents), plus the dynamic elements on the page. The WOContext object passed as an argument in the takeValuesFromRequest
, invokeAction
, and appendToResponse
methods allows access to these
objects. A context is identified by the contextID
, which appears in the URL after the session ID and page name. Each contextID is an integer that the session increments each time a new context is created.
WOContext objects provide other information and services related to the current transaction. From them you can get the entire URL currently in effect as well as portions of that URL, such as the element ID, the context ID, and the URL up to and including the session ID.
A WOContext object plays a further role behind the scenes. For the benefit of a page's dynamic elements, it keeps track of the current component, that is, the WOComponent associated with the current element in the request-handling cycle. The current component can be the WOComponent that
represents one of the page's subcomponents or the page itself. By reference to the current component,accessed through WOContext's component
method, a dynamic element can exchange values associatively between itself and the WOComponent that contains it.
WOContext.component()
,
WOComponent.takeValuesFromRequest(WORequest aRequest, WOContext aContext)
,
WOComponent.invokeAction(WORequest aRequest, WOContext aContext)
,
WOComponent.appendToResponse(WOResponse aResponse, WOContext aContext)
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface com.webobjects.foundation.NSKeyValueCodingAdditions |
---|
NSKeyValueCodingAdditions.DefaultImplementation, NSKeyValueCodingAdditions.Utility |
Field Summary | |
---|---|
static boolean |
EscapeQueryDictionary
|
static String |
SessionIDBindingKey
wosid |
static String |
WOURLEncoding
Resolves to string 'WOURLEncoding' |
Fields inherited from interface com.webobjects.foundation.NSKeyValueCodingAdditions |
---|
KeyPathSeparator |
Constructor Summary | |
---|---|
WOContext(WORequest aRequest)
Returns a WOContext instance initialized with aRequest . |
Method Summary | |
---|---|
void |
appendElementIDComponent(String aString)
Appends a string to the current element ID to create an identifier of an HTML element. |
void |
appendZeroElementIDComponent()
Appends a ".0" to the current element ID to create an identifier of the first "child" HTML element. |
static boolean |
canAccessFieldsDirectly()
WOContext's implementation of this static method returns true, indicating that key/value coding is allowed to access fields in this object if an appropriate method isn't present. |
Object |
clone()
|
String |
completeApplicationURLPrefix(boolean secure,
int port)
Returns the application url prefix, including the application number.If port is 0 then the url will default to 443 for secure url and the default server port otherwise. |
String |
completeURLWithRequestHandlerKey(String requestHandlerKey,
String aRequestHandlerPath,
String aQueryString,
boolean isSecure,
int somePort)
Returns the complete URL for the specified request handler. |
String |
completeURLWithRequestHandlerKey(String applicationNumber,
String requestHandlerKey,
String requestHandlerPath,
String queryString,
boolean isSecure,
int somePort)
Builds a complete URL from its components. |
WOComponent |
component()
Returns the WOComponent that dynamic elements are currently using to push and pull values associatively. |
String |
componentActionURL()
Returns a URL for a component action relative to cgi-bin/WebObjects . |
String |
componentActionURL(String requestHandlerKey)
Returns a URL for a component action relative to cgi-bin/WebObjects . |
String |
componentActionURL(String requestHandlerKey,
boolean isSecure)
Returns a URL for a component action relative to cgi-bin/WebObjects . |
NSDictionary |
computeQueryDictionary(String aRequestHandlerPath,
NSDictionary queryDictionary,
NSDictionary otherQueryDictionary,
boolean defaultIncludeSessionID)
Compute a combined query dictionary. |
String |
contextID()
Returns the context ID of the receiver. |
static WOContext |
contextWithRequest(WORequest aRequest)
Deprecated. use WOContext(WORequest aRequest) instead |
void |
deleteAllElementIDComponents()
Deletes all components of the current element ID. |
void |
deleteLastElementIDComponent()
Deletes the last digit --or name-- of the current element ID, along with its dot separator. |
String |
directActionURLForActionNamed(String anActionName,
NSDictionary queryDictionary)
Returns a complete URL for the specified action. |
String |
directActionURLForActionNamed(String requestHandlerPath,
NSDictionary queryDictionary,
boolean isSecure,
boolean entityEscapeQueryDict)
Builds a complete URL from its components for a direct action. |
String |
directActionURLForActionNamed(String aRequestHandlerPath,
NSDictionary queryDictionary,
boolean isSecure,
int somePort,
boolean entityEscapeQueryDict)
Builds a complete URL from its components for a direct action. |
protected boolean |
directConnect()
|
boolean |
doesGenerateCompleteURLs()
Return the value of teh Generate complete URLs variable |
String |
elementID()
Returns an element ID . |
void |
generateCompleteURLs()
Forces the context to generate complete URLs. |
void |
generateRelativeURLs()
Forces the context to generate relative URLs. |
Object |
handleQueryWithUnboundKey(String key)
Invoked from valueForKey when it finds no property binding for key . |
void |
handleTakeValueForUnboundKey(Object value,
String key)
Invoked from takeValueForKey when it finds no property binding for key . |
boolean |
hasSession()
Returns true if a session exists for the receiving context, false otherwise. |
void |
incrementLastElementIDComponent()
Increments the last digit of the current element ID. |
boolean |
isInForm()
Used by subclasses of WODynamicElement to determine if the context is in a WOForm element. |
boolean |
isMultipleSubmitForm()
Convenience to determine if multiple submit form was submitted |
String |
javaScriptElementID()
Returns a JavaScript safe element id. |
static String |
javaScriptElementIDPrefix()
Returns the prefix for the JavaScript element id. |
static String |
javaScriptElementIDSeparator()
Returns the separator for the JavaScript element id. |
WOComponent |
page()
Returns a WOComponent object that represents either the request or response page. |
String |
pageFragementID()
Returns the ID used in the page fragment cache to identify the component. |
protected String |
relativeURLWithRequestHandlerKey(String requestHandlerKey,
String requestHandlerPath,
String queryString)
|
WORequest |
request()
Return the context's WORequest object. |
WOResponse |
response()
Return the context's WOResponse object. |
boolean |
secureMode()
Return true if the context is in secure mode. |
protected boolean |
secureRequest()
Return the secure state of the request |
String |
senderID()
Returns the part of the WORequest's URI that identifies the dynamic element on the page (such as a form or an active image) responsible for submitting the request. |
WOSession |
session()
Returns the object representing the receiving context's session, if one exists. |
protected Object |
sessionIDInQueryDictionary(NSDictionary queryDictionary)
|
void |
setActionInvoked(boolean aFlag)
Convenience to set if action was invoked |
void |
setFormSubmitted(boolean aFlag)
Convenience to set if form as submitted |
void |
setInForm(boolean aFlag)
If you write something that behaves like a WOForm, invoke this method with aFlag
true in appendToResponse(WOResponse aResponse, WOContext aContext) before calling super.appendToResponse(WOResponse aResponse, WOContext aContext) to
notify any contained WODynamicElements that they are in a form. |
void |
setIsMultipleSubmitForm(boolean aFlag)
Convenience to set if multiple submit form was submitted |
static void |
setJavaScriptElementIDPrefix(String value)
Sets the prefix for the JavaScript element id. |
static void |
setJavaScriptElementIDSeparator(String value)
Sets the separator for the JavaScript element id. |
void |
setPageFragmentID(String value)
Stes the ID used in the page fragment cache to identify the component. |
void |
setSecureMode(boolean value)
Puts the context in secure mode. |
void |
setUserInfo(Map aDictionary)
Sets a dictionary in the WOContext object that can contain, as a convenience, any kind of information related to the current response. |
void |
setUserInfoForKey(Object value,
String key)
Setes the value for key in the infor user dictionary |
boolean |
shouldNotStorePageInBacktrackCache()
Checks if the page should not be stored in the backtrack cache. |
void |
takeValueForKey(Object value,
String key)
Sets the value for the property identified by key to value . |
void |
takeValueForKeyPath(Object value,
String keyPath)
Sets the value for the property identified by keyPath
to value . |
String |
toString()
|
void |
unableToSetNullForKey(String key)
Invoked from takeValueForKey when it is given a null value for a scalar property (such as an int or a float ). |
String |
urlWithRequestHandlerKey(String requestHandlerKey,
String aRequestHandlerPath,
String aQueryString)
Returns a URL relative to cgi-bin/WebObjects for the specified request handler. |
NSDictionary |
userInfo()
Return the userInfo dictionary. |
Object |
userInfoForKey(String key)
Return the value of the key in the userInfo dictionary |
Object |
valueForKey(String key)
Retrieves the value of the property named by key . |
Object |
valueForKeyPath(String keyPath)
Retrieves the value of a property of the object at the end of the key path (a key path is a string of the form "key1.key2"). |
boolean |
wasActionInvoked()
Convenience to determine if action was invoked |
boolean |
wasFormSubmitted()
Convenience to determine if form as submitted |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String WOURLEncoding
public static final String SessionIDBindingKey
public static boolean EscapeQueryDictionary
Constructor Detail |
---|
public WOContext(WORequest aRequest)
aRequest
.
aRequest
- request that initializes the instanceMethod Detail |
---|
@Deprecated public static WOContext contextWithRequest(WORequest aRequest)
aRequest
- WORequest
aRequest
protected boolean secureRequest()
public boolean secureMode()
public void setSecureMode(boolean value)
value
- public Object clone()
clone
in class Object
public String toString()
toString
in class Object
public String contextID()
public String senderID()
null
,
as it always is on the first request of a session.
WOContext.request()
,
WORequest.uri()
public boolean hasSession()
true
if a session exists for the receiving context, false
otherwise.
true
if a session exists for the receiving context, false
otherwiseWOContext.session()
public WOSession session()
hasSession
to determine whether a context has a session associated with it.
In the case of a direct action, if a session could not be restored from a session ID this method attempts to create a new session by calling WOApplication.createSessionForRequest
. If createSessionForRequest
returns null
, this method throws an
IllegalStateException
(catch it in your direct action to manually handle session creation error).
WOContext.component()
,
WOContext.page()
,
WOContext.request()
,
WOContext.response()
,
WOContext.hasSession()
,
WOSession
,
WOApplication.createSessionForRequest(com.webobjects.appserver.WORequest)
public WORequest request()
WOContext.component()
,
WOContext.page()
,
WOContext.response()
,
WOContext.session()
public WOResponse response()
WOContext.component()
,
WOContext.page()
,
WOContext.response()
,
WOContext.session()
public void setInForm(boolean aFlag)
aFlag
true
in appendToResponse(WOResponse aResponse, WOContext aContext)
before calling super.appendToResponse(WOResponse aResponse, WOContext aContext)
to
notify any contained WODynamicElements that they are in a form. After super.appendToResponse(WOResponse aResponse, WOContext aContext)
is done, revert the change by invoking invoke this method with aFlag
false
.
aFlag
- true
notifies WODynamicElements that they are in a formWOContext.isInForm()
public boolean isInForm()
true
when in the context of a WOForm, false
otherwiseWOContext.setInForm(boolean flag)
public void setFormSubmitted(boolean aFlag)
aFlag
- boolean to indicate whether form was submittedpublic boolean wasFormSubmitted()
public void setActionInvoked(boolean aFlag)
aFlag
- set to true if action was invokedpublic boolean wasActionInvoked()
public void setIsMultipleSubmitForm(boolean aFlag)
aFlag
- set to true if multiple submit form was submittedpublic boolean isMultipleSubmitForm()
public void setUserInfo(Map aDictionary)
appendToResponse
method chain can retrieve this information by invoking userInfo
.
This method unconditionally makes an immutable copy of aDictionary
. This can be a problem if changes made elsewhere to the dictionary's contents need to be reflected in the userInfo dictionary.
If you need to pass in a mutable dictionary that can be changed by other objects down the chain, wrap the mutable dictionary in a read-only (immutable) dictionary and pass the immutable dictionary as the argument to this method. Be extremely careful doing this if your application is multi-threaded and the userInfo data may be accessed by multiple threads.
aDictionary
- a dictionary that can contain any kind of information related to the current responseWOContext.userInfo()
public NSDictionary userInfo()
userInfo
dictionary. An object further upstream in the appendToResponse
method chain can set this dictionary in the WOMessage object as a way to pass information to other objects.
WOContext.setUserInfo(Map)
public Object userInfoForKey(String key)
key
- to search for
public void setUserInfoForKey(Object value, String key)
value
- to setkey
- to setpublic WOComponent page()
takeValuesFromRequest
invokeAction
phases of request handling, it will return the request page. If it is called during
appendToResponse
phase, it will return the response page. During the first two
phases, the request page is determined by the context ID in the request -- if one exists,
and is restored from the user's session's page cache.
WOContext.component()
,
WOContext.request()
,
WOContext.response()
,
WOContext.session()
,
WOSession.restorePageForContextID(String aContextID)
public WOComponent component()
takeValuesFromRequest
invokeAction phases of request handling, this
will be either the current request, or a subcomponent of that page. During the appendToResponse
phase, it will return the response page or a subcomponent.
WOContext.page()
,
WOContext.request()
,
WOContext.response()
,
WOContext.session()
,
WOComponent
public String elementID()
element ID
. This element ID is used by WOElements during the appendToResponse
phase of request handling to create URLs, and during the invokeAction
phase to determine which element was activated. This element ID
will
change as appendElementIDComponent
etc are invoked.
element ID
identifying the current WOElementWOContext.appendElementIDComponent(String aString)
,
WOContext.appendZeroElementIDComponent()
,
WOContext.deleteAllElementIDComponents()
,
WOContext.deleteLastElementIDComponent()
,
WOContext.incrementLastElementIDComponent()
public String javaScriptElementID()
javaScriptElementIDPrefix
and all element are separated by "_"
Javascript element ID
identifying the current WOElementWOContext.javaScriptElementIDPrefix()
public static String javaScriptElementIDPrefix()
Javascript prefix
WOContext.javaScriptElementID()
public static void setJavaScriptElementIDSeparator(String value)
value
- the Javascript separator
WOContext.javaScriptElementID()
public static String javaScriptElementIDSeparator()
Javascript separator
WOContext.javaScriptElementID()
public static void setJavaScriptElementIDPrefix(String value)
value
- the Javascript prefix
WOContext.javaScriptElementID()
public boolean shouldNotStorePageInBacktrackCache()
public String pageFragementID()
javaScriptElementID
WOContext.javaScriptElementID()
public void setPageFragmentID(String value)
value
- name of the page fragmentpublic void generateCompleteURLs()
public void generateRelativeURLs()
public boolean doesGenerateCompleteURLs()
public String completeURLWithRequestHandlerKey(String applicationNumber, String requestHandlerKey, String requestHandlerPath, String queryString, boolean isSecure, int somePort)
applicationNumber
- application number if not included in the requestrequestHandlerKey
- request Handler Key (from the application request handlers)requestHandlerPath
- Action or Page that need to be accessedqueryString
- Query String to appendisSecure
- Generate https or http protocolsomePort
- If not port 80
public String completeApplicationURLPrefix(boolean secure, int port)
secure
- generates secure url (https)port
- use a specific port.
public String directActionURLForActionNamed(String anActionName, NSDictionary queryDictionary)
anActionName
can be either an action -- "ActionName" -- or an action on a class -- "ActionClass/ActionName". You can also specify aQueryDict
to be an NSDictionary which contains form values as key/value pairs.
anActionName
- String action namequeryDictionary
- NSDictionary containing query key/value pairs
WODirectAction
public String componentActionURL()
cgi-bin/WebObjects
. The exact form of the URL will vary depending on whether the application is caching pages and whether the session ID
is being stored in the URL or not.
public String componentActionURL(String requestHandlerKey)
cgi-bin/WebObjects
. The exact form of the URL will vary depending on whether the application is caching pages and whether the session ID
is being stored in the URL or not.
requestHandlerKey
- Request handler key to be used in the URL
public String componentActionURL(String requestHandlerKey, boolean isSecure)
cgi-bin/WebObjects
. The exact form of the URL will vary depending on whether the application is caching pages and whether the session ID
is being stored in the URL or not.
requestHandlerKey
- Request handler key to be used in the URLisSecure
- Generates secure or regular URLs
public String urlWithRequestHandlerKey(String requestHandlerKey, String aRequestHandlerPath, String aQueryString)
cgi-bin/WebObjects
for the specified request handler. The requestHandlerKey
is one of the keys registered with WOApplication. The aRequestHandlerPath
is any URL encoded string. The aQueryString
is added at
the end of the URL behind a "?".
requestHandlerKey
- one of the keys provided by WOApplicationaRequestHandlerPath
- any URL encoded stringaQueryString
- string added at the end of the URL
cgi-bin/WebObjects
for the specified request handler(String requestHandlerKey, String aRequestHandlerPath, String aQueryString, boolean isSecure,int somePort)
,
WOApplication.registeredRequestHandlerKeys()
public String directActionURLForActionNamed(String aRequestHandlerPath, NSDictionary queryDictionary, boolean isSecure, int somePort, boolean entityEscapeQueryDict)
aRequestHandlerPath
- Action that need to be accessedqueryDictionary
- Query Dictionary to appendisSecure
- Generate https or http protocolsomePort
- If not port 80entityEscapeQueryDict
- true if you want the query dictionary generated as foo=bar&baz=blah as opposed to foo=bar&baz=blah
public NSDictionary computeQueryDictionary(String aRequestHandlerPath, NSDictionary queryDictionary, NSDictionary otherQueryDictionary, boolean defaultIncludeSessionID)
aRequestHandlerPath
- Action that need to be accessedqueryDictionary
- Query Dictionary to appendotherQueryDictionary
- Query Dictionary to appenddefaultIncludeSessionID
- if the session ID is not null and not included by another mean do we force its inclusion
public String directActionURLForActionNamed(String requestHandlerPath, NSDictionary queryDictionary, boolean isSecure, boolean entityEscapeQueryDict)
requestHandlerPath
- Action that need to be accessedqueryDictionary
- Query dictionary to appendisSecure
- Generate https or http protocol
protected String relativeURLWithRequestHandlerKey(String requestHandlerKey, String requestHandlerPath, String queryString)
requestHandlerKey
- requestHandlerPath
- queryString
-
protected Object sessionIDInQueryDictionary(NSDictionary queryDictionary)
protected boolean directConnect()
public String completeURLWithRequestHandlerKey(String requestHandlerKey, String aRequestHandlerPath, String aQueryString, boolean isSecure, int somePort)
requestHandlerKey
is one of the keys registered with WOApplication. The requestHandlerPath
is any URL encoded string. The aQueryString
is added at the end of the URL behind a "?". If
isSecure
is true
, this method uses "https" instead of "http". If somePort
is 0 (zero), this method uses the default port.
requestHandlerKey
- one of the keys registered with WOApplicationaRequestHandlerPath
- any URL encoded stringaQueryString
- added at the end of the URLisSecure
- if true
the method uses "https" instead of "http"somePort
- the port on which the request handler is listening if 0 this method uses the default port request handler
WOContext.urlWithRequestHandlerKey(String requestHandlerKey, String aRequestHandlerPath, String aQueryString)
,
WOApplication.registeredRequestHandlerKeys()
public void appendElementIDComponent(String aString)
aString
- String to be appended to the current element IDWOContext.appendZeroElementIDComponent()
,
WOContext.deleteAllElementIDComponents()
,
WOContext.deleteLastElementIDComponent()
,
WOContext.incrementLastElementIDComponent()
public void appendZeroElementIDComponent()
WOContext.appendElementIDComponent(String aString)
,
WOContext.deleteAllElementIDComponents()
,
WOContext.deleteLastElementIDComponent()
,
WOContext.incrementLastElementIDComponent()
public void incrementLastElementIDComponent()
WOContext.appendElementIDComponent(String aString)
,
WOContext.appendZeroElementIDComponent()
,
WOContext.deleteAllElementIDComponents()
,
WOContext.deleteLastElementIDComponent()
public void deleteLastElementIDComponent()
WOContext.appendElementIDComponent(String aString)
,
WOContext.appendZeroElementIDComponent()
,
WOContext.deleteAllElementIDComponents()
,
WOContext.incrementLastElementIDComponent()
public void deleteAllElementIDComponents()
WOContext.appendElementIDComponent(String aString)
,
WOContext.appendZeroElementIDComponent()
,
WOContext.deleteLastElementIDComponent()
,
WOContext.incrementLastElementIDComponent()
public static boolean canAccessFieldsDirectly()
true
public Object valueForKey(String key)
NSKeyValueCoding
key
.
The default implementation provided by NSKeyValueCoding.DefaultImplementation works as follows:
key
. For example, with a key of "lastName", the method looks for a method named getLastName, lastName, or isLastName.canAccessFieldsDirectly
returns true
, the method searches for a field based on key
and returns its value directly. For the key "lastName", this would be _lastName,
_isLastName, lastName, or isLastName.Note: The default implementations have significant performance optimizations. To benefit from them, implement NSKeyValueCoding on a custom class as shown above by using the methods in NSKeyValueCoding.DefaultImplementation, or if your class inherits from an WebObjects class that implements NSKeyValueCoding, do not override the inherited implementation. Using a custom implementation incurs significant performance penalties.
valueForKey
in interface NSKeyValueCoding
key
- identifies the property to retrieve
key
. Depending on the object you invoke this method upon, null
may be replaced with NullValue
NSKeyValueCoding.NullValue
,
NSKeyValueCoding.takeValueForKey(java.lang.Object, java.lang.String)
,
NSKeyValueCoding.DefaultImplementation
,
NSKeyValueCoding.ErrorHandling
,
NSKeyValueCoding.ErrorHandling.handleQueryWithUnboundKey(java.lang.String)
public void takeValueForKey(Object value, String key)
NSKeyValueCoding
key
to value
.
The default implementation provided by NSKeyValueCoding.DefaultImplementation works as follows:
set
Key, and invokes it if there is one._set
Key, and invokes it if there is one.canAccessFieldsDirectly
returns true
, searches for a field based on key
and sets its value directly. For the key "lastName", this would be _lastName
,
_isLastName
, lastName
, or isLastName
. value
argument is not compatible with the underlying field or method parameter, the default implementation will make an effort to convert between different Java numeric types (Integer, Double, BigDecimal, etc) as well as between Boolean and Number (true =
1, false = 0). If any other conversion would be necessary, an exception is thrown. handleTakeValueForUnboundKey
if the object implements NSKeyValueCoding.ErrorHandling or throws NSKeyValueCoding.UnknownKeyException if the object does not.Note: : The default implementations have significant performance optimizations. To benefit from them, implement NSKeyValueCoding on a custom class as shown above by using the methods in NSKeyValueCoding. DefaultImplementation, or if your class inherits from an WebObjects class that implements NSKeyValueCoding, do not override the inherited implementation. Using a custom implementation incurs significant performance penalties.
takeValueForKey
in interface NSKeyValueCoding
value
- the new value for the property named by key
key
- identifies the property to changeNSKeyValueCoding.NullValue
,
NSKeyValueCoding.valueForKey
,
NSKeyValueCoding.DefaultImplementation
,
NSKeyValueCoding.ErrorHandling
,
NSKeyValueCoding.ErrorHandling.handleTakeValueForUnboundKey(java.lang.Object, java.lang.String)
public Object handleQueryWithUnboundKey(String key)
NSKeyValueCoding.ErrorHandling
valueForKey
when it finds no property binding for key
. The default implementation throws an NSKeyValueCoding.UnknownKeyException, with the target object(TargetObjectUserInfoKey)
and key(UnknownUserInfokey)
in the
user info. An NSKeyValueCoding.ErrorHandling class can override this method to handle the query in some other way. The method can return a value, in which case that value is returned by the corresponding valueForKey
invocation.
handleQueryWithUnboundKey
in interface NSKeyValueCoding.ErrorHandling
key
- the property name which generated this error
null
that the custom implementation desires. The default implementation throws an exception instead.NSKeyValueCoding.valueForKey
,
NSKeyValueCoding.UnknownKeyException
,
NSKeyValueCoding.DefaultImplementation
public void handleTakeValueForUnboundKey(Object value, String key)
NSKeyValueCoding.ErrorHandling
takeValueForKey
when it finds no property binding for key
. The default implementation throws an NSKeyValueCoding.UnknownKeyException, with the target object(TargetObjectUserInfoKey)
and key(UnknownUserInfoKey)
in
the user info dictionary of the exception. An NSKeyValueCoding.ErrorHandling class can override this method to handle the error in some other way.
handleTakeValueForUnboundKey
in interface NSKeyValueCoding.ErrorHandling
value
- the new value which could not be setkey
- the name of the property which generated this errorNSKeyValueCoding.takeValueForKey
,
NSKeyValueCoding.UnknownKeyException
,
NSKeyValueCoding.DefaultImplementation
public void unableToSetNullForKey(String key)
NSKeyValueCoding.ErrorHandling
takeValueForKey
when it is given a null
value for a scalar property (such as an int
or a float
). The default implementation throws an IllegalArgumentException
. You might want to implement the method
(or override the inherited implementation) to handle the request in some other way, such as by substituting new Integer(0)
or a sentinel value and invoking takeValueForKey
again.
unableToSetNullForKey
in interface NSKeyValueCoding.ErrorHandling
key
- the name of the property which generated this errorNSKeyValueCoding.takeValueForKey
,
NSKeyValueCoding.DefaultImplementation
public Object valueForKeyPath(String keyPath)
NSKeyValueCodingAdditions
valueForKey
,
and returns the result of a valueForKey
message to the final
object.
valueForKeyPath
in interface NSKeyValueCodingAdditions
keyPath
- the keypath to evaluate
keyPath
NSKeyValueCoding.valueForKey(java.lang.String)
,
NSKeyValueCodingAdditions.takeValueForKeyPath(java.lang.Object, java.lang.String)
,
NSKeyValueCodingAdditions.DefaultImplementation
public void takeValueForKeyPath(Object value, String keyPath)
NSKeyValueCodingAdditions
keyPath
to value
. A key path has the form relationship.property
(with one or more relationships); for example "movieRole.roleName"
or "movieRole.talent.lastName". The default implementation of
this method (provided by NSKeyValueCodingAdditions.DefaultImplementation)
gets the destination object for each relationship using valueForKey
,
and sends the final object a takeValueForKey
message with value
and property
.
takeValueForKeyPath
in interface NSKeyValueCodingAdditions
value
- the property identified by keyPath
is set to thiskeyPath
- identifies the property of an objectNSKeyValueCoding.takeValueForKey(java.lang.Object, java.lang.String)
,
NSKeyValueCodingAdditions.valueForKeyPath(java.lang.String)
,
NSKeyValueCodingAdditions.DefaultImplementation
|
Last updated June 2008 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |