So, it seems like those one letter application names are becoming way too popular, but if we must deal with them, what would be the conventional way to name a Java class?
Note : we are not talking about interfaces/implementations convention names but uses of application names in code, like iCode, jQuery, eSomething, etc.
For example, which variation would be correct, or atleast is more often found in the real world.
public class ICode..
..
public class iCode..
..
public class Icode..
Iif your code is a library or framework. Most people infer theIto mean an interface, unless you plan on it being an interface. In that case, I refer you to @LumpN's comment. – Jeremy Heiler Mar 30 '11 at 16:53