Table table = new Table();
table.setWidth(50, Unit.PERCENTAGE);
table.setHeight(50, Unit.PERCENTAGE);
table.setId("halfwithtiny-table");
absoluteLayout.addComponent(table);
Table tableTiny = new Table();
tableTiny.setWidth(50, Unit.PIXELS);
tableTiny.setHeight(50, Unit.PIXELS);
absoluteLayout.addComponent(tableTiny, "right:50;");