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

📄 ozoneproperties.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@ Leo Mekenkamp. All rights reserved.// $Id: OzoneProperties.java,v 1.3 2003/02/03 07:39:34 leomekenkamp Exp $package org.ozoneDB.collections;import java.util.Enumeration;import java.util.Properties;import org.ozoneDB.OzoneRemote;/** * Provides an ozone aware counterpart for <code>java.util.Properties</code>. As * the latter is a class and not an interface, only the methods that make sense * from an ozone point of view are used. * * @author <a href="mailto:ozoneATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> * @version $Id: $ */public interface OzoneProperties extends OzoneRemote {        public String getProperty(String key);        public String getProperty(String key, String defaultValue);        public void load(Properties properties); /*update*/        public Enumeration propertyNames();        public String setProperty(String key, String value); /*update*/        public Properties getClientProperties();    }

⌨️ 快捷键说明

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