Package org.pentaho.mantle.client.ui.xul

Examples of org.pentaho.mantle.client.ui.xul.JsXulOverlay


            // will need to iterate over jsoverlays and convert to MantleXulOverlay
            ArrayList<XulOverlay> overlays = new ArrayList<XulOverlay>();
            if ( jsperspective.getOverlays() != null ) {
              for ( int j = 0; j < jsperspective.getOverlays().length(); j++ ) {
                JsXulOverlay o = jsperspective.getOverlays().get( j );
                MantleXulOverlay overlay =
                    new MantleXulOverlay( o.getId(), o.getOverlayUri(), o.getSource(), o.getResourceBundleUri() );
                overlays.add( overlay );
              }
            }
            perspective.setOverlays( overlays );
View Full Code Here

TOP

Related Classes of org.pentaho.mantle.client.ui.xul.JsXulOverlay

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.