Line tools NetBeans plugin

September 19th, 2007 Posted in Home 2 Comments »

I don’t like overloading my IDE with a bunch of plugins, but this is a must-have for my NetBeans. I use it everyday to copy and paste lines of text without using CTRL-C CTRL-V. This is its official description:

Line Tools Support following operations in text editors: 1. Move Line (or lines spanned by selection) Up 2. Move Line (or lines spanned by selection) Down 3. Copy Line (or lines spanned

AddThis Social Bookmark Button

JAVA overloaded

September 15th, 2007 Posted in Home No Comments »

JAVA is now the stock symbol for Sun, replacing SUNW. This word JAVA has become more overloaded, and can mean at least 3 things: (1) the Java programming language; (2) the Java Island in Indonesia; and (3) the stock symbol for Sun Microsystems.

So every time you google “java”, you will have more mixed results to filter out. Unfortunately, the first match by google and msn is the stock chart of

AddThis Social Bookmark Button

Java class extends clause comes before implements clause

August 11th, 2007 Posted in Home No Comments »

The following class failed to compile with either JDK 5 or 6:import java.io.Serializable;

public class ImplementsExtendsOrder implements Serializable extends Object {
}

—————
\jdk6\bin\javac ImplementsExtendsOrder.java
ImplementsExtendsOrder.java:7: ‘{’ expected
public class ImplementsExtendsOrder implements Serializable extends Object {

AddThis Social Bookmark Button