📄 nodepropertiesimpl.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>NodeTreeMapImpl</code>).</p> * * @author <a href="mailto:ozone-db.orgATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> * @version $Id: $ */public class NodePropertiesImpl extends BasePropertiesImpl implements OzoneProperties { private static final long serialVersionUID = 1L; public NodePropertiesImpl() { // TODO: replace when fake factories are finished this.backingMap = (OzoneTreeMap) database().createObject(NodeTreeMapImpl.class); } public NodePropertiesImpl(Properties properties) { this(); load(properties); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -