From: <chr...@us...> - 2006-10-14 12:46:40
|
Revision: 186 http://svn.sourceforge.net/japi/?rev=186&view=rev Author: christianhujer Date: 2006-10-14 05:46:26 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Copied proxy preferences classes from historic to swing-proxyprefs subproject. Added Paths: ----------- libs/swing-proxyprefs/trunk/src/ libs/swing-proxyprefs/trunk/src/net/ libs/swing-proxyprefs/trunk/src/net/sf/ libs/swing-proxyprefs/trunk/src/net/sf/japi/ libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/ libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/ libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/ libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/package.html Copied: libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java (from rev 181, historic/trunk/src/app/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java) =================================================================== --- libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java (rev 0) +++ libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java 2006-10-14 12:46:26 UTC (rev 186) @@ -0,0 +1,50 @@ +/* JAPI - (Yet another (hopefully) useful) Java API + * + * Copyright (C) 2004-2006 Christian Hujer + * + * 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 (at your option) 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 net.sf.japi.swing.prefs.proxy; + +import net.sf.japi.swing.prefs.AbstractPrefs; + +/** Proxy Configuration. + * @author <a href="mailto:ch...@ri...">Christian Hujer</a> + */ +public class ProxyPrefs extends AbstractPrefs { + + /** {@inheritDoc} */ + public void apply() { + //TODO + } + + /** {@inheritDoc} */ + public void defaults() { + //TODO + } + + /** {@inheritDoc} */ + public boolean isChanged() { + return false; //TODO + } + + /** {@inheritDoc} */ + public void revert() { + //TODO + } + +} // class ProxyPrefs Copied: libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/package.html (from rev 181, historic/trunk/src/app/net/sf/japi/swing/prefs/proxy/package.html) =================================================================== --- libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/package.html (rev 0) +++ libs/swing-proxyprefs/trunk/src/net/sf/japi/swing/prefs/proxy/package.html 2006-10-14 12:46:26 UTC (rev 186) @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- JAPI - (Yet another (hopefully) useful) Java API + - + - Copyright (C) 2006 Christian Hujer + - + - 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 (at your option) 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. + --> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> + <head> + <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> + <meta name="Date" content="$Date: 2006-04-03 23:00:14 +0200 (Mon, 03 Apr 2006) $" /> + <title>net.sf.japi.swing.prefs.proxy</title> + </head> + <body> + <p> + Proxy preferences. + </p> + </body> +</html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |