Examples of XLoadable


Examples of com.sun.star.frame.XLoadable

    public boolean test()
  {
    try
    {
      Object oDoc = m_xMSF.createInstance( "com.sun.star.comp.Draw.DrawingDocument" );
      XLoadable xLoad = (XLoadable) UnoRuntime.queryInterface( XLoadable.class, oDoc );
      if ( xLoad == null )
      {
        m_aTestHelper.Error( "Can not get XLoadable!" );
        return false;
      }

      xLoad.initNew();
     
      XDrawPagesSupplier xDPSupply = (XDrawPagesSupplier) UnoRuntime.queryInterface( XDrawPagesSupplier.class, oDoc );
      if ( xDPSupply == null )
      {
        m_aTestHelper.Error( "Can not get XDrawPagesSupplier!" );
View Full Code Here
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.