Does JavaDoc supports any language?

Hello all,
Im trying to find or to develop a tool that can generate automatic documentation for any source code language.
Does for example, javadoc supports C++ or Pl/SQL?
If i use the javadoc style comment on this files can i generate html files by simply invocating on command line: javadoc something.sql?
If i use the pod of perl i can easely do something like this! But i was wondering if with javadoc i can do the same or if there is any tool who can generate documentation of any source code!?
Thank you all
Nuno

Hi Nuno,
I can't speak for other tools but I am sure that Javadoc only works with Java source. To generate documentation, it requires an internal representation of the source. The tool can only handle .java files.
-Jamie

Similar Messages

  • This app does not support the language of the OS adobe illustrator

    this app does not support the language of the OS adobe illustrator
    The system language is Russian, so fellow connoisseurs help someone is not difficult

    What system? What version of AI? You need to be more specific.
    Mylenium

  • Does Siri support multiple languages

    I live and work in a multilingual environment. As a result, I often have to send SMS and emails in English, French, Italian or Portuguese. With the keyboard, I am used to switch language with the globe key next to the spacebar. With Siri however I am not sure how this can work. When it does eventually support the above languages, will I be able to use different languages without changing the whole telephone setting? Can one say "send email to my wife: buongiorno amore"? It would be a real letdown if the coolest feature of iOS 5 were unusable to me...
    Thanks

    Yes, exactly. I am using Siri in English since she gets better along with the rather easy synthax (compared to German). Unfortunately you cannot switch directly when writing a message. For example, if you tell her to "write a message to my wife", you may immediately dictate what you want to say but only in English. If I want to write her in German instead, I will have to tap once on the message area. She then instantly changes to German (or any other language that was used as keyboard before) which also affects Siri's voice recognition. But one tap is reasonable.

  • Does it support regional languages like marathi, gujrati, kannada etc for writing as well as reading ?

    Does Mac book pro with retina display support regonal languages like marathi,gujarati,kannada etc for typing any documents ?
    If it supports then what i need to do ?

    Dhiru50 wrote:
    Does Mac book pro with retina display support regonal languages like marathi,gujarati,kannada etc for typing any documents ?
    Yes, here is a list of keyboards:
    https://dl.dropboxusercontent.com/u/46870715/s/m10lmac8.html#typing
    You turn them on in system preferences/language & text/input sources.  Fonts take care of the themselves.

  • Why the iPod does not support Thai language

    Why the iPod does not support the Thai language? iTunes supports it. If I drag a song with ID3 tags into my iPod the title becomes blank. If I remove the ID3 tags the title displays but the enconding of the characters are inccorect.

    Why the iPod does not support the Thai language?
    The languages supported by the iPod are listed in detail in its tech specs:
    http://www.apple.com/ipod/specs.html
    Hopefully future versions will expand the list to included Arabic, Hebrew, Thai, Vietnamese, Hindi, etc.

  • Does apex support any server side JSP or PHP?

    I have the folowing script that is used to save flash files as images. I am hoping there is some way to make these serverside calls from within apex.
    <%@ page import="java.io.OutputStream"%>
    <%@ page import="java.awt.Color"%>
    <%@ page import="java.awt.Graphics"%>
    <%@ page import="java.awt.image.BufferedImage"%>
    <%@ page import="javax.imageio.ImageIO"%>
    <%
         //Decoded data from charts.
         String data="";
         //Rows of color values.
         String[] rows;
         //Width and height of chart.
         int width=0;
         int height=0;
         //Default background color of the chart
         String bgcolor="";
         Color bgColor;
         //Get the width and height from form
         try{
              width = Integer.parseInt(request.getParameter("width"));
              height = Integer.parseInt(request.getParameter("height"));     
         catch(Exception e){
              //If the width and height have not been given, we cannot create the image.
              out.print("Image width/height not provided.");
              out.close();
         if(width==0 || height==0){
              //If the width and height are less than 1, we cannot create the image.
              out.print("Image width/height not provided.");
              out.close();
         //Get background color from request and set default
         bgcolor =request.getParameter("bgcolor");
         if (bgcolor==null || bgcolor=="" || bgcolor==null){
                   bgcolor = "FFFFFF";
         //Convert background color to color object     
         bgColor = new Color(Integer.parseInt(bgcolor,16));
         //Get image data  from request
         data = request.getParameter("data");
         if(data==null){
              //If image data not provided.
              out.print("Image Data not supplied.");
              out.close();
         try{
              //Parse data
              rows = new String[height+1];
              rows = data.split(";");
              //Bitmap to store the chart.
              //Reference to graphics object - gr
              BufferedImage chart = new BufferedImage(width,height,BufferedImage.TYPE_3BYTE_BGR);
              Graphics gr = chart.createGraphics();
              gr.setColor(bgColor);
              gr.fillRect(0,0,width,height);     
              String c;
              int r;
              int ri = 0;
              for (int i=0; i<rows.length; i++){
                   //Split individual pixels.               
                   String[] pixels = rows.split(",");               
                   //Set horizontal row index to 0
                   ri = 0;
                   for (int j=0; j<pixels.length; j++){                    
                        //Now, if it's not empty, we process it                    
                        //Split the color and repeat factor
                        String[] clrs = pixels[j].split("_");     
                        //Reference to color
                        c = clrs[0];
                        r = Integer.parseInt(clrs[1]);
                        //If color is not empty (i.e. not background pixel)
                        if (c!=null && c.length()>0 && c!=""){          
                             if (c.length()<6){
                                  //If the hexadecimal code is less than 6 characters, pad with 0
                                  StringBuffer str = new StringBuffer(c);
                                  int strLength = str.length();
                                  for ( int p = c.length()+1; p <= 6 ; p ++ ) {
                                            str.insert( 0, "0" );
                                  //Assing the new padded string
                                  c = str.toString();
                             for (int k=1; k<=r; k++){     
                                  //Draw each pixel
                                  gr.setColor(new Color(Integer.parseInt(c,16)));
                                  gr.fillRect(ri, i,1,1);
                                  //Increment horizontal row count
                                  ri++;                              
                        }else{
                             //Just increment horizontal index
                             ri = ri + r;
              //Returns the image
              response.setContentType("image/jpeg");
              response.addHeader("Content-Disposition", "attachment; filename=\"FusionCharts.jpg\"");
              OutputStream os = response.getOutputStream();
              ImageIO.write(chart, "jpeg", os);
              os.close();
         }catch(Exception e){
              //IF the image data is mal-formatted.
              out.print("Image data is not in proper format.");
              out.close();
    %>

    NO, APEX does NOT support running jsp or PHP scripts..
    Thank you,
    Tony Miller
    Webster, TX

  • File Data Source:  does not support any other host except LOCALHOST?

    I am using US 1.0.3.
    This exercpt is from the OTN iLearn Subscribed course titled "Oracle9i UltraSearch New Features" on operating system file access:
    "The file protocol is used only for the machine that launches the crawler. You can not specify any other host for this kind of URL, except LOCALHOST."
    Does it mean that US 1.0.3 can not be used to search other file servers on the network? For example, we have US 1.0.3 installed on a server S1 which is on a network with other servers (e.g. S2). I want to use US to search files in the folder myDir on server S2. So I tried to create a file data source with this URL:
    file://\\s2\myDir\
    But I got this error:
    Invalid file protocol URL: file//\\s2\myDir\
    Hostname of the file URL "file://\\s2\myDir\ is not "localhost".
    My question:
    (1) Can US 1.0.3 search files on a different server than the one US is running on?
    (2) If so, how to specify the URL using the above example for it to work?
    (3) If not, how about the newer version of US, 9.2 or 9.02? Can they be used to search files on other network servers/drives?
    (4) If no to question (3), is there any plan to support this in the future version of US?
    My comment: Not able to search other servers really limits the userfulness of US. I really hope Oracle will consider adding this capability.
    Thanks!

    More on my previous questions:
    Since I posted my previous question, I have read on the 1.0.3 online help that we can define remote crawlers to crawl "on a remote machine other than the Oracle Ultra Search database". So I assume this is how to make US to search on other servers. In the online documentation it also includes the following paragraph on "Remote Crawler Profiles Page":
    "Use this page to view and edit remote crawler profiles. A remote crawler profile consists of all parameters needed to run the Ultra Search crawler on a remote machine other than the Oracle Ultra Search database. A remote crawler profile is identified by the hostname. The profile includes the cache, log, and mail directories that the remote crawler shares with the database machine. "
    The Remote Crawler Profiles Page, however, displays only remote crawlers already defined and the page seems to be used just for editing the porfiles of these defined remote crawlers.
    My questions:
    (1) How do I create the remote crawlers and defines the profiles in the first place?
    (2) Where can I find more documentation on remote crawlers?
    (3) Once the remote crawlers are set up, how do I specify the file URLs for each remote crawler?
    (4) With US9.02 or 9.2, does remote crawler work the same as in 1.0.3, or are there any enhancements?
    Thanks!

  • Pages does not support some languages

    I use the iPad in two major languages: English and Hebrew.
    Although I have Hebrew support on the Ipad and having no trouble with it on mail etc,
    it seems that Pages corrupts word documents that have been written in Hebrew.
    Hebrew has been supported for decades on PCs OS.
    It is only natural to expect a Word App for the Ipad to do so, especially of one that is paid for.
    Is it too much to expect from an Apps developer these days?

    In these forums you are just talking to other users like yourself. The best place to tell Apple about fixes you want in Pages is here:
    http://www.apple.com/feedback/pages_ipad.html

  • My Photoshop does NOT support Arabic Language

    I had install the new software of Adobe Photoshop CS6 and it is not supporting the arabic Language.
    for example ; it is writing أ ح م د not أحمد like that !

    In the paragrah panel (Window > Paragraph), change the text direction.

  • Opera mini does not show any languages it show onl...

    after my c 7 update to belle refresh my opera mini languages show only box . I unistall opera mini and install again with opera latest version but problem are remain same..... Is there any solution

    Type opera:config in the address bar in your opera mini and connect.On the next screen, go to the last option which says "use bit map images for complex scripts" change this to yes. Scroll down and click save.DONE!Now type in the address you had an issue with and the page should load with proper letters instead of boxes.
    In Love With My C6-01:Now running on Nokia Belle!

  • Does Encoder support any way to burn in timecode?

    I currently use either Grinder or Compressor to burn in timecode for files that I share with my editing team.  I'm I missing a way to do this in Encoder CS6, or is this not supported?  Thanks in advance for any help offered!

    Currently you need to use Premiere Pro for this.  Would make a good feature request, though.
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Does BC support any type of include?

    We currently have/use 4 templates, but that is about to grow. We also have several catalogs, but that too will grow.
    All of these templates use the exact same header (menu) and footer.
    Every time I need to make a change to the header/menu/footer, I must make it in all 4 templates, and their stylesheets.
    Now we want to have a different template for each catalog in our store.
    I know I can make and assign different templates, one for each catalog, but that presents another issue. Since I currently have 4 templates, and each has it's own stylesheet, when I make a change to the header or footer, which is the same on all 4 templates, I must make that change in all 4 templates and all 4 stylesheets. That's a lot of work. If I have multiple templates for multiple catalogs, that work doubles for each new template.
    So if I have 20 catalogs and 20 templates, and need to change the menu in the header, then I have to make those changes in 40 places, 20 templates and 20 style sheets.
    Is there any way in BC to use something similar to PHP Includes? Or what about using Dreamweaver Library Objects? Is that possible or compatible?
    Thank you in advance.

    Content Holders.
    http://helpx.adobe.com/business-catalyst/using/create-insert-reusable-content.html

  • HT4637 Hi, does it support Arabic language; text and numerals?

    I have just purchased a macbook pro, first time to switch from a PC. I am really impressed wirh the overall experience of my new powerhouse with one MAJOR drawback; the Arabic Text and numeral support within the microsoft office package of applicatIons. I tried the openoffice package, and althought it partially solved the problem, yet I still suffer from compatability issues, be it with old microsoft office files that I already have or even newly created ones. So i figured maybe I should turn to Apple's native software packages,since I know that the laptop itself supports Arabic, so then maybe the problem would be inherant to the microsoft for Mac. Can anyone help me whether this assumption is true or not, and which spread sheet and text editor software should I choose to have full and compatible support for Arabic text and numerals typing. Thx

    No version of MS Word for OS X has ever supported Arabic.
    Unfortunately Apple's iWork apps also have bugs that make them unsuitable for Arabic for most people.
    The best text editor is Mellel, but TextEdit, Nisus Writer, and OpenOffice normally work OK.
    As for compatibility with Windows stuff, perfection sometimes just not possible, and if you really need that, you may need to run Windows on your Mac.

  • Dolby Digital Encoder Does Not Support Any Encoding Options

    Is it just me, or are there no encoding options for the Dolby Digital encoder other than the bitrate?
    How are you supposed to select the dialog normalization, dynamic range compression profile, etc. for your audio? Without these parameters set correctly, the audio will not be encoded correctly.

    @jbowden:
    > Adobe licenses the AC3 encoder that Encore uses from Dolby Laboratories. This is stated quite clearly in the splash screen, the box, and other materials distributed with Encore.
    I didn't say otherwise. But what they license is the code, not the implementation. Implementations are supposed to be submitted to Dolby for approval, and I'm surprised that Dolby approved the implementation given the oversights and encoding quality.
    > It's a consumer-level encoder, and if you look around this forum I think you'll find very few posts about audio quality, which would seem to indicate that Encore provides acceptable audio quality for most users. Cases with audible clipping can occur if the input signal is too high...keeping your audio signal around -6db should eliminate any clipping.
    I don't buy into this whole argument about "consumer-level" and "professional-level". What is the exact difference? Dolby's code is constant across all licensed encoders, so any differences in encoding are the result of an implementation difference, and that's Adobe's fault, not Dolby's.
    Audio signals are audio signals. Why do I have to keep my audio from peaking above -6dB with the Adobe encoder? I can take audio whose peaks go all the way up to 0dB and encode it with the Sonic Foundry encoder with no problem -- no clipping, no volume pumping, etc. Not so with Adobe Encore's implementation.
    @Neil Wilkes:
    > As far as Dialnorm goes, again I say it is pretty meaningless in a stereo file.
    Dolby's encoding guidelines documents seem to say otherwise. In my readings, it seemed pretty clear that the decoder must have the dialnorm parameter set to the LAeq level of the dialog in the audio regardless of channel configuration.
    > I suppose, although as long as the stereo mix is actually set up correctly there is no need to invoke DRC. The only time DRC would be needed on a stereo file is if the thing is too darn loud.
    I have to disagree with this. There is a LOT of material that can benefit from DRC, both soundtracks that contain a large dynamic range (explosions to whispers), and soundtracks that have small dynamic range (speech). DRC doesn't have anything to do with the overall volume level of the soundtrack, but the dynamic range of the soundtrack. If the soundtrack is too loud overall, that's not a DRC problem, that's a level problem.
    > In a properly balanced stereo file, there is no need at all for DRC or Dialnorm. There is no centre channel containing dialogue, just a phantom centre, so what are you going to reference it to, please? How can you attenuate the left/right channels with reference to the centre channel dialogue when there is no centre channel present?
    Just because the dialog isn't isolated in the center channel doesn't mean you can't use it to set the dialnorm parameter. Plus, the decoder doesn't attenuate the left/right channels with reference to the center channel, it attenuates the entire soundtrack on playback.
    Your quote from Dolby labs is very correct. Following that procedure ensures that the decoder, when it applies attenuation based on dialnorm and applies DRC will work as intended.
    > Additionally, it is not referenced to average RMS either. RMS is close to the correct way to measure, but not correct.
    That is true. However, I don't have any equipment to measure LAeq directly, so RMS of a dialog section of my audio will have to do. I do know this: When I applied to Dolby for logo usage on my DVDs, they requested samples of my DVDs for approval of my methods. My first submissions (where I didn't bother with dialnorm & DRC) were rejected, and Dolby sent me a letter telling me such. After I produced further DVDs using my method in my Doom9 post and resubmitted the DVDs to Dolby, they were approved. I can only conclude that my method, while not perfectly accurate, is good enough to qualify for Dolby's rigorous standards.
    The bottom line is that I feel I have enough evidence to conclude that the DD encoder implementation in Encore is substandard. If you or anyone else feels it meets your requirements, then use it. But I for one will not allow a single DVD to go out from my company with audio encoded with this encoder.

  • Does wsdp support any other webserver other than tomcat?

    I developed a small jsp sample using wsdp in tomcat webserver. It is working fine in tomcat webserver but when I tried to use the same jsp in other webservers like iPlanet and servletExec I'm getting a NullPointerException.
    The NullPointerException might be thrown because of two reasons either the Soap Response is not returned by the web service or the parser is not able to parse the Soap Response. In anyways if tomcat works, so why cant other webservers work.
    Does anyone tried using wsdp with iPlanet WebServer or anyother webservers?
    -Saravan

    I have used Weblogic 6.1 and it works fine..

Maybe you are looking for

  • How do i move photos from event to album?

    I cannot figure out how to move photos in iphoto from events to a new album, and did not find any answer in iphoto help.  I have a lot of files that I'd like to drag and drop if it is possible to do that.  I am using iphoto 2010.  Also, is there a ke

  • Error message when opening Outlook: The operation failed. The messaging interfaces have returned an unknown error. If the problem persists, restart Outlook.

    In an Exchange 2010 server/Outlook 2013 environment, one of our users is getting an error message every time they start Outlook. The error message says: "The operation failed. The messaging interfaces have returned an unknown error. If the problem pe

  • JTable in Form

    Dear friends I searched how can I make a gride (like excel gride) in oracle form and I'll have the followin control : sort on column , resize column and move column between eachother, then I read I must use JTable with Bean Area in oracle form( I'm n

  • C3-00 = Problem with Communities

    Hello, ich have a problem with Comunities. I can`t log in to my Facebook Profile. The e-mail adress and passwort are correct. I see de Facebook mask and the next second a mistake. I have the same problem with Snaptu. Can somebody help me? Sorry for m

  • Java.lang.NoSuchMethodError with JDeveloepr 10g

    HI, I have a problem with java.lang.NoSuchMethodError in Jdeveloper 10g. The code works fine in Jdeveloper 9iAS. I just migrated them to 10g. Here is the error: java.lang.NoSuchMethodError: java.util.ArrayList com.ncilp.intranet.CourseHelperBean.getA