001    /**
002     * For testing interface variables are final and static
003     * 
004     * @author Kristian Torp, torp (at) cs (dot) aau (dot) dk
005     * @version 1.0
006     */
007    public interface TestInterface {
008            int x = 34; // cannot be compiled without being assigned a value
009    
010            int getX();
011    }