/* * 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 com.sun.star.cmp; import com.sun.star.io.XPersistObject; import com.sun.star.io.XObjectInputStream; import com.sun.star.io.XObjectOutputStream; import com.sun.star.beans.XPropertySet; import com.sun.star.beans.XPropertySetInfo; import com.sun.star.beans.Property; import com.sun.star.beans.XPropertyChangeListener; import com.sun.star.beans.XVetoableChangeListener; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.lang.XSingleServiceFactory; import com.sun.star.lang.XServiceInfo; import com.sun.star.uno.XInterface; import com.sun.star.lang.XTypeProvider; import com.sun.star.registry.XRegistryKey; import com.sun.star.comp.loader.FactoryHelper; import com.sun.star.uno.Type; /** * Class MyPersistObject implements an XPersistObject, XServiceInfo, * XTypeProvider and XPropertySet. * * Warning: In XPropertySet only the following methods that are * used for testing are really implemented: * * - public XPropertySetInfo getPropertySetInfo() * - public void setPropertyValue(String property, Object value) * - public Object getPropertyValue(String property) */ public class MyPersistObject implements XPersistObject, XTypeProvider, XServiceInfo, XPropertySet { private class MyPropertySetInfo implements XPropertySetInfo { Property[] _props; public MyPropertySetInfo(Property[] props) { _props = props; } public Property[] getProperties() { return _props; } public Property getPropertyByName(String name) { int i = getPropertyIndexByName(name); return i>0?_props[i]:null; } public int getPropertyIndexByName(String name) { for ( int i=0; i<_props.length; i++ ) if (name.equals(_props[i].Name)) return i; return -1; } public boolean hasPropertyByName(String name) { int i = getPropertyIndexByName(name); return i>0; } } private static final boolean verbose = false; public static final String __serviceName = "com.sun.star.cmp.PersistObject"; public static final String __implName = "com.sun.star.cmp.MyPersistObject"; // lots of props to write Property[] props; private byte by; private int i; private char c; private double d; private float f; private short s; private String st; // property set info XPropertySetInfo xInfo; /** * Constructor: sets all properties **/ public MyPersistObject() { int prop_count = 7; props = new Property[prop_count]; for (int i=0; iJavaLoader *

* @return returns a XSingleServiceFactory for creating the component * @param implName the name of the implementation for which a service is desired * @param multiFactory the service manager to be used if needed * @param regKey the registryKey * @see com.sun.star.comp.loader.JavaLoader */ public static XSingleServiceFactory __getServiceFactory(String implName, XMultiServiceFactory multiFactory, XRegistryKey regKey) { XSingleServiceFactory xSingleServiceFactory = null; if (implName.equals(MyPersistObject.class.getName())) xSingleServiceFactory = FactoryHelper.getServiceFactory( MyPersistObject.class, __serviceName, multiFactory, regKey); return xSingleServiceFactory; } /** * Writes the service information into the given registry key. * This method is called by the JavaLoader *

* @return returns true if the operation succeeded * @param regKey the registryKey * @see com.sun.star.comp.loader.JavaLoader */ public static boolean __writeRegistryServiceInfo(XRegistryKey regKey) { return FactoryHelper.writeRegistryServiceInfo(MyPersistObject.class.getName(), __serviceName, regKey); } } // finish class MyPersistObject