00001 package jpl.util; 00002 00003 public class Overload2 00004 { 00005 // experiment (why not read the language reference?) 00006 public static int fred; 00007 public static int fred() 00008 { 00009 return fred; 00010 } 00011 } 00012 00013