1 11 package org.eclipse.swt.custom; 12 13 class SashFormData { 14 15 long weight; 16 17 String getName () { 18 String string = getClass ().getName (); 19 int index = string.lastIndexOf ('.'); 20 if (index == -1) return string; 21 return string.substring (index + 1, string.length ()); 22 } 23 24 30 public String toString () { 31 return getName()+" {weight="+weight+"}"; } 33 } 34 | Popular Tags |