package org.freertr.tab; /** * one sorted, synchronized list * * @param type of elements in the list * @author matecsaba */ public final class tabGen> extends tabGenV2 { /** * create one generic table */ public tabGen() { super(); } /** * clone one generic table * * @param old where from copy */ public tabGen(tabGen old) { super(old); } }