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

📄 propertymanager.java

📁 开源的java 编辑器源代码
💻 JAVA
字号:
/* * PropertyManager.java - Manages property files * :tabSize=8:indentSize=8:noTabs=false: * :folding=explicit:collapseFolds=1: * * Copyright (C) 2004 Slava Pestov * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. */package org.gjt.sp.jedit;import java.io.*;import java.util.*;class PropertyManager{	//{{{ getProperties() method	Properties getProperties()	{		Properties total = new Properties();		total.putAll(system);		Iterator iter = plugins.iterator();		while(iter.hasNext())			total.putAll((Properties)iter.next());		total.putAll(user);		return total;	} //}}}	//{{{ loadSystemProps() method	void loadSystemProps(InputStream in)		throws IOException	{		loadProps(system,in);	} //}}}	//{{{ loadUserProps() method	void loadUserProps(InputStream in)		throws IOException	{		loadProps(user,in);	} //}}}	//{{{ saveUserProps() method	void saveUserProps(OutputStream out)		throws IOException	{		user.store(out,"jEdit properties");		out.close();	} //}}}	//{{{ loadPluginProps() method	Properties loadPluginProps(InputStream in)		throws IOException	{		Properties plugin = new Properties();		loadProps(plugin,in);		plugins.add(plugin);		return plugin;	} //}}}	//{{{ addPluginProps() method	void addPluginProps(Properties props)	{		plugins.add(props);	} //}}}	//{{{ removePluginProps() method	void removePluginProps(Properties props)	{		plugins.remove(props);	} //}}}	//{{{ getProperty() method	String getProperty(String name)	{		String value = user.getProperty(name);		if(value != null)			return value;		else			return getDefaultProperty(name);	} //}}}	//{{{ setProperty() method	void setProperty(String name, String value)	{		String prop = getDefaultProperty(name);		/* if value is null:		 * - if default is null, unset user prop		 * - else set user prop to ""		 * else		 * - if default equals value, ignore		 * - if default doesn't equal value, set user		 */		if(value == null)		{			if(prop == null || prop.length() == 0)				user.remove(name);			else				user.put(name,"");		}		else		{			if(value.equals(prop))				user.remove(name);			else				user.put(name,value);		}	} //}}}	//{{{ setTemporaryProperty() method	public void setTemporaryProperty(String name, String value)	{		user.remove(name);		system.put(name,value);	} //}}}	//{{{ unsetProperty() method	void unsetProperty(String name)	{		if(getDefaultProperty(name) != null)			user.put(name,"");		else			user.remove(name);	} //}}}	//{{{ resetProperty() method	public void resetProperty(String name)	{		user.remove(name);	} //}}}	//{{{ Private members	private Properties system = new Properties();	private List plugins = new LinkedList();	private Properties user = new Properties();	//{{{ getDefaultProperty() method	private String getDefaultProperty(String name)	{		Iterator iter = plugins.iterator();		while(iter.hasNext())		{			String value = ((Properties)iter.next()).getProperty(				name);			if(value != null)				return value;		}		return system.getProperty(name);	} //}}}	//{{{ loadProps() method	private void loadProps(Properties into, InputStream in)		throws IOException	{		try		{			into.load(in);		}		finally		{			in.close();		}	} //}}}	//}}}}

⌨️ 快捷键说明

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