All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.ControlSubclassDelegate

public interface ControlSubclassDelegate
This interface wraps the Objective-C category defining delegate methods of the NSControl class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o controlDidFailToFormatStringErrorDescription(Control, String, String)
A wrapper for the - control:didFailToFormatString:errorDescription: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).
 o controlDidFailToValidatePartialString(Control, String, String)
A wrapper for the - control:didFailToValidatePartialString:errorDescription: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).
 o controlIsValidObject(Control, Object)
A wrapper for the - control:isValidObject: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).
 o controlTextShouldBeginEditing(Control, Text)
A wrapper for the - control:textShouldBeginEditing: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).
 o controlTextShouldEndEditing(Control, Text)
A wrapper for the - control:textShouldEndEditing: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).
 o controlTextViewDoCommandBySelector(Control, TextView, Selector)
A wrapper for the - control:textView:doCommandBySelector: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).

Methods

 o controlTextShouldBeginEditing
 public abstract boolean controlTextShouldBeginEditing(Control control,
                                                       Text fieldEditor)
A wrapper for the - control:textShouldBeginEditing: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).

 o controlTextShouldEndEditing
 public abstract boolean controlTextShouldEndEditing(Control control,
                                                     Text fieldEditor)
A wrapper for the - control:textShouldEndEditing: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).

 o controlDidFailToFormatStringErrorDescription
 public abstract boolean controlDidFailToFormatStringErrorDescription(Control control,
                                                                      String string,
                                                                      String error)
A wrapper for the - control:didFailToFormatString:errorDescription: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).

 o controlDidFailToValidatePartialString
 public abstract void controlDidFailToValidatePartialString(Control control,
                                                            String string,
                                                            String error)
A wrapper for the - control:didFailToValidatePartialString:errorDescription: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).

 o controlIsValidObject
 public abstract boolean controlIsValidObject(Control control,
                                              Object obj)
A wrapper for the - control:isValidObject: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).

 o controlTextViewDoCommandBySelector
 public abstract boolean controlTextViewDoCommandBySelector(Control control,
                                                            TextView textView,
                                                            Selector commandSelector)
A wrapper for the - control:textView:doCommandBySelector: Objective-C instance method implemented by delegates of the Control class (known as the NSControl Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index