Sandcastle unified documentation generation for C# and Java projects - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:26:30Z http://stackoverflow.com/feeds/question/1080264 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080264/sandcastle-unified-documentation-generation-for-c-and-java-projects 1 Sandcastle unified documentation generation for C# and Java projects Remus Rusanu 2009-07-03T17:31:18Z 2009-07-10T10:42:46Z <p>I have a set of related components that are basically provide the same functionality for various 'client' environments, like CLR and Java. Currently I'm generating my documentation using Sandcastle for the CLR components and I'm about to start the Java ones. I'd like to keep generating an unified documentation, with consistent look-and-feel across all components (CLR/Java and whatever will follow). the documentation will only be available on the site, so I only care about the html format, no CHM or other formats.</p> <p>Is this possible? As I see things, this would be possible if I can collect the Java documentation into an XML with the schema Sandcastle consumes, in order to have Sandcastle generate all documentation, for all platforms. This process is (somehow) described here: <a href="http://sandcastle.codeplex.com/Thread/View.aspx?ThreadId=32301" rel="nofollow">http://sandcastle.codeplex.com/Thread/View.aspx?ThreadId=32301</a> </p> <p>Is there some more straight forward, simpler, alternative?</p> http://stackoverflow.com/questions/1080264/sandcastle-unified-documentation-generation-for-c-and-java-projects/1103343#1103343 1 Answer by Chris S for Sandcastle unified documentation generation for C# and Java projects Chris S 2009-07-09T11:45:17Z 2009-07-09T11:45:17Z <p>If I've understood the question correctly, you want both .NET and Java documentation to have a uniform look and feel. The option you're going for is to use <a href="http://www.codeplex.com/SHFB" rel="nofollow">Sandcastle Builder</a> to generate HTML documentation from documentation you have in Java.</p> <p>I think this might be the wrong approach, as Sandcastle will stumble finding the types that exist in the Java, even if it's outputted to the XML format Sandcastle expects.</p> <p>My approach would be to write a <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/javadoc/overview.html" rel="nofollow">doclet</a> for your Java documentation, to match the style of the .NET/Sandcastle/MSDN style documentation. The default Javadoc HTML style is hideous, the default .NET MSDN style docs are far superior in my view, so matching those will be the best way round.</p> <p>There's a wealth of <a href="http://www.doclet.com" rel="nofollow">doclets</a> already written. I couldn't find one to produce XML (the links is incorrect on the doclet.com site). An IBM tool does it though <a href="http://www.ibm.com/developerworks/xml/library/x-tipjdoc/index.html" rel="nofollow">here</a>, whether it uses doclets I'm not sure.</p> <p>Once you have the XML, you can adapt the XSL that Sandcastle builder uses to produce the same looking HTML.</p> <p>Hope this helps + I'm on the right lines.</p> <p><strong>Update</strong></p> <p>Looks like someone has made a doclet to produce MSDN documentation: <a href="http://ndoclet.sourceforge.net/overview.html" rel="nofollow">ndoclet</a>, which means you could skip the XSL transformation process.</p> http://stackoverflow.com/questions/1080264/sandcastle-unified-documentation-generation-for-c-and-java-projects/1108867#1108867 1 Answer by ErvinS for Sandcastle unified documentation generation for C# and Java projects ErvinS 2009-07-10T10:42:46Z 2009-07-10T10:42:46Z <p>I tried Sandcastle for my projects but it was way to slow.</p> <p>Now I use <a href="http://www.doc-o-matic.com" rel="nofollow">doc-o-matic</a> which also supports Java.</p>