You need to sign in to do that
Don't have an account?
ApexDoc :- A Salesforce Code Documentation Tool
Hi All,
I created one Apex documentation tool just like javadoc. Please share your feedbacks on that.
http://www.aslambari.com/apexdoc.html
Blog:-
http://techsahre.blogspot.com/2011/01/apexdoc-salesforce-code-documentation.html
Thanks
Aslam Bari
Doesn't work on OS X it looks like
Hi ,
I have updated the code zip with bash script. It should run on *nix systems also.
Let me know if you facing issues.
Thanks
Aslam Bari
Awesome idea. Not sure why this isn't working on a MacBook Pro :-(
This works for me on my MBP with Java 1.6:
Unfortunately, I've noticed a couple other things:
(1) Entries are only created for classes when there is a comment at the top of the class
(2) Classes which implement or extend another class are mislabeled as the class they implement or extend.
(3) "By default all public properties will be fetched in documentation" <-- also doesn't appear to be working
And, more obviously, no support for triggers, etc.
Other than that pretty snazzy.
@d3developer and others: Thanks for continue using it and reporting bugs. I am trying to fix each bugs and enhancement you suggesting.
For mac people facing issue, here is a link to follow:
http://blog.jeffdouglas.com/2011/01/27/document-apex-code-with-apexdoc/
1) Yes, it generates only for classes which has comments on top for now. Will fix it soon
2) Its working all public properties defined as below
public xxxxx myname {get;set;}
public xxxxx myname {set;}
public xxxxx myname {get;}
3) Will see about inner class.
Once i will get this stable enough, i am planning to open source it.
Thanks
Aslam Bari
I've made some improvements to ApexDoc. Check out the writeup here:http://scox67.blogspot.com/2013/08/sf-apexdoc.html.
In a nutshell, SfApexDoc:
I'm actively working on fixing issues and adding features, so please send me a note if you find problems.