Package org.jboss.as.cli.gui.component

Examples of org.jboss.as.cli.gui.component.WordWrapLabel


        Container contentPane = getContentPane();
        contentPane.setLayout(new BorderLayout(10, 10));

        // the html table allows word wrap and constant max width
        JLabel opDescription = new WordWrapLabel(strDescription, 400);
        JPanel opDescPanel = new JPanel();
        opDescPanel.add(opDescription);
        contentPane.add(opDescPanel, BorderLayout.NORTH);

        contentPane.add(makeInputPanel(), BorderLayout.CENTER);
View Full Code Here

TOP

Related Classes of org.jboss.as.cli.gui.component.WordWrapLabel

Copyright © 2018 www.massapicom. 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.