⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fullpropertiesimpl.java

📁 Java的面向对象数据库系统的源代码
💻 JAVA
字号:
// You can redistribute this software and/or modify it under the terms of// the Ozone Library License version 1 published by ozone-db.org.//// This file is// Copyright (C) 2002-@year@ by Leo Mekenkamp. All rights reserved.// $Id: PersistentPropertiesImpl.java,v 1.2 2003/02/03 07:39:13 leomekenkamp Exp $package org.ozoneDB.collections;import java.util.Properties;/** * <p>Do not use this class directly; use the <code>OzoneProperties</code> * interface instead.</p> * * <p>Stores properties in an ozone aware map (<code>FullTreeMapImpl</code>).</p> * * @author <a href="mailto:ozone-db.orgATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> * @version $Id: $ */public class FullPropertiesImpl extends BasePropertiesImpl implements OzoneProperties {        private static final long serialVersionUID = 1L;    public FullPropertiesImpl() {        // TODO: replace when fake factories are finished        this.backingMap = (OzoneTreeMap) database().createObject(FullTreeMapImpl.class);    }        public FullPropertiesImpl(Properties properties) {        this();        load(properties);    }        }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -