fullpropertiesimpl.java

来自「Java的面向对象数据库系统的源代码」· Java 代码 · 共 36 行

JAVA
36
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?