[Webfunds-commits] java/webfunds/client/utils UpgradesManager.java
Ian Grigg
iang@cypherpunks.ai
Sat, 17 Mar 2001 18:09:59 -0400 (AST)
iang 01/03/17 18:09:59
Modified: webfunds/client/contracts ContractBrowser.java
webfunds/client/utils UpgradesManager.java
Log:
formatting only
Revision Changes Path
1.3 +7 -7 java/webfunds/client/contracts/ContractBrowser.java
Index: ContractBrowser.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/contracts/ContractBrowser.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ContractBrowser.java 2000/10/07 19:53:28 1.2
+++ ContractBrowser.java 2001/03/17 22:09:58 1.3
@@ -1,5 +1,5 @@
/*
- * $Id: ContractBrowser.java,v 1.2 2000/10/07 19:53:28 iang Exp $
+ * $Id: ContractBrowser.java,v 1.3 2001/03/17 22:09:58 iang Exp $
*
* Copyright (c) Systemics Ltd 1995-1999 on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -39,12 +39,12 @@
public String getGeneralAction() { return generalaction; }
public String getContractAction() { return contractaction; }
- public static final String ADD_BUTTON = "Add URL";
- public static final String DELETE_BUTTON = "Delete";
- public static final String FILE_BUTTON = "Explorer";
- public static final String CLOSE_BUTTON = "Close";
- public static final String OPEN_BUTTON = "Open";
- public static final String HASH_BUTTON = "Hash";
+ public static final String ADD_BUTTON = "Add URL",
+ DELETE_BUTTON = "Delete",
+ FILE_BUTTON = "Explorer",
+ CLOSE_BUTTON = "Close",
+ OPEN_BUTTON = "Open",
+ HASH_BUTTON = "Hash";
ChangeContractStore cs;
JTextField url;
1.4 +11 -10 java/webfunds/client/utils/UpgradesManager.java
Index: UpgradesManager.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/utils/UpgradesManager.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- UpgradesManager.java 2000/11/15 08:59:56 1.3
+++ UpgradesManager.java 2001/03/17 22:09:58 1.4
@@ -1,5 +1,5 @@
/*
- * $Id: UpgradesManager.java,v 1.3 2000/11/15 08:59:56 iang Exp $
+ * $Id: UpgradesManager.java,v 1.4 2001/03/17 22:09:58 iang Exp $
*
* Copyright (c) 2000 Systemics Inc on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -41,13 +41,13 @@
public String getPluginName() { return name; }
public String getGeneralAction() { return generalaction; }
- public static final String INSTALL_BUTTON = "Install Upgrade";
- public static final String GO_BUTTON = "Go!";
- public static final String DELETE_BUTTON = "Delete";
- public static final String FILE_BUTTON = "Explorer";
- public static final String CLOSE_BUTTON = "Close";
- public static final String OPEN_BUTTON = "Open";
- public static final String HASH_BUTTON = "Hash";
+ public static final String INSTALL_BUTTON = "Install Upgrade",
+ GO_BUTTON = "Go!",
+ DELETE_BUTTON = "Delete",
+ FILE_BUTTON = "Explorer",
+ CLOSE_BUTTON = "Close",
+ OPEN_BUTTON = "Open",
+ HASH_BUTTON = "Hash";
JTextField urlField;
JTextArea text;
@@ -87,10 +87,11 @@
JMenuBar mb = new JMenuBar();
text = new JTextArea();
- list = new JList(listmodel);
+ list = new JList(listmodel);
textscroll = new JScrollPane(text);
JScrollPane listscroll = new JScrollPane(list);
- JSplitPane splitpane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, listscroll, textscroll);
+ JSplitPane splitpane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
+ listscroll, textscroll);
urlpanel = new JPanel();
text.setEditable(false);