Package

Source Code of FormLayout

import org.swixml.SwingEngine;

/**
* The Layout class shows the use of layout managers
*
* @author <a href="mailto:wolf@paulus.com">Wolf Paulus</a>
* @version $Revision: 1.1 $
*
* @since swixml (#151)
*/
public class FormLayout {
  private static final String DESCRIPTOR = "xml/formlayout.xml";

  private FormLayout() throws Exception {
    new SwingEngine( this ).render( FormLayout.DESCRIPTOR ).setVisible( true );
  }

  public static void main( String[] args ) {
    try {
      new FormLayout();
    } catch (Exception e) {
      System.err.println( e.getMessage() );
    }
  }
}
TOP

Related Classes of FormLayout

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.