1 package org.projectlombok.test; 2 3 /** 4 * A useful interface 5 */ 6 public interface Useful { 7 void doSomething (); 8 } 9