1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package ifc.drawing;
import lib.MultiMethodTest;
import util.ValueChanger;
import com.sun.star.beans.XPropertySet;
import com.sun.star.style.XStyle;
import com.sun.star.uno.UnoRuntime;
public class _ShapeDescriptor extends MultiMethodTest {
public XPropertySet oObj = null; // oObj filled by MultiMethodTest
public boolean ro = false;
public void _LayerID() {
com.sun.star.lang.XServiceInfo xInfo = UnoRuntime.queryInterface
(com.sun.star.lang.XServiceInfo.class, oObj);
if ( ! xInfo.supportsService("com.sun.star.drawing.ShapeDescriptor")) {
log.println("Service not available !!!!!!!!!!!!!");
tRes.tested("Supported", false);
}
ro = true;
changeProp("LayerID");
ro = false;
}
public void _LayerName() {
ro = true;
changeProp("LayerName");
ro = false;
}
public void _MoveProtect() {
changeProp("MoveProtect");
}
public void _Name() {
changeProp("Name");
}
public void _Printable() {
changeProp("Printable");
}
public void _SizeProtect() {
changeProp("SizeProtect");
}
public void _Style() {
changeProp("Style");
}
public void _Transformation() {
changeProp("Transformation");
}
public void changeProp(String name) {
Object gValue = null;
Object sValue = null;
Object ValueToSet = null;
try {
gValue = oObj.getPropertyValue(name);
if (!ro) {
ValueToSet = ValueChanger.changePValue(gValue);
if ( name.equals("Style") ) {
ValueToSet = newStyle(gValue);
}
oObj.setPropertyValue(name,ValueToSet);
sValue = oObj.getPropertyValue(name);
}
//check get-set methods
if (gValue.equals(sValue)) {
log.println("Value for '"+name+"' hasn't changed");
tRes.tested(name, false);
} else {
log.println("Property '"+name+"' OK");
tRes.tested(name, true);
}
} catch (com.sun.star.beans.UnknownPropertyException ex) {
if (isOptional(name)) {
log.println("Property '"+name+
"' is optional and not supported");
tRes.tested(name,true);
} else {
log.println("Exception occurred while testing property '" +
name + "'");
ex.printStackTrace(log);
tRes.tested(name, false);
}
}
catch (Exception e) {
log.println("Exception occurred while testing property '" +
name + "'");
e.printStackTrace(log);
tRes.tested(name, false);
}
}// end of changeProp
public XStyle newStyle(Object oldStyle) {
XStyle Style1 = (XStyle) tEnv.getObjRelation("Style1");
XStyle Style2 = (XStyle) tEnv.getObjRelation("Style2");
XStyle back = null;
if ( (Style1!=null) && (Style2!=null) ) {
if ( ((XStyle) oldStyle).equals(Style1) ) {
back = Style2;
} else {
back = Style1;
}
}
return back;
}
}
|