|
WebObjects 5.2.3 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use NSSelector | |
com.webobjects.appserver | Provides the WebObjects application server, session management classes, component classes, and classes to manage the request-response loop. |
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.eocontrol | Provides infrastructure for creating and manging enterprise objects. |
com.webobjects.eodistribution | Provides the communication mechanism between the client and server components of Java Client applications. |
com.webobjects.eointerface | Provides the infrastructure to display data for the control layer in a desktop application's user interface. |
com.webobjects.foundation | Provides a set of robust and mature core classes, including utility, collection, key-value coding, time and date, notification, and debug logging classes. |
Uses of NSSelector in com.webobjects.appserver |
Methods in com.webobjects.appserver that return NSSelector | |
NSSelector |
WOTimer.selector()
Returns the NSSelector which will be invoked when the WOTimer fires. |
Uses of NSSelector in com.webobjects.directtoweb |
Fields in com.webobjects.directtoweb declared as NSSelector | |
static NSSelector |
ServerSideSettings.equalSelector
|
Uses of NSSelector in com.webobjects.eoaccess |
Methods in com.webobjects.eoaccess that return NSSelector | |
NSSelector |
EOAttribute.adaptorValueConversionMethod()
Returns the method used to convert a custom class into one of the primitive types that the adaptor knows how to manipulate: String, Number, NSData, or NSTimestamp. |
NSSelector |
EOAttribute.valueFactoryMethod()
Returns the factory method invoked by the attribute when creating an attribute value that's of a custom class. |
Methods in com.webobjects.eoaccess with parameters of type NSSelector | |
String |
EOSQLExpression.sqlStringForSelector(NSSelector selector,
Object value)
Returns a SQL operator for selector and value . |
Uses of NSSelector in com.webobjects.eocontrol |
Fields in com.webobjects.eocontrol declared as NSSelector | |
static NSSelector |
EOSortOrdering.CompareAscending
|
static NSSelector |
EOSortOrdering.CompareCaseInsensitiveAscending
|
static NSSelector |
EOSortOrdering.CompareCaseInsensitiveDescending
|
static NSSelector |
EOSortOrdering.CompareDescending
|
static NSSelector |
EOQualifier.QualifierOperatorCaseInsensitiveLike
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorContains
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorEqual
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorGreaterThan
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorGreaterThanOrEqualTo
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorLessThan
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorLessThanOrEqualTo
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorLike
One of the possible values of selector. |
static NSSelector |
EOQualifier.QualifierOperatorNotEqual
One of the possible values of selector. |
Methods in com.webobjects.eocontrol that return NSSelector | |
NSSelector |
EOSortOrdering.selector()
Returns the method selector used to compare values when sorting. |
protected static NSSelector |
EOQualifier.operatorSelectorForSelectorNamed(String string)
Returns a named operator selector. |
static NSSelector |
EOQualifier.operatorSelectorForString(String string)
Returns an operator selector based on the string string. |
NSSelector |
EOKeyValueQualifier.selector()
Returns the selector that the receiver uses when qualifying (for instance, with evaluateWithObject ). |
NSSelector |
EOKeyComparisonQualifier.selector()
The operator method used to do the comparison. |
Methods in com.webobjects.eocontrol with parameters of type NSSelector | |
static EOSortOrdering |
EOSortOrdering.sortOrderingWithKey(String key,
NSSelector selector)
Creates an EOSortOrdering based on key and selector. |
static int |
EOSortOrdering.ComparisonSupport.compareValues(Object left,
Object right,
NSSelector selector)
Compares the two objects using selector . |
static String |
EOQualifier.stringForOperatorSelector(NSSelector selector)
Returns a string representation of the selector selector. |
static boolean |
EOQualifier.ComparisonSupport.compareValues(Object left,
Object right,
NSSelector selector)
Compares the two objects using selector. |
Constructors in com.webobjects.eocontrol with parameters of type NSSelector | |
EOSortOrdering(String key,
NSSelector selector)
Creates a new EOSortOrdering object. |
|
EOObserverProxy(Object target,
NSSelector action,
int priority)
Creates a new EOObserverProxy to send action to target
upon receiving a subjectChanged message. |
|
EOKeyValueQualifier(String key,
NSSelector selector,
Object value)
Creates a new EOKeyValueQualifier. |
|
EOKeyComparisonQualifier(String leftKey,
NSSelector selector,
String rightKey)
Creates and returns a new EOKeyComparisonQualifier object that compares the properties named by leftKey and rightKey , using the
operator method selector , one of the list below. |
Uses of NSSelector in com.webobjects.eodistribution |
Methods in com.webobjects.eodistribution with parameters of type NSSelector | |
boolean |
EODistributionContext.Delegate.distributionContextShouldAllowInvocation(EODistributionContext distributionContext,
Object object,
NSSelector selector,
Object[] arguments)
Returns whether a remote method invocation to object should be
allowed for the client application of this distribution context or not. |
Uses of NSSelector in com.webobjects.eointerface |
Methods in com.webobjects.eointerface that return NSSelector | |
NSSelector |
EOTableColumnAssociation.sortingSelector()
This method returns the sorting selector. |
Methods in com.webobjects.eointerface with parameters of type NSSelector | |
void |
EOTableColumnAssociation.setSortingSelector(NSSelector selector)
This method will set the sorting selector. |
Uses of NSSelector in com.webobjects.foundation |
Methods in com.webobjects.foundation with parameters of type NSSelector | |
void |
NSUndoManager.registerUndoWithTarget(Object target,
NSSelector selector,
Object object)
Records a single undo operation for target , so that when undo is
performed it's sent selector with object as the sole
argument. |
void |
NSUndoManager.registerUndoWithTargetAndArguments(Object target,
NSSelector selector,
Object[] objects)
For undo operations dealing with multiple arguments you need to use registerUndoWithTargetAndArguments method giving the object
to be sent the undo operation selector, the selector to invoke, and
arguments to pass with that message. |
void |
NSNotificationCenter.addObserver(Object observer,
NSSelector sel,
String name,
Object object)
Registers observer to receive notifications with the name
name and/or containing object . |
void |
NSNotificationCenter.addOmniscientObserver(Object observer,
NSSelector sel)
Registers observer to receive all notifications from all objects. |
void |
NSDelayedCallbackCenter.cancelPerformSelector(NSSelector selector,
Object target,
Object argument)
Removes the specified selector for the specified target object
and argument from the list of registered selectors. |
void |
NSDelayedCallbackCenter.performSelector(NSSelector selector,
Object target,
Object argument,
int order)
Registers selector to be invoked on target with the specified
argument and order (priority). |
void |
NSArray.makeObjectsPerformSelector(NSSelector selector,
Object[] parameters)
Invokes the method specified by selector on each object in this
array. |
NSArray |
NSArray.sortedArrayUsingSelector(NSSelector selector)
Deprecated. use sortedArrayUsingComparator instead |
|
Last updated Thu Oct 21 15:04:16 PDT 2004. | ||||||||||
PREV NEXT | FRAMES NO FRAMES |