[Ejtools-cvs] libraries/adwt/src/main/org/ejtools/adwt/service AboutService.java,1.3,1.4 AboutServic
Brought to you by:
letiemble
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service
In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/service
Modified Files:
AboutService.java AboutServiceProvider.java
BeanContextInternalFrame.java ConsoleService.java
ConsoleServiceInternalFrame.java ConsoleServiceProvider.java
FrameService.java FrameServiceProvider.java
HistoryService.java HistoryServiceProvider.java
MDIDesktopPane.java MDIFrameService.java
MDIFrameServiceProvider.java MenuBarService.java
MenuBarServiceProvider.java PreferencesService.java
SDIFrameService.java SDIFrameServiceProvider.java
StatusBarService.java StatusBarServiceProvider.java
ToolBarService.java ToolBarServiceProvider.java
Log Message:
Adjust Eclipse build files
Adjust some Javadoc
Review the models for TreeView and ListView : much more lightweight
Convert resources files to UTF-8 to avoid loosing accents
Index: AboutService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/AboutService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AboutService.java 10 Jan 2003 19:36:10 -0000 1.3
--- AboutService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 12,17 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 12,16 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: AboutServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/AboutServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AboutServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- AboutServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 19,22 ****
--- 19,23 ----
import javax.swing.JOptionPane;
import javax.swing.JPanel;
+ import javax.swing.SwingConstants;
import org.apache.log4j.Logger;
***************
*** 28,33 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 29,33 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 136,142 ****
this.panel = new JPanel(new BorderLayout());
- String display = null;
- JLabel label = null;
-
// North part
this.panel.add("North", new JLabel("Insert your logo here"));
--- 136,139 ----
***************
*** 147,154 ****
// South part
JPanel info = new JPanel(new GridLayout(2, 1));
! JLabel java = new JLabel("Java version:" + System.getProperty("java.version"), JLabel.CENTER);
java.setForeground(Color.black);
info.add(java);
! JLabel vm = new JLabel("VM:" + System.getProperty("java.vm.name") + ", " + System.getProperty("java.vm.version"), JLabel.CENTER);
vm.setForeground(Color.black);
info.add(vm);
--- 144,151 ----
// South part
JPanel info = new JPanel(new GridLayout(2, 1));
! JLabel java = new JLabel("Java version:" + System.getProperty("java.version"), SwingConstants.CENTER);
java.setForeground(Color.black);
info.add(java);
! JLabel vm = new JLabel("VM:" + System.getProperty("java.vm.name") + ", " + System.getProperty("java.vm.version"), SwingConstants.CENTER);
vm.setForeground(Color.black);
info.add(vm);
***************
*** 180,184 ****
}
}
! ));
logger.debug("AboutService added");
--- 177,181 ----
}
}
! ));
logger.debug("AboutService added");
Index: BeanContextInternalFrame.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/BeanContextInternalFrame.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** BeanContextInternalFrame.java 21 Feb 2003 22:47:45 -0000 1.4
--- BeanContextInternalFrame.java 15 Sep 2003 22:37:14 -0000 1.5
***************
*** 25,30 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 25,29 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: ConsoleService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/ConsoleService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ConsoleService.java 10 Jan 2003 19:36:10 -0000 1.3
--- ConsoleService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 9,14 ****
/**
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 12 septembre 2002
* @version $Revision$
*/
--- 9,13 ----
/**
! * @author Laurent Etiemble
* @version $Revision$
*/
Index: ConsoleServiceInternalFrame.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/ConsoleServiceInternalFrame.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ConsoleServiceInternalFrame.java 21 Feb 2003 22:47:46 -0000 1.4
--- ConsoleServiceInternalFrame.java 15 Sep 2003 22:37:14 -0000 1.5
***************
*** 15,19 ****
import javax.swing.JTextArea;
- import org.apache.log4j.Logger;
import org.ejtools.adwt.action.Command;
import org.ejtools.adwt.action.edit.CopyAction;
--- 15,18 ----
***************
*** 22,27 ****
/**
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 21 novembre 2002
* @version $Revision$
*/
--- 21,25 ----
/**
! * @author Laurent Etiemble
* @version $Revision$
*/
***************
*** 36,41 ****
/** Description of the Field */
protected ToolBarServiceProvider toolbarProvider;
- /** Description of the Field */
- private static Logger logger = Logger.getLogger(ConsoleServiceProvider.class);
/** Description of the Field */
private final static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.service.ConsoleService");
--- 34,37 ----
Index: ConsoleServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/ConsoleServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ConsoleServiceProvider.java 10 Jan 2003 19:36:50 -0000 1.3
--- ConsoleServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 19,24 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 19,23 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 112,116 ****
}
}
! ));
}
}
--- 111,117 ----
}
}
! ));
!
! logger.debug("Console Service installed");
}
}
Index: FrameService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/FrameService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** FrameService.java 10 Jan 2003 19:36:10 -0000 1.3
--- FrameService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 13,18 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 13,17 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: FrameServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/FrameServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** FrameServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- FrameServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 24,29 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 24,28 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: HistoryService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/HistoryService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HistoryService.java 10 Jan 2003 19:36:09 -0000 1.3
--- HistoryService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 12,17 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 12,16 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 32,37 ****
*
* @author letiembl
- * @created 7 novembre 2001
* @version $Revision$
*/
public interface Holder
--- 31,36 ----
*
* @author letiembl
* @version $Revision$
+ * @created 7 novembre 2001
*/
public interface Holder
***************
*** 46,48 ****
}
}
-
--- 45,46 ----
Index: HistoryServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/HistoryServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HistoryServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- HistoryServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 12,15 ****
--- 12,17 ----
import java.util.Vector;
+ import javax.swing.Action;
+
import org.apache.log4j.Logger;
import org.ejtools.adwt.action.Command;
***************
*** 23,28 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 25,29 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 116,120 ****
CommandAction action = (CommandAction) menus.elementAt(i);
! action.putValue(CommandAction.NAME, s);
action.setEnabled(true);
}
--- 117,121 ----
CommandAction action = (CommandAction) menus.elementAt(i);
! action.putValue(Action.NAME, s);
action.setEnabled(true);
}
***************
*** 153,164 ****
{
action = new FileHistoryActionTop(
! new FileHistoryCommand(i)
! );
}
else
{
action = new FileHistoryAction(
! new FileHistoryCommand(i)
! );
}
action.setEnabled(false);
--- 154,165 ----
{
action = new FileHistoryActionTop(
! new FileHistoryCommand(i)
! );
}
else
{
action = new FileHistoryAction(
! new FileHistoryCommand(i)
! );
}
action.setEnabled(false);
***************
*** 175,180 ****
*
* @author letiembl
- * @created 7 novembre 2001
* @version $Revision$
*/
private class FileHistoryCommand implements Command
--- 176,181 ----
*
* @author letiembl
* @version $Revision$
+ * @created 7 novembre 2001
*/
private class FileHistoryCommand implements Command
***************
*** 209,214 ****
*
* @author letiembl
- * @created 7 novembre 2001
* @version $Revision$
*/
private class HistoryContext
--- 210,215 ----
*
* @author letiembl
* @version $Revision$
+ * @created 7 novembre 2001
*/
private class HistoryContext
Index: MDIDesktopPane.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/MDIDesktopPane.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MDIDesktopPane.java 10 Jan 2003 19:36:10 -0000 1.3
--- MDIDesktopPane.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 21,32 ****
import javax.swing.JViewport;
- import org.apache.log4j.Logger;
-
/**
* An extension of JDesktopPane that supports often used MDI functionality. This class also handles setting scroll bars for when windows move too far to the
* left or bottom, providing the MDIDesktopPane is in a ScrollPane.
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 29 décembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 21,29 ----
import javax.swing.JViewport;
/**
* An extension of JDesktopPane that supports often used MDI functionality. This class also handles setting scroll bars for when windows move too far to the
* left or bottom, providing the MDIDesktopPane is in a ScrollPane.
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 38,43 ****
/** Description of the Field */
protected static int FRAME_OFFSET = 30;
- /** Description of the Field */
- private static Logger logger = Logger.getLogger(MDIDesktopPane.class);
--- 35,38 ----
***************
*** 199,204 ****
*
* @author laurent
- * @created 29 décembre 2001
* @version $Revision$
*/
protected class MDIDesktopManager extends DefaultDesktopManager
--- 194,199 ----
*
* @author laurent
* @version $Revision$
+ * @created 29 d?cembre 2001
*/
protected class MDIDesktopManager extends DefaultDesktopManager
***************
*** 257,261 ****
{
d.setSize(d.getWidth() - scrollInsets.left - scrollInsets.right,
! d.getHeight() - scrollInsets.top - scrollInsets.bottom);
}
--- 252,256 ----
{
d.setSize(d.getWidth() - scrollInsets.left - scrollInsets.right,
! d.getHeight() - scrollInsets.top - scrollInsets.bottom);
}
***************
*** 294,298 ****
{
d.setSize(d.getWidth() - scrollInsets.left - scrollInsets.right,
! d.getHeight() - scrollInsets.top - scrollInsets.bottom);
}
--- 289,293 ----
{
d.setSize(d.getWidth() - scrollInsets.left - scrollInsets.right,
! d.getHeight() - scrollInsets.top - scrollInsets.bottom);
}
***************
*** 355,360 ****
*
* @author Administrator
- * @created 16 novembre 2002
* @version $Revision$
*/
protected static class CascadeArranger extends DesktopArranger
--- 350,355 ----
*
* @author Administrator
* @version $Revision$
+ * @created 16 novembre 2002
*/
protected static class CascadeArranger extends DesktopArranger
***************
*** 415,420 ****
*
* @author Administrator
- * @created 16 novembre 2002
* @version $Revision$
*/
protected abstract static class DesktopArranger
--- 410,415 ----
*
* @author Administrator
* @version $Revision$
+ * @created 16 novembre 2002
*/
protected abstract static class DesktopArranger
***************
*** 475,480 ****
*
* @author Administrator
- * @created 16 novembre 2002
* @version $Revision$
*/
protected static class MaximizeArranger extends DesktopArranger
--- 470,475 ----
*
* @author Administrator
* @version $Revision$
+ * @created 16 novembre 2002
*/
protected static class MaximizeArranger extends DesktopArranger
***************
*** 511,516 ****
*
* @author Administrator
- * @created 16 novembre 2002
* @version $Revision$
*/
protected static class TileArranger extends DesktopArranger
--- 506,511 ----
*
* @author Administrator
* @version $Revision$
+ * @created 16 novembre 2002
*/
protected static class TileArranger extends DesktopArranger
Index: MDIFrameService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/MDIFrameService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MDIFrameService.java 10 Jan 2003 19:36:10 -0000 1.3
--- MDIFrameService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 11,16 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 11,15 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: MDIFrameServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/MDIFrameServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MDIFrameServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- MDIFrameServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 16,21 ****
import javax.swing.ButtonGroup;
- import javax.swing.JFrame;
import javax.swing.JInternalFrame;
import org.apache.log4j.Logger;
--- 16,21 ----
import javax.swing.ButtonGroup;
import javax.swing.JInternalFrame;
+ import javax.swing.WindowConstants;
import org.apache.log4j.Logger;
***************
*** 29,34 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 29,33 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 157,161 ****
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
this.frame.setLocation(screen.width / 2 - frame.getSize().width / 2, screen.height / 2 - frame.getSize().height / 2);
! this.frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
this.add(new CascadeAction(
--- 156,160 ----
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
this.frame.setLocation(screen.width / 2 - frame.getSize().width / 2, screen.height / 2 - frame.getSize().height / 2);
! this.frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
this.add(new CascadeAction(
***************
*** 167,171 ****
}
}
! ));
this.add(new TileAction(
--- 166,170 ----
}
}
! ));
this.add(new TileAction(
***************
*** 177,181 ****
}
}
! ));
this.add(new CloseAction(
--- 176,180 ----
}
}
! ));
this.add(new CloseAction(
***************
*** 191,195 ****
}
}
! ));
this.add(new CloseAllAction(
--- 190,194 ----
}
}
! ));
this.add(new CloseAllAction(
***************
*** 205,209 ****
}
}
! ));
this.useServices(context);
--- 204,208 ----
}
}
! ));
this.useServices(context);
Index: MenuBarService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/MenuBarService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MenuBarService.java 10 Jan 2003 19:36:10 -0000 1.3
--- MenuBarService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 12,17 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 12,16 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 47,52 ****
*
* @author letiembl
- * @created 5 novembre 2001
* @version $Revision$
*/
public interface Listener
--- 46,51 ----
*
* @author letiembl
* @version $Revision$
+ * @created 5 novembre 2001
*/
public interface Listener
Index: MenuBarServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/MenuBarServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MenuBarServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- MenuBarServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 8,13 ****
import java.awt.Container;
- import java.awt.Point;
- import java.awt.event.MouseEvent;
import java.beans.beancontext.BeanContextServices;
import java.util.Iterator;
--- 8,11 ----
***************
*** 15,24 ****
import java.util.Vector;
- import javax.swing.Action;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
- import org.apache.log4j.Logger;
import org.ejtools.adwt.AwtToolkit;
import org.ejtools.adwt.action.CommandAction;
--- 13,20 ----
***************
*** 28,33 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 24,28 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 43,48 ****
/** Description of the Field */
protected MenuBarService service = null;
- /** Description of the Field */
- private static Logger logger = Logger.getLogger(MenuBarServiceProvider.class.getName());
--- 38,41 ----
***************
*** 280,324 ****
MenuBarService.Listener o = (MenuBarService.Listener) this.listeners.elementAt(i);
o.update(this.menuBar);
- }
- }
-
-
- /**
- * Description of the Class
- *
- * @author letiembl
- * @created 6 novembre 2001
- * @version $Revision$
- */
- private final class JMenuItemWithFixedTooltip extends JMenuItem
- {
-
- /**
- * Constructor for the MenuItemWithFixedTooltip object
- *
- * @param action Description of Parameter
- */
- public JMenuItemWithFixedTooltip(Action action)
- {
- super(action);
- }
-
-
- /**
- * Gets the toolTipLocation attribute of the MenuItemWithFixedTooltip object
- *
- * @param e Description of Parameter
- * @return The toolTipLocation value
- */
- public Point getToolTipLocation(MouseEvent e)
- {
- /*
- * Graphics g = getGraphics();
- * FontMetrics metrics = g.getFontMetrics(g.getFont());
- * String prefix = itemnameHistory.size() <= 9 ? "8: " : "88: ";
- * int prefixWidth = metrics.stringWidth(prefix);
- * int x = JButton.TRAILING + JButton.LEADING - 1 + prefixWidth;
- */
- return new Point(0, 0);
}
}
--- 273,276 ----
Index: PreferencesService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/PreferencesService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PreferencesService.java 10 Jan 2003 19:36:10 -0000 1.3
--- PreferencesService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 11,16 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 11,15 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: SDIFrameService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/SDIFrameService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SDIFrameService.java 10 Jan 2003 19:36:10 -0000 1.3
--- SDIFrameService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 12,17 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 12,16 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: SDIFrameServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/SDIFrameServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SDIFrameServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- SDIFrameServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 13,18 ****
import java.beans.beancontext.BeanContextServices;
- import javax.swing.JFrame;
import javax.swing.JPanel;
import org.apache.log4j.Logger;
--- 13,18 ----
import java.beans.beancontext.BeanContextServices;
import javax.swing.JPanel;
+ import javax.swing.WindowConstants;
import org.apache.log4j.Logger;
***************
*** 21,26 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 21,25 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 75,79 ****
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
this.frame.setLocation(screen.width / 2 - frame.getSize().width / 2, screen.height / 2 - frame.getSize().height / 2);
! this.frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
this.useServices(context);
--- 74,78 ----
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
this.frame.setLocation(screen.width / 2 - frame.getSize().width / 2, screen.height / 2 - frame.getSize().height / 2);
! this.frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
this.useServices(context);
Index: StatusBarService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/StatusBarService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** StatusBarService.java 10 Jan 2003 19:36:10 -0000 1.3
--- StatusBarService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 15,20 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 15,19 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: StatusBarServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/StatusBarServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** StatusBarServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- StatusBarServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 15,19 ****
import javax.swing.JPanel;
- import org.apache.log4j.Logger;
import org.ejtools.beans.beancontext.CustomBeanContextServiceProvider;
--- 15,18 ----
***************
*** 21,26 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 20,24 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 32,37 ****
/** Description of the Field */
private StatusBarService service = null;
- /** Description of the Field */
- private static Logger logger = Logger.getLogger(StatusBarServiceProvider.class.getName());
--- 30,33 ----
Index: ToolBarService.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/ToolBarService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ToolBarService.java 10 Jan 2003 19:36:10 -0000 1.3
--- ToolBarService.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 14,19 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 25 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 14,18 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: ToolBarServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/service/ToolBarServiceProvider.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ToolBarServiceProvider.java 10 Jan 2003 19:36:10 -0000 1.3
--- ToolBarServiceProvider.java 15 Sep 2003 22:37:14 -0000 1.4
***************
*** 25,30 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 novembre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 25,29 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 124,128 ****
else
{
! o = action.getValue(CommandAction.SMALL_ICON);
}
if (o != null)
--- 123,127 ----
else
{
! o = action.getValue(Action.SMALL_ICON);
}
if (o != null)
***************
*** 199,204 ****
*
* @author laurent
- * @created 29 décembre 2001
* @version $Revision$
*/
protected class JToolBarWrapper extends JToolBar
--- 198,203 ----
*
* @author laurent
* @version $Revision$
+ * @created 29 d?cembre 2001
*/
protected class JToolBarWrapper extends JToolBar
|