Domanda

I am trying to find out whether NetBeans v7.1 can fold everything in a Java class except:

  • class name
  • member names
  • method names

So this simple class:

public class Example {
  private int someValue;
  public Example() {
    // Constructor logic
  }

  public void doSomething() {
    // method body
  }
}

Would fold into:

public class Example {
  private int someValue;
  public Example() { }
  public void doSomething() { }
}

Do you know any Java IDE that can do this? If so please let me know which one.

È stato utile?

Soluzione

Ok,

just type ctrl + shift + -

This should do the trick for you

Altri suggerimenti

Go to the Navigator window and start typing the method name you seek. The method will be automatically selected in the Navigator tree, just then hitting that Netbeans will position the cursor in the method definition in the code editor window. If the Navigator window is not displayed you can turn in on using "Window -> Navigating -> Navigator" (or press Ctrl-7)

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top