Is there an tool for automatic re-indent source code ?

Hi
Where could i found an Tool for automatically indenting source code ?
Regards
Philippe

Jdev can do this as well. Select the class you want to re-indent in application navigator, and select Reformat (or use shortcut Ctrl-Alt-L). Your code is re-indented and formated according to code-style defined in preferences.

Similar Messages

  • Is there any tool for developing Postscript code ?

    Hi Friends,
    Is there any tool for developing Postscript code ? (or)
    Is there any IDE for Postscript ? (or)
    Thanks & Regards,
    Navaneeth Sivappan

    Hi Navaneeth,
    > is there any tool for developing Postscript code ?
    An interpreter (GS or Dist), an ascii text editor and your PS skills ;-)
    > is there any IDE for Postscript ?
    Take a look in this Sourceforge project...
    http://sourceforge.net/projects/wxghostscript/
    ...is a Ghostscript debugger.
    MaRC anToni Malagarriga i Picas
    T·(34)938721642 | (34)667517069
    (][ www.femfum.com
    PostScript&PDF Tool Developers
    Desenvolupadors d'Eines PostScript i PDF

  • Are there any tools for data encryption and decryption ?

    Hi,
    i am using oracle 9i R2, i want encrypt my data. Are there any tools available in market.
    Please let me know the ways to do data encryption and decryption.
    Thanks in advance
    Prasuna.

    970489 wrote:
    using DBMS_OBFUSCATION_TOOLKIT.Encrypt /DESEncrypt we can't secure our password...So i am looking for an another alternative.As Blue Shadow said, what are you really trying to achieve?
    Encrypting a password is itself not secure. Anything that can be encrypted can be decrypted. That is why Oracle itself DOES NOT encrypt passwords.
    Surprised??
    Here's what Oracle does with passwords, and what others should be doing if they have to store them.
    When the password is created, the presented password - clear text - is concatenated with the username. The resulting character string is then passed through a one-way hashing function. It is that hashed value that is stored. Then when a user presents his credentials to log on to the system, the presented credentials are combined and hashed in the same manner as when the password was created, and the resulting hash value compared to the stored value.

  • Is there a tool for automated GUI feeding?

    Hi!
    I did not find a better place for this question:
    Let's assume that I have a running Java GUI, is there any tool to access the GUI elements, i.e. to connect to a running GUI (from another script or program), push buttons and fill in text to text fields and so on?
    I would like to perform automated tests..
    Best regards

    Hello,
    You can use the freeware tool Marathon. It is a nice tool which can be used for automated testing. It also has a script recorder. The script is in jython which makes our job easier.
    You can find this at,
    http://marathonman.sourceforge.net/
    Ranga.

  • Can I port labview 3.1.1 to latest ver 8.x is there a tool for this

    Is there a tool to port a labview 3.1.1 app to latest ver 8.x

    LV 8.x allows us to open any VI that is built using LV 6.x & upwards. So, you ve to convert them to an intermediate version like 6.x or 7.x & then you can open them in LV 8.x.
    AFAIK, there is no toolkit available for this purpose.
    Maybe you can contact someone in NI to do this for you.
    - Partha
    LabVIEW - Wires that catch bugs!

  • Is there any Tools for Code coverage for SQL Azure Database projects

    I need to capture data base code coverage for all the manual and automated test. this is for Azure DB, is there any tools available for the same? Please advise

    Hi,
    In order to code coverage for SQL Azure, use Microsoft Test Manager.
    This Link helps you in understanding and step by step procedures for manual testing.
    http://msdn.microsoft.com/en-us/library/vstudio/hh698492(v=vs.110).aspx
    Along with the above link also refer to
    http://msdn.microsoft.com/en-us/library/jj156172.aspx
    http://msdn.microsoft.com/en-us/library/jj156144.aspx
    Girish Prajwal

  • Any way to search for casts in java source code?

    Anyone know of a decent way to search your java source files to find all the casts?
    I ended up doing a simple text search for
         " = ("(quote marks not included) which works for my code because I am strict about writing my casts with spaces like
         String s = (String) iterator.next();Unfortunately, the above search has all kinds of problems with both false positives and negatives. It picks up lots of irrelevant lines like
         int index = (number > 0) ? 0 : 1;as well as misses casts that appear nested inside expressions like
         ((String) iter.next()).charAt(...)I suppose that one could do a regular expression search for any pair of open and close parens which bound non-blank text, but that would pick up even more non-cast expressions in typical java code.
    I think that the only way to properly do this is to have a tool which understands java syntax.
    Anyone know of an IDE which will do this? Does IntelliJ or Netbeans support this kind of search?
    In case you are wondering why I am interested in this, it is because I am refactoring some code to fully use generics, and searching for casts is one source of identifying candidates for genericity.

    cliffblob wrote:
    Better late than never?Yes!
    cliffblob wrote:
    ...The answer I found to ID unnecessary casts was, using Eclipse IDE, In compiler error and warning preferences to warn on unnecessary casts.Thanks for pointing IDEs out. I just opened IntelliJ, and going back to at least version 7.04 (maybe earlier) they have an inspection for "Redundant type cast".
    cliffblob wrote:
    I would still be interested to know if there is a way to identify casts in general in your source, perhaps now four years later there is a way?The only solutions that I can think of are either a complicated regex search, or you must use some tool like an IDE that understand Java syntax and can determine if a cast is happening.

  • Help me for coice over ip source code

    hi, i have a source code for a project security for voip i can't exucute this project because com.ibm.media.codec.audio.AudioCodec, com.sun.media.BasicPlugIn; javax.media.*; javax.media.format.AudioFormat; java.security.*, java.security.spec.*; don't exist in jbuilder 6 idon't no the good jdk for this package
    please help me.

    Hi,
    i m chirag and i m intrest in new tech like voip so can u help me out for that.

  • Is there any tools for move messages from errorqueues in WLS 8.1.5?

    Hello!
              I have created a JMSDestination (MyQueue) in my wls 8.1.5.
              I have also created an other JMSDestination (MyErrorQueue) in my wls 8.1.5.
              In the wls it is possible to specify an "Error Destination:" for a JMSDestination. In my wls I have specified MyErrorQueue as error destination for MyQueue.
              If anything goes wrong during consuming message from MyQueue the message will be moved to the error destination MyErrorQueue.
              If this situation ever occur, for eg. there is a cable connection loss or something. The error destination will save me alot of trouble.
              Very nice!
              But now I wonder if there is any tool or function i wls 8.1.5 that helps me move the message back to MyQueue from the error destination, MyErrorQueue, when the problem is solved.? For eg, when the broken cable is replaced.
              Or do I have to write such a application my self? Seems strange since the concept of error destination exists.
              Best regards
              Fredrik

    Have a look at this
              http://www.hermesjms.com/confluence/display/HJMS/Home
              We use it and it works very well for handling messages on error queues.
              Some messages we automatically re-queue using a modified version of this
              code here
              https://codesamples.projects.dev2dev.bea.com/servlets/Scarab/remcurreport/true/template/ViewIssue.vm/id/S134/eventsubmit_dosetissueview/foo/resultpos/1/nbrresults/285/action/ViewIssue/tab/2/readonly/true
              Hope that helps.
              Pete
              Fredrik Andersson wrote:
              > Hello!
              >
              > I have created a JMSDestination (MyQueue) in my wls 8.1.5.
              > I have also created an other JMSDestination (MyErrorQueue) in my wls 8.1.5.
              >
              > In the wls it is possible to specify an "Error Destination:" for a JMSDestination. In my wls I have specified MyErrorQueue as error destination for MyQueue.
              >
              > If anything goes wrong during consuming message from MyQueue the message will be moved to the error destination MyErrorQueue.
              >
              > If this situation ever occur, for eg. there is a cable connection loss or something. The error destination will save me alot of trouble.
              >
              > Very nice!
              >
              > But now I wonder if there is any tool or function i wls 8.1.5 that helps me move the message back to MyQueue from the error destination, MyErrorQueue, when the problem is solved.? For eg, when the broken cable is replaced.
              >
              > Or do I have to write such a application my self? Seems strange since the concept of error destination exists.
              >
              > Best regards
              > Fredrik

  • Sending Premiere Pro sequence to Pro Tools for automatic audio conforming

    I’m looking to implement an online-offline workflow at my production company, and I’m trying to figure out if it’s feasible to send a sequence from Premiere Pro to Pro Tools with enough metadata to take advantage of Pro Tools’ automatic conforming feature.
    Premiere Pro or Audition doesn't seem to have any kind of feature like this, so I’m turning to Pro Tools. Here’s a demonstration of the feature from Avid: http://youtu.be/Gz9e9LuIdXU
    For color grading, we’re already sending XML from Premiere Pro into DaVinci Resolve, and DaVinci Resolve perfectly automatically conforms the offline proxies to online high-quality clips suitable for grading. I’m trying to accomplish the same thing with the audio clips to prepare a sequence for sound mixing. The offline proxies in a sequence contain only compressed stereo tracks, but online audio clips have all of the separate uncompressed tracks for each microphone.
    My initial thought was that, before any offline editing occurs, I might, in the Premiere Pro Metadata panel, add the names of the sound rolls to all the offline proxies in the “Tape Name” field.
    I’m wondering if that metadata for those clips in the Premiere Pro Project Panel are included in an EDL that would be exported out of Premiere Pro, so that Pro Tools would know how to correctly choose online audio clips.
    I know EDLs contain timecode, and that seems like it would be sufficient for Pro Tools, if production only occurred within one day. However, if there are audio clips recorded on different days, at the same time of day, some audio clips in a sequence would have identical timecode, and Pro Tools wouldn’t know which clip to automatically conform. It seems like Pro Tools would choose which clip to conform by first looking at timecode, and then if there were multiple clips with the same timecode, it would resolve the conflict by identifying the specific sound roll. This is why it seems important to have the sound roll metadata included in the EDL out of Premiere Pro.
    EdiLoad looks like software that might be able to batch update sound roll metadata for an EDL already exported out of Premiere, but I’m not sure.
    http://www.soundsinsync.com/products/ediload
    Manually going through Pro Tools and assigning correct sound rolls in a picture-locked cut wouldn’t really be an improvement over manually conforming. If I have to go through a cut and locate online audio clips, I might as well just conform manually.
    So my questions are:
    When exporting an EDL out of Premiere, does the EDL include “Tape Name” metadata for Pro Tools to read as a sound roll? If not, is there another format I could use that would make this round-trip feasible?
    If not, does anyone have experience with EdiLoad? Would EdiLoad work to do what I'm trying to do?
    Is there any other way to accomplish automatic conforming, or something else that I'm missing?
    -- Seth.

    See if this helps.
    FAQ: Why are some codecs and sequence presets missing from my installation of Premiere Pro?

  • XMP Standard - Is there a tool for non-professionals to handle PDF files for free?

    I'd like to start organising my various files and I wonder if I could include PDF files into the process (it seems easier with graphics), possibly also some video or audio files in the future. I hope there's a tool, not onle for IT specialists to handle it and some clear video/document tutorial to assist.
    Waiting  for your advice !
    Darek, Poland

    As I mentioned on the other thread, the forms need to be
    flattened. CFPDF cannot flatten LiveCycle forms, only Acrobat
    Forms. The suggested solution was to use LiveCycle ES
    http://www.adobeforums.com/webx/.3c052176

  • Is there a tool for identifying style-ized properties/attributes in mxml

    Hello Everyone,
    With FlashBuilder it is quite easy to work within the mxml file due to the code completion feature. The same holds true when I try to use code completion for any css files that I'm including in my flex apllication. But often enough, without switching to a css file and trying to type out the name of a property and seeing if there is a code completion for it ... I don't know which of the properties can be moved to style sheets and which can not. I could ofcourse refer to the docs but that is an even slower process.
    Does adobe or any one out there on the web (that you know of) offer a tool to look over all the *.mxml files and spit out a list of all the attributes/properties that one could afford to move-out into style sheets?
    Thanks!

    OK, I've got to go see if I can find the definition for "*" in the stylesheet(s).  I'll bet it's in layout.css and I just missed it.
    Thanks.
    H

  • Please, tool for automatic java source conversion?

    Hi,
    Apart from Sun's jilkit, do you know a software a software that could take the
    first java source below as input and automatically produce:
         1) a converted java source file similar to the second file below;
         2) resource files (e.g. mess.properties, mess_es_MX.properties, mess_fr_CA.properties) .
    We know that Sun's jilkit does this but we tried it and it is buggy and
    Sun no more supports it.
    // INPUT FILE
    import java.util.*;
    public class Test
    public static void main(String args[])
    System.out.println("Hello world!");
    System.out.println("You must Walk from " + args[0] + " to " + args[1] + "Km");
    // OUTPUT FILE, we want this done automatically
    import java.util.*;
    public class Test
    public static ResourceBundle resourceBundle = ResourceBundle.getBundle("messages");
    public static void main(String args[])
    System.out.println(resourceBundle.getString("Hello world!"));
    System.out.println(
    java.text.MessageFormat.format(
    resourceBundle.getString("Walk from {0} to {1}Km"),
    new String[]{"" + args[0], "" + args[1]}
    }

    The javadoc tool has no such capability. I believe some IDEs have
    this, but don't know which ones. You could also look at these places:
    http://java.sun.com/j2se/javadoc/faq/#docletsfromthirdparties
    http://doclet.com
    If you find a good tool, you might mention it here for others.
    cheers,
    -Doug

  • Is there a tool for identifying locks?

    Hi,
    I was wondering if there is a tool (software or something, even a profiler maybe) that knows to tell me if a method is "stuck" because it is waiting for a resource to be available?
    Thanks,
    Snayit

    JConsole can help. It's included in the 1.5 JDK.
    Run your program with -Dcom.sun.management.jmxremote Then JConsole can attach to it. If you click on the threads listed on the second pane it will given you details of their status.

  • Is there a tool for Lightroom to apply lens and camera corrections as easily as with DxO?

    DxO is great, but there is something unfixably wrong in the combination of DxO and Photoshop since i installed the plugin, which is jamming Photoshop or Windows. I got my money back, but the tools in Lightroom and Photoshop are not so good and fast as in DxO. Am i maybe missing some great plugin, or some automatic lens correction function?
    Thanks!

    LR has lens profiles and automatic CA removal, and you can choose to enable them by default, if you wish.

Maybe you are looking for

  • Web Start and Web Application

    I have a scenario as given below. I have a Central Server hosting a web application(JSPs, jars) in Jetty 6.0.0. I have many branch servers having Jetty 6.0.0 installed and the web application deployed. Now, I want to update the web application on all

  • How do I merge my itunes folders from two user accounts on one computer?

    I've made purchases from audible.com and on itunes from two different user accounts on my home computer.  When I try to sync my itouch with my library I am missing the purchases I made from the other user account.  How can I merge these together so i

  • How do I transfer purchases from older Apple ID to new Apple ID?

    When I changed my email address, I created a new Apple ID with my new email address.  Now, whenever I want to update any of the apps in my iPhone via iTunes it asks for my old Apple ID (which was the same as my old email address).  I've since forgott

  • Windows Storage Server 2008 R2 Using 4TB hard disk

    Hi, I have a HP X1600 G2, then I bought 12 x 4TB hard disk for increasing the disk space for this unit. What I want to do is using the hardware array to configure the following: 3 x 4TB RAID-5 plus 1 Spare to create 3 Logical Drives. Then Spanned set

  • Default namespace in the SOAP sender adapter

    Hi All! Sorry for the following really easy question but what is the default interface name and default namespace in the SOAP sender Adapater? The name of the interface to where the adapter should forward the received SAOP message? it means that for