org.rococoa.cocoa.appkit
Class NSSpeechRecognizer

java.lang.Object
  extended by org.rococoa.cocoa.foundation.NSObject
      extended by org.rococoa.cocoa.appkit.NSSpeechRecognizer
All Implemented Interfaces:
NSObject, ObjCObject

public abstract class NSSpeechRecognizer
extends NSObject
implements ObjCObject

This file was autogenerated by JNAerator,
a tool written by Olivier Chafik that uses a few opensource projects..
For help, please visit NativeLibs4Java, Rococoa, or JNA.


Nested Class Summary
static class NSSpeechRecognizer._class_
           
 
Nested classes/interfaces inherited from interface org.rococoa.cocoa.foundation.protocols.NSObject
NSObject._static_
 
Constructor Summary
NSSpeechRecognizer()
           
 
Method Summary
static NSSpeechRecognizer alloc()
           
abstract  boolean blocksOtherRecognizers()
          Original signature : -(BOOL)blocksOtherRecognizers
native declaration : NSSpeechRecognizer.h:39
abstract  NSArray commands()
          Original signature : -(NSArray*)commands
native declaration : NSSpeechRecognizer.h:30
static NSSpeechRecognizer create()
          Factory method
abstract  NSSpeechRecognizerDelegate delegate()
          Original signature : -(id)delegate
native declaration : NSSpeechRecognizer.h:27
abstract  NSString displayedCommandsTitle()
          Original signature : -(NSString*)displayedCommandsTitle
native declaration : NSSpeechRecognizer.h:33
static NSSpeechRecognizer._class_ getNSClass()
           
abstract  NSSpeechRecognizer init()
          Original signature : -(id)init
native declaration : NSSpeechRecognizer.h:22
abstract  boolean listensInForegroundOnly()
          Original signature : -(BOOL)listensInForegroundOnly
native declaration : NSSpeechRecognizer.h:36
static NSSpeechRecognizer new_()
           
abstract  void setBlocksOtherRecognizers(boolean flag)
          Original signature : -(void)setBlocksOtherRecognizers:(BOOL)
native declaration : NSSpeechRecognizer.h:40
abstract  void setCommands(NSArray commands)
          Original signature : -(void)setCommands:(NSArray*)
native declaration : NSSpeechRecognizer.h:31
abstract  void setDelegate(NSSpeechRecognizerDelegate anObject)
          Original signature : -(void)setDelegate:(id)
native declaration : NSSpeechRecognizer.h:28
abstract  void setDisplayedCommandsTitle(NSString title)
          Original signature : -(void)setDisplayedCommandsTitle:(NSString*)
native declaration : NSSpeechRecognizer.h:34
abstract  void setListensInForegroundOnly(boolean flag)
          Original signature : -(void)setListensInForegroundOnly:(BOOL)
native declaration : NSSpeechRecognizer.h:37
abstract  void startListening()
          Original signature : -(void)startListening
native declaration : NSSpeechRecognizer.h:24
abstract  void stopListening()
          Original signature : -(void)stopListening
native declaration : NSSpeechRecognizer.h:25
 
Methods inherited from class org.rococoa.cocoa.foundation.NSObject
as_NSObject_NSAccessibility, as_NSObject_NSAccessibilityAdditions, as_NSObject_NSApplicationScriptingDelegation, as_NSObject_NSArchiverCallback, as_NSObject_NSClassDescriptionPrimitives, as_NSObject_NSCoderMethods, as_NSObject_NSColorPanelResponderMethod, as_NSObject_NSComparisonMethods, as_NSObject_NSControlSubclassNotifications, as_NSObject_NSCopyLinkMoveHandler, as_NSObject_NSDelayedPerforming, as_NSObject_NSDeprecatedKeyValueCoding, as_NSObject_NSDeprecatedKeyValueObservingCustomization, as_NSObject_NSDeprecatedMethods, as_NSObject_NSDictionaryControllerKeyValuePair, as_NSObject_NSDistributedObjects, as_NSObject_NSDraggingDestination, as_NSObject_NSDraggingSource, as_NSObject_NSDraggingSourceDeprecated, as_NSObject_NSEditor, as_NSObject_NSEditorRegistration, as_NSObject_NSErrorRecoveryAttempting, as_NSObject_NSFileManagerFileOperationAdditions, as_NSObject_NSFontManagerDelegate, as_NSObject_NSFontManagerResponderMethod, as_NSObject_NSFontPanelValidationAdditions, as_NSObject_NSKeyValueBindingCreation, as_NSObject_NSKeyValueCoding, as_NSObject_NSKeyValueObserverNotification, as_NSObject_NSKeyValueObserverRegistration, as_NSObject_NSKeyValueObserving, as_NSObject_NSKeyValueObservingCustomization, as_NSObject_NSMenuValidation, as_NSObject_NSNibAwaking, as_NSObject_NSPasteboardOwner, as_NSObject_NSPlaceholders, as_NSObject_NSScriptClassDescription, as_NSObject_NSScripting, as_NSObject_NSScriptingComparisonMethods, as_NSObject_NSScriptKeyValueCoding, as_NSObject_NSScriptObjectSpecifiers, as_NSObject_NSThreadPerformAdditions, as_NSObject_NSURLClient, as_NSObject_NSURLConnectionDelegate, as_NSObject_NSURLDownloadDelegate, copy, dealloc, description, doesNotRecognizeSelector, finalize, forwardingTargetForSelector, forwardInvocation, isKindOfClass, isKindOfClass, methodForSelector, methodSignatureForSelector, mutableCopy, release, retain, retainCount
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.rococoa.ObjCObject
id
 
Methods inherited from interface org.rococoa.cocoa.foundation.protocols.NSObject
autorelease, class_, conformsToProtocol, hash, isEqual, isMemberOfClass, isProxy, performSelector_withObject_withObject, performSelector_withObject, performSelector, respondsToSelector, self, superclass, zone
 

Constructor Detail

NSSpeechRecognizer

public NSSpeechRecognizer()
Method Detail

init

public abstract NSSpeechRecognizer init()
Original signature : -(id)init
native declaration : NSSpeechRecognizer.h:22

Specified by:
init in class NSObject

create

public static NSSpeechRecognizer create()
Factory method

See Also:
init()

startListening

public abstract void startListening()
Original signature : -(void)startListening
native declaration : NSSpeechRecognizer.h:24


stopListening

public abstract void stopListening()
Original signature : -(void)stopListening
native declaration : NSSpeechRecognizer.h:25


delegate

public abstract NSSpeechRecognizerDelegate delegate()
Original signature : -(id)delegate
native declaration : NSSpeechRecognizer.h:27


setDelegate

public abstract void setDelegate(NSSpeechRecognizerDelegate anObject)
Original signature : -(void)setDelegate:(id)
native declaration : NSSpeechRecognizer.h:28


commands

public abstract NSArray commands()
Original signature : -(NSArray*)commands
native declaration : NSSpeechRecognizer.h:30


setCommands

public abstract void setCommands(NSArray commands)
Original signature : -(void)setCommands:(NSArray*)
native declaration : NSSpeechRecognizer.h:31


displayedCommandsTitle

public abstract NSString displayedCommandsTitle()
Original signature : -(NSString*)displayedCommandsTitle
native declaration : NSSpeechRecognizer.h:33


setDisplayedCommandsTitle

public abstract void setDisplayedCommandsTitle(NSString title)
Original signature : -(void)setDisplayedCommandsTitle:(NSString*)
native declaration : NSSpeechRecognizer.h:34


listensInForegroundOnly

public abstract boolean listensInForegroundOnly()
Original signature : -(BOOL)listensInForegroundOnly
native declaration : NSSpeechRecognizer.h:36


setListensInForegroundOnly

public abstract void setListensInForegroundOnly(boolean flag)
Original signature : -(void)setListensInForegroundOnly:(BOOL)
native declaration : NSSpeechRecognizer.h:37


blocksOtherRecognizers

public abstract boolean blocksOtherRecognizers()
Original signature : -(BOOL)blocksOtherRecognizers
native declaration : NSSpeechRecognizer.h:39


setBlocksOtherRecognizers

public abstract void setBlocksOtherRecognizers(boolean flag)
Original signature : -(void)setBlocksOtherRecognizers:(BOOL)
native declaration : NSSpeechRecognizer.h:40


alloc

public static NSSpeechRecognizer alloc()

new_

public static NSSpeechRecognizer new_()

getNSClass

public static NSSpeechRecognizer._class_ getNSClass()


Copyright © 2009. All Rights Reserved.