Files
loongoffice/qadevOOo/tests/java/ifc/beans/_XProperty.java
Noel Grandin abd980d4ec cid#1326605, cid#1326604 BC: Bad casts of object references
Change-Id: I85fa5fd4671d749850af854a7d4ba934416d892b
2015-10-14 09:55:11 +02:00

34 lines
1.2 KiB
Java

/*
* 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.beans;
import lib.MultiMethodTest;
import com.sun.star.beans.Property;
import com.sun.star.beans.XProperty;
public class _XProperty extends MultiMethodTest {
public XProperty oObj;
public void _getAsProperty() {
Property prop = oObj.getAsProperty();
boolean res = (prop.Type != null);
tRes.tested("getAsProperty()", res);
}
}