org.rococoa.cocoa.foundation
Class NSScriptCommandDescription

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

public abstract class NSScriptCommandDescription
extends NSObject
implements ObjCObject, NSCoding

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 NSScriptCommandDescription._class_
           
 
Nested classes/interfaces inherited from interface org.rococoa.cocoa.foundation.protocols.NSCoding
NSCoding._static_
 
Nested classes/interfaces inherited from interface org.rococoa.cocoa.foundation.protocols.NSObject
NSObject._static_
 
Constructor Summary
NSScriptCommandDescription()
           
 
Method Summary
static NSScriptCommandDescription alloc()
           
abstract  int appleEventClassCode()
          Return the four character codes that identify the command in Apple events.
abstract  int appleEventCode()
          Original signature : -(FourCharCode)appleEventCode
native declaration : NSScriptCommandDescription.h:36
abstract  int appleEventCodeForArgumentWithName(NSString argumentName)
          Return the four character code that identifies in Apple events the declared type of the named argument in instances of the described command.
abstract  int appleEventCodeForReturnType()
          Return the four character code that identifies in Apple events the declared type of the result of execution of the described command.
abstract  NSArray argumentNames()
          Return the strings valid for use as keys into argument dictionaries in instances of the described command.
abstract  NSString commandClassName()
          Return the Objective-C class name for instances of the described command.
abstract  NSString commandName()
          Original signature : -(NSString*)commandName
native declaration : NSScriptCommandDescription.h:31
abstract  NSScriptCommand createCommandInstance()
          Create an instance of the described command.
abstract  NSScriptCommand createCommandInstanceWithZone(Pointer zone)
          Original signature : -(NSScriptCommand*)createCommandInstanceWithZone:(NSZone*)
native declaration : NSScriptCommandDescription.h:69
static NSScriptCommandDescription createWithSuiteName_commandName_dictionary(NSString suiteName, NSString commandName, NSDictionary commandDeclaration)
          Factory method
static NSScriptCommandDescription._class_ getNSClass()
           
abstract  NSScriptCommandDescription initWithSuiteName_commandName_dictionary(NSString suiteName, NSString commandName, NSDictionary commandDeclaration)
          Initialize, given a scripting suite name, command name, and command declaration dictionary of the sort that is valid in .scriptSuite property list files.
abstract  boolean isOptionalArgumentWithName(NSString argumentName)
          Return YES if the named argument is declared to be optional, NO otherwise.
static NSScriptCommandDescription new_()
           
abstract  NSString returnType()
          Return the declared type name for the result of execution of the described command, or nil if the described command is not declared to return a result.
abstract  NSString suiteName()
          Return the suite name or command name provided at initialization time.
abstract  NSString typeForArgumentWithName(NSString argumentName)
          Return the declared type of the named argument in instances of the described command.
 
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, create, dealloc, description, doesNotRecognizeSelector, finalize, forwardingTargetForSelector, forwardInvocation, init, 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.cocoa.foundation.protocols.NSCoding
encodeWithCoder, initWithCoder
 
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

NSScriptCommandDescription

public NSScriptCommandDescription()
Method Detail

initWithSuiteName_commandName_dictionary

public abstract NSScriptCommandDescription initWithSuiteName_commandName_dictionary(NSString suiteName,
                                                                                    NSString commandName,
                                                                                    NSDictionary commandDeclaration)
Initialize, given a scripting suite name, command name, and command declaration dictionary of the sort that is valid in .scriptSuite property list files.
Original signature : -(id)initWithSuiteName:(NSString*) commandName:(NSString*) dictionary:(NSDictionary*)
native declaration : NSScriptCommandDescription.h:26


createWithSuiteName_commandName_dictionary

public static NSScriptCommandDescription createWithSuiteName_commandName_dictionary(NSString suiteName,
                                                                                    NSString commandName,
                                                                                    NSDictionary commandDeclaration)
Factory method

See Also:
initWithSuiteName_commandName_dictionary(org.rococoa.cocoa.foundation.NSString, org.rococoa.cocoa.foundation.NSString, org.rococoa.cocoa.foundation.NSDictionary)

suiteName

public abstract NSString suiteName()
Return the suite name or command name provided at initialization time.
Original signature : -(NSString*)suiteName
native declaration : NSScriptCommandDescription.h:30


commandName

public abstract NSString commandName()
Original signature : -(NSString*)commandName
native declaration : NSScriptCommandDescription.h:31


appleEventClassCode

public abstract int appleEventClassCode()
Return the four character codes that identify the command in Apple events.
Original signature : -(FourCharCode)appleEventClassCode
native declaration : NSScriptCommandDescription.h:35


appleEventCode

public abstract int appleEventCode()
Original signature : -(FourCharCode)appleEventCode
native declaration : NSScriptCommandDescription.h:36


commandClassName

public abstract NSString commandClassName()
Return the Objective-C class name for instances of the described command.
Original signature : -(NSString*)commandClassName
native declaration : NSScriptCommandDescription.h:40


returnType

public abstract NSString returnType()
Return the declared type name for the result of execution of the described command, or nil if the described command is not declared to return a result.
Original signature : -(NSString*)returnType
native declaration : NSScriptCommandDescription.h:44


appleEventCodeForReturnType

public abstract int appleEventCodeForReturnType()
Return the four character code that identifies in Apple events the declared type of the result of execution of the described command.
Original signature : -(FourCharCode)appleEventCodeForReturnType
native declaration : NSScriptCommandDescription.h:48


argumentNames

public abstract NSArray argumentNames()
Return the strings valid for use as keys into argument dictionaries in instances of the described command.
Original signature : -(NSArray*)argumentNames
native declaration : NSScriptCommandDescription.h:52


typeForArgumentWithName

public abstract NSString typeForArgumentWithName(NSString argumentName)
Return the declared type of the named argument in instances of the described command.
Original signature : -(NSString*)typeForArgumentWithName:(NSString*)
native declaration : NSScriptCommandDescription.h:56


appleEventCodeForArgumentWithName

public abstract int appleEventCodeForArgumentWithName(NSString argumentName)
Return the four character code that identifies in Apple events the declared type of the named argument in instances of the described command.
Original signature : -(FourCharCode)appleEventCodeForArgumentWithName:(NSString*)
native declaration : NSScriptCommandDescription.h:60


isOptionalArgumentWithName

public abstract boolean isOptionalArgumentWithName(NSString argumentName)
Return YES if the named argument is declared to be optional, NO otherwise.
Original signature : -(BOOL)isOptionalArgumentWithName:(NSString*)
native declaration : NSScriptCommandDescription.h:64


createCommandInstance

public abstract NSScriptCommand createCommandInstance()
Create an instance of the described command.
Original signature : -(NSScriptCommand*)createCommandInstance
native declaration : NSScriptCommandDescription.h:68


createCommandInstanceWithZone

public abstract NSScriptCommand createCommandInstanceWithZone(Pointer zone)
Original signature : -(NSScriptCommand*)createCommandInstanceWithZone:(NSZone*)
native declaration : NSScriptCommandDescription.h:69


alloc

public static NSScriptCommandDescription alloc()

new_

public static NSScriptCommandDescription new_()

getNSClass

public static NSScriptCommandDescription._class_ getNSClass()


Copyright © 2009. All Rights Reserved.