/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package x; // EXPLICIT IMPORTS import a.b.C1; // GOOD import a.b.C2; import a.b.C3; // DO NOT WRITE import a.b.*; // BAD // DO NOT USE "TAB" TO INDENT CODE USE *3* SPACES FOR PORTABILITY AMONG EDITORS /** * * * @see * @author {full name}. * @author Marc Fleury * @version $Revision: 1.7 $ * *

Revisions: * *

yyyymmdd author: *

* eg: *

20010516 marc fleury: *

*/ public interface X extends Y { int MY_STATIC_FINAL_VALUE = 57; ReturnClass doSomething() throws ExceptionA, ExceptionB; }