1<?xml version="1.0" encoding="UTF-8"?> 2<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> 3<script:module xmlns:script="http://openoffice.org/2000/script" script:name="frame_XDesktop" script:language="StarBasic"> 4 5 6'************************************************************************* 7' 8' Licensed to the Apache Software Foundation (ASF) under one 9' or more contributor license agreements. See the NOTICE file 10' distributed with this work for additional information 11' regarding copyright ownership. The ASF licenses this file 12' to you under the Apache License, Version 2.0 (the 13' "License"); you may not use this file except in compliance 14' with the License. You may obtain a copy of the License at 15' 16' http://www.apache.org/licenses/LICENSE-2.0 17' 18' Unless required by applicable law or agreed to in writing, 19' software distributed under the License is distributed on an 20' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 21' KIND, either express or implied. See the License for the 22' specific language governing permissions and limitations 23' under the License. 24' 25'************************************************************************* 26 27 28 29 30 31' Be sure that all variables are dimensioned: 32option explicit 33 34 35 36 37Sub RunTest() 38 39'************************************************************************* 40' INTERFACE: 41' com.sun.star.frame.XDesktop 42'************************************************************************* 43On Error Goto ErrHndl 44 Dim bOK As Boolean 45 Test.StartMethod("getComponents()") 46 bOK = true 47 Dim components As Object 48 components = oObj.getComponents() 49 if (Not isNull(components)) then 50 Dim enum As Object 51 enum = components.createEnumeration() 52 while(enum.hasMoreElements()) 53 enum.nextElement() 54 wend 55 bOK = true 56 else 57 bOK = false 58 end if 59 Test.MethodTested("getComponents()", bOK) 60 61 Test.StartMethod("terminate()") 62 bOK = true 63 Test.MethodTested("terminate()", bOK) 64 65 Test.StartMethod("addTerminateListener()") 66 bOK = true 67 Test.MethodTested("addTerminateListener()", bOK) 68 69 Test.StartMethod("removeTerminateListener()") 70 bOK = true 71 Test.MethodTested("removeTerminateListener()", bOK) 72 73 Test.StartMethod("getCurrentComponent()") 74 bOK = true 75 Dim curComp As Object 76 curComp = oObj.getCurrentComponent() 77 bOK = Not isNull(curComp) 78 Test.MethodTested("getCurrentComponent()", bOK) 79 80 Test.StartMethod("getCurrentFrame()") 81 bOK = true 82 Dim curFrame As Object 83 curFrame = oObj.getCurrentFrame() 84 bOK = Not isNull(curFrame) 85 Test.MethodTested("getCurrentFrame()", bOK) 86Exit Sub 87ErrHndl: 88 Test.Exception() 89 bOK = false 90 resume next 91End Sub 92</script:module> 93