view test/cedet/tests/scopetest.java @ 106417:8374ccacc79a

(Displaying the Diary): Holidays may be in the buffer or mode line. Don't mention invisible text or the details of diary-print-entries here, only in cal-xtra. (Format of Diary File): Mention that the "date on first line" format only really affects the simple display.
author Glenn Morris <rgm@gnu.org>
date Sat, 05 Dec 2009 03:08:30 +0000
parents e480034314ce
children
line wrap: on
line source

class Foo {

   public void a1() {}

   class Bar {

     public int a2() {}

     public void b() {
	 a   // -1-
     }

     class Baz {

       public int a3() {}

       public Baz(int a4) {
	   a  // -2-
       }

     }

   }

}