final TextBox nameField = new TextBox();
nameField.setText( "GWT User" );
final Label errorLabel = new Label();
// We can add style names to widgets
sendButton.addStyleName( "sendButton" );
// Add the nameField and sendButton to the RootPanel
// Use RootPanel.get() to get the entire body element
RootPanel.get( "nameFieldContainer" ).add( nameField );
RootPanel.get( "sendButtonContainer" ).add( sendButton );