1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 package ifc.frame; 25 26 import com.sun.star.frame.XUIControllerRegistration; 27 import lib.MultiMethodTest; 28 29 public class _XUIControllerRegistration extends MultiMethodTest { 30 public XUIControllerRegistration oObj = null; 31 private String aRegisteredController = null; 32 private String aController = ".uno:MySecondController"; 33 before()34 public void before() { 35 aRegisteredController = (String)tEnv.getObjRelation("XUIControllerRegistration.RegisteredController"); 36 } 37 38 _registerController()39 public void _registerController() { 40 oObj.registerController(aController, "", "com.sun.star.comp.framework.FooterMenuController"); 41 oObj.registerController(aRegisteredController, "", "com.sun.star.comp.framework.HeaderMenuController"); 42 tRes.tested("registerController()", true); 43 } 44 _deregisterController()45 public void _deregisterController() { 46 requiredMethod("registerController()"); 47 oObj.deregisterController(aController, ""); 48 tRes.tested("deregisterController()", true); 49 } 50 _hasController()51 public void _hasController() { 52 requiredMethod("registerController()"); 53 requiredMethod("deregisterController()"); 54 boolean res = oObj.hasController(aRegisteredController, ""); 55 res &= !oObj.hasController(aController, ""); 56 tRes.tested("hasController()", res); 57 } 58 59 } 60