All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.TextDelegate

public interface TextDelegate
This interface wraps the Objective-C category defining delegate methods of the NSText 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 textDidBeginEditing(Notification)
A wrapper for the - textDidBeginEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).
 o textDidChange(Notification)
A wrapper for the - textDidChange: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).
 o textDidEndEditing(Notification)
A wrapper for the - textDidEndEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).
 o textShouldBeginEditing(Text)
A wrapper for the - textShouldBeginEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).
 o textShouldEndEditing(Text)
A wrapper for the - textShouldEndEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).

Methods

 o textShouldBeginEditing
 public abstract boolean textShouldBeginEditing(Text textObject)
A wrapper for the - textShouldBeginEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).

 o textShouldEndEditing
 public abstract boolean textShouldEndEditing(Text textObject)
A wrapper for the - textShouldEndEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).

 o textDidBeginEditing
 public abstract void textDidBeginEditing(Notification notification)
A wrapper for the - textDidBeginEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).

 o textDidEndEditing
 public abstract void textDidEndEditing(Notification notification)
A wrapper for the - textDidEndEditing: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).

 o textDidChange
 public abstract void textDidChange(Notification notification)
A wrapper for the - textDidChange: Objective-C instance method implemented by delegates of the Text class (known as the NSText Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index