Package rex.xmla

Examples of rex.xmla.XMLADiscoverProperties


      }
      if(obj==bCat)
      {
        ServerMetadata smd = new ServerMetadata(ur);
        XMLADiscoverRestrictions restrictions = XMLAObjectsFactory.newXMLADiscoverRestrictions();
        XMLADiscoverProperties   properties   = XMLAObjectsFactory.newXMLADiscoverProperties();
          properties.setDataSourceInfo((String)cmbDS.getSelectedItem());
        CatalogElement ds[]=(CatalogElement[])smd.getCatalogList(restrictions,properties);
        cmbCat.removeAllItems();
        for (int i = 0; i < ds.length; i++)
          {         
            cmbCat.addItem((ds[i].toString()).trim());
          }
        cmbCat.repaint();
      }
      if(obj==bCube)
      {
        ServerMetadata smd = new ServerMetadata(ur);
        XMLADiscoverRestrictions restrictions = XMLAObjectsFactory.newXMLADiscoverRestrictions();
        XMLADiscoverProperties   properties   = XMLAObjectsFactory.newXMLADiscoverProperties();
          properties.setDataSourceInfo((String)cmbDS.getSelectedItem());
          properties.setCatalog((String)cmbCat.getSelectedItem());
        DataSourceTreeElement ds[]=smd.getCubeList(restrictions,properties);
        cmbCube.removeAllItems();
        for (int i = 0; i < ds.length; i++)
          {  System.out.println(ds[i].toString());       
            cmbCube.addItem((ds[i].toString()));
View Full Code Here


   public static void main(String[] args){
      String url = JOptionPane.showInputDialog("Please input an Foodmart 2000 service URL", "http://localhost:8080/xmla/msxisapi.dll");
      ServerMetadata svm = new ServerMetadata( url);

      XMLADiscoverRestrictions restrictions =  XMLAObjectsFactory.newXMLADiscoverRestrictions();
      XMLADiscoverProperties   properties   =  XMLAObjectsFactory.newXMLADiscoverProperties();



      restrictions.setCatalog("Foodmart 2000");
      restrictions.setCubeName("Sales");


      properties.setDataSourceInfo("Local Analysis Server");
      properties.setCatalog("Foodmart 2000");
      properties.setFormat("Tabular");
      properties.setContent("SchemaData");



      JFrame frame = new JFrame("Test mdx editor");
View Full Code Here

         }
      }
   }
   public DataSourceTreeElement[] getChildren(){
      XMLADiscoverRestrictions restrictions = XMLAObjectsFactory.newXMLADiscoverRestrictions();
      XMLADiscoverProperties   properties   = XMLAObjectsFactory.newXMLADiscoverProperties();


      properties.setDataSourceInfo(dataSourceInfo);

      properties.setCatalog(catalogName);
      properties.setFormat("Tabular");
      properties.setContent("SchemaData");


      //S.out("callint parent.getCubeList with catalogName = " + catalogName);
      return parent.getCubeList(restrictions, properties);
   }
View Full Code Here

   public static void main(String[] args) {
     ServerMetadata svm = new ServerMetadata("http://localhost:8080/xmla/msxisapi.dll");

     XMLADiscoverRestrictions restrictions = XMLAObjectsFactory.newXMLADiscoverRestrictions();
     XMLADiscoverProperties   properties   = XMLAObjectsFactory.newXMLADiscoverProperties();


     restrictions.setCatalog("Foodmart 2000");
     restrictions.setCubeName("Sales");


     properties.setDataSourceInfo("Local Analysis Server");
     properties.setCatalog("Sales");
     properties.setFormat("Tabular");
     properties.setContent("SchemaData");



     // only cube element could have started an explore action:
     // (for the time being, if I find a meaning in exploring catalogs and datasources, I'll move those getCubeName annd getCatalogName to interface)
View Full Code Here

             // I'm constructing new restrictions and properties objects for
             // new tab (Dimension Tree) to take away with it.
             // Also, must pass a reference to ServerMetadata object, one object to rule them all

             XMLADiscoverRestrictions restrictions = XMLAObjectsFactory.newXMLADiscoverRestrictions();
             XMLADiscoverProperties   properties   = XMLAObjectsFactory.newXMLADiscoverProperties();

             // only cube element could have started an explore action:
             // (for the time being, if I find a meaning in exploring catalogs and datasources, I'll move those getCubeName annd getCatalogName to interface)
             CubeElement selectedItem = ((CubeElement)((TreeElement)(popUpSource.getPathComponent(popUpSource.getPathCount()-1))).getUserObject());



             restrictions.setCatalog(selectedItem.getCatalogName());
             restrictions.setCubeName(selectedItem.getCubeName());


             properties.setDataSourceInfo(selectedItem.getDataSourceInfo());
             properties.setCatalog(selectedItem.getCatalogName());
             properties.setFormat("Tabular");
             properties.setContent("SchemaData");

/**
  * Copyright (C) 2006 CINCOM SYSTEMS, INC.
  * All Rights Reserved
  * Copyright (C) 2006 Igor Mekterovic
  * All Rights Reserved
  */
             Viewer viewer = new Viewer(restrictions, properties, selectedItem.getServerMetaData(), (JTabbedPane)parent);
             
             // Go, my child, go, see the world...
             ((JTabbedPane)parent).addTab(
                          selectedItem.getCubeName()
                        , selectedItem.getIcon()
                        , viewer
                        , I18n.getString("toolTip.exploring") + selectedItem.getDataSourceInfo() + ":" + selectedItem.getCatalogName() + ":" + selectedItem.getCubeName());

             ((JTabbedPane)parent).setSelectedComponent(viewer);
             viewer = null;
  /* end of modification for I18n */


          }
           /**
  * Copyright (C) 2006 CINCOM SYSTEMS, INC.
  * All Rights Reserved
  * Copyright (C) 2006 Igor Mekterovic
  * All Rights Reserved
  */
       }else if(I18n.getString("menu.explore2").equals(e.getActionCommand())){ //sbalda
             /* end of modification for I18n */

          if (parent != null){
             // I'm constructing new restrictions and properties objects for
             // new tab (MdxEditor) to take away with it.
             // Also, must pass a reference to ServerMetadata object, one object to rule them all

             XMLADiscoverRestrictions restrictions = XMLAObjectsFactory.newXMLADiscoverRestrictions();
             XMLADiscoverProperties   properties   = XMLAObjectsFactory.newXMLADiscoverProperties();

             // only cube element could have started an explore action:
             // (for the time being, if I find a meaning in exploring catalogs and datasources, I'll move those getCubeName annd getCatalogName to interface)
             CubeElement selectedItem = ((CubeElement)((TreeElement)(popUpSource.getPathComponent(popUpSource.getPathCount()-1))).getUserObject());


             restrictions.setCatalog(selectedItem.getCatalogName());
             restrictions.setCubeName(selectedItem.getCubeName());


             properties.setDataSourceInfo(selectedItem.getDataSourceInfo());
             properties.setCatalog(selectedItem.getCatalogName());
             properties.setFormat("Tabular");
             properties.setContent("SchemaData");

/**
  * Copyright (C) 2006 CINCOM SYSTEMS, INC.
  * All Rights Reserved
  * Copyright (C) 2006 Igor Mekterovic
  * All Rights Reserved
  */

             MdxEditor editor = new MdxEditorrestrictions
                                                      , properties
                                                      , selectedItem.getServerMetaData()
                                                      , selectedItem.getCubeName(), (JTabbedPane)parent);

             ((JTabbedPane)parent).addTab(
                          selectedItem.getCubeName()
                        , selectedItem.getIcon()
                        , editor
                        , I18n.getString("toolTip.exploring"+ selectedItem.getDataSourceInfo() + ":" + selectedItem.getCatalogName() + ":" + selectedItem.getCubeName());

             //To automatically select the tab. Cincom Systems, Inc. March 2009 by Jules Grengbondai.
           ((JTabbedPane)parent).setSelectedComponent(editor);
           editor = null;
  /* end of modification for I18n */



          }
         
           /**
          * Copyright (C) 2006 CINCOM SYSTEMS, INC.
          * All Rights Reserved
          * Copyright (C) 2006 Igor Mekterovic
          * All Rights Reserved
          */
         }else if(I18n.getString("menu.explore3").equals(e.getActionCommand())){ //sbalda
             /* end of modification for I18n */

          if (parent != null){
             // I'm constructing new restrictions and properties objects for
             // new tab (MdxEditor) to take away with it.
             // Also, must pass a reference to ServerMetadata object, one object to rule them all

             XMLADiscoverRestrictions restrictions = XMLAObjectsFactory.newXMLADiscoverRestrictions();
             XMLADiscoverProperties   properties   = XMLAObjectsFactory.newXMLADiscoverProperties();

             // only cube element could have started an explore action:
             // (for the time being, if I find a meaning in exploring catalogs and datasources, I'll move those getCubeName annd getCatalogName to interface)
             CubeElement selectedItem = ((CubeElement)((TreeElement)(popUpSource.getPathComponent(popUpSource.getPathCount()-1))).getUserObject());


             restrictions.setCatalog(selectedItem.getCatalogName());
             restrictions.setCubeName(selectedItem.getCubeName());


             properties.setDataSourceInfo(selectedItem.getDataSourceInfo());
             properties.setCatalog(selectedItem.getCatalogName());
             properties.setFormat("Tabular");
             properties.setContent("SchemaData");


             // Go, my child, go, see the world...

              /**
 
View Full Code Here

TOP

Related Classes of rex.xmla.XMLADiscoverProperties

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.