about summary refs log tree commit diff stats
path: root/dwm.h
Commit message (Expand)AuthorAgeFilesLines
* fifififarg@mig292006-11-221-1/+1
* applied Gottox' windowarea patcharg@mig292006-11-161-0/+1
* renamed resizecol into resizemaster 2.1arg@mig292006-10-311-1/+1
* applied sanders try2 patcharg@mig292006-10-2
import java.util.Random;

class StaticExample {
    private static int objectCount = 0;
    static int getObjectCount() { return objectCount; }
    static {
        System.out.println("Executing static block in StaticExample");
    }
    StaticExample() {
        if (objectCount == 0)
            System.out.println("Executing StaticExample constructor for the first time");
        objectCount++;
    }
}

class StaticExecution {
    static {
        System.out.println("Executing static block in StaticExecution");
    }
    public static void main(String args[]) {
        System.out.println("Executing static main method in StaticExecution");
        int c = new Random().nextInt(10) + 1;
        for (int i = 0; i < c; i++) {
            var ex = new StaticExample();
        }
        System.out.println("The number of objects of StaticExample created: " +
            StaticExample.getObjectCount());
    }
}
200'>2006-09-06
1-1/+1
* renamed resizetile into resizecolAnselm R. Garbe2006-09-051-1/+1
* s/growcol/resizetile/gAnselm R. Garbe2006-09-051-1/+1
* I really need column growing, now pushing upstreamAnselm R. Garbe2006-09-051-0/+1
* applied Sanders max_and_focus.patchAnselm R. Garbe2006-09-041-2/+1
* added viewall to mainstream (only Ross Mohns version, not the toggle)Anselm R. Garbe2006-08-311-0/+1
* still something wrong with reorder()Anselm R. Garbe2006-08-291-2/+1
* added attach/detach functions which don't attach at the begin of list, but at...Anselm R. Garbe2006-08-291-0/+2
* trying a different configurationAnselm R. Garbe2006-08-251-2/+2
* new color stuff/new rendering stuffAnselm R. Garbe2006-08-251-4/+7
* back to 3 colorsAnselm R. Garbe2006-08-251-2/+3
* 3->4 colorsAnselm R. Garbe2006-08-241-3/+2
* updated man pageAnselm R. Garbe2006-08-231-1/+1
* separated setup stuff into main.c:setup() - this makes main() more readableAnselm R. Garbe2006-08-231-12/+8
* separated several functions into view.cAnselm R. Garbe2006-08-221-10/+12
* changed main event loopAnselm R.Garbe2006-08-151-0/+1
* removed NUMLOCKMASK, added dynamically calculated numlockmask insteadAnselm R.Garbe2006-08-141-1/+1