LayoutManagers: Constraints
BorderLayout then appends constraint information on all components, e.g.:
this.setLayout (new BorderLayout());
Button e = new Button (“East”);
Button w = new Button (“West”);
Button n = new Button (“North”);
add(e, “East”); // deprecated
add(“West”, w); // works; deprecated
//add(n, BorderLayout.NORTH); // better