Package org.uberfire.client.common

Examples of org.uberfire.client.common.ResizableTextArea


    public JarDetailEditor(String pomInfo) {
        super(ImageResources.INSTANCE.modelLarge(),
               "Jar details" );

        ResizableTextArea pomInfoTextArea = new ResizableTextArea();
        pomInfoTextArea.setText(pomInfo);
        pomInfoTextArea.setEnabled(false);
        pomInfoTextArea.setSize("700px", "500px");
       
        addAttribute( "", pomInfoTextArea);
/*        addAttribute( "Artifact info:", new HTML(""));
        addAttribute( "Dependency info:", new HTML(""));*/

 
View Full Code Here


    public JarDetailEditor(String pomInfo) {
        super(ImageResources.INSTANCE.modelLarge(),
               "Jar details" );

        ResizableTextArea pomInfoTextArea = new ResizableTextArea();
        pomInfoTextArea.setText(pomInfo);
        pomInfoTextArea.setReadOnly(true);
        pomInfoTextArea.setSize("700px", "500px");
       
        addAttribute( "", pomInfoTextArea);
/*        addAttribute( "Artifact info:", new HTML(""));
        addAttribute( "Dependency info:", new HTML(""));*/

 
View Full Code Here

TOP

Related Classes of org.uberfire.client.common.ResizableTextArea

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.