XCode Plugin Examples
XCode Plugin Examples
- Subject: XCode Plugin Examples
- From: Robert Morse <email@hidden>
- Date: Mon, 8 Dec 2003 18:52:41 -0500
Hi,
I am really new to Applescript and as strange as it may seem I
would like to write a AppleScript plugin for Xcode. I like the way
you can do GUI interfaces, instead of the Scripts way of extending
Xcode. (Ya, I know you could probably do GUI with the scripts also).
I searched the net and the only plugin I could find was one that was
commercial.
What I am looking to do, is create some scripts and windows, that
have some fields, Say for a Java Method, it would have fields for the
following items. Method Type (Public,Private,Protected), Method Name,
Return Type, Arguments, and description. It would then take the
information
and create the skeleton javadocs comments, and function prototype. As
in
Type [X]Public [ ]Protected [ ]Private
Name __Function_______________________
Return __String_________________________
Args __int A, int b, float c__________
throws __Exception______________________
Desc. __Just a sample Description______
Would produce something like this
/**
* {Desc}
*
* @author {LOGIN NAME}
*
* @param int A
* @param int b
* @param float c
*
* @return String
*
* @throws Exception
*/
public String Function( int A, int b, int c ) throws Exception {
}
Thanks
Robert Morse
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.