ejtools-cvs Mailing List for EJTools (Page 13)
Brought to you by:
letiemble
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
(471) |
May
(303) |
Jun
(176) |
Jul
(67) |
Aug
(64) |
Sep
(84) |
Oct
(148) |
Nov
(57) |
Dec
(272) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(356) |
Feb
(304) |
Mar
(214) |
Apr
(22) |
May
(7) |
Jun
(25) |
Jul
|
Aug
(5) |
Sep
(106) |
Oct
|
Nov
(95) |
Dec
(193) |
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2016 |
Jan
(2) |
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
|
From: <let...@us...> - 2003-09-15 23:08:31
|
Update of /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/jmx In directory sc8-pr-cvs1:/tmp/cvs-serv31782/libraries/adwt/src/resources/org/ejtools/adwt/jmx Modified Files: Resources_fr_FR.properties Log Message: Work on JBoss provider has begun Be sure that the French translations don't get message by the encoding Index: Resources_fr_FR.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/jmx/Resources_fr_FR.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Resources_fr_FR.properties 15 Sep 2003 22:37:14 -0000 1.2 --- Resources_fr_FR.properties 15 Sep 2003 23:08:27 -0000 1.3 *************** *** 11,18 **** # Text for Invocation Dialog ! invoke.dialog.title=Executer une Opération invoke.dialog.title.error=Erreur ! invoke.dialog.text.operation=Opération ! invoke.dialog.text.unloadable.class=Classe non trouvée invoke.dialog.text.error=Une exception est survenue. Consultez les logs. invoke.dialog.button.invoke=Executer --- 11,18 ---- # Text for Invocation Dialog ! invoke.dialog.title=Executer une Opération invoke.dialog.title.error=Erreur ! invoke.dialog.text.operation=Opération ! invoke.dialog.text.unloadable.class=Classe non trouvée invoke.dialog.text.error=Une exception est survenue. Consultez les logs. invoke.dialog.button.invoke=Executer |
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt Modified Files: AwtToolkit.java BeanContextListPanel.java BeanContextListView.java BeanContextTreePanel.java GenericCustomizer.java GenericMBeanCustomizer.java GenericMBeanMethodDialog.java GenericMethodDialog.java SimpleCustomizer.java Added Files: BeanContextList.java BeanContextListModel.java BeanContextTree.java BeanContextTreeModel.java LookAndFeelUtil.java Removed Files: BeanContextTreeView.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 --- NEW FILE: BeanContextList.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt; import javax.swing.JList; import javax.swing.ListModel; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public class BeanContextList extends JList { /** * Constructor for the BeanContextList object * * @param dataModel Description of the Parameter */ public BeanContextList(ListModel dataModel) { super(dataModel); } } --- NEW FILE: BeanContextListModel.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt; import java.beans.beancontext.BeanContext; import java.beans.beancontext.BeanContextMembershipEvent; import java.beans.beancontext.BeanContextMembershipListener; import java.util.Collection; import java.util.Iterator; import java.util.Vector; import javax.swing.ListModel; import javax.swing.event.ListDataEvent; import javax.swing.event.ListDataListener; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public class BeanContextListModel implements ListModel, BeanContextMembershipListener { /** Description of the Field */ protected Collection listeners = new Vector(); /** Description of the Field */ protected BeanContext root; /** * Constructor for the BeanContextListModel object * * @param root Description of the Parameter */ public BeanContextListModel(BeanContext root) { this.root = root; this.root.addBeanContextMembershipListener(this); } /** * Adds a feature to the ListDataListener attribute of the * BeanContextListModel object * * @param l The feature to be added to the ListDataListener attribute */ public void addListDataListener(ListDataListener l) { this.listeners.add(l); } /** * Description of the Method * * @param bcme Description of the Parameter */ public void childrenAdded(BeanContextMembershipEvent bcme) { this.fireContentsChanged(); } /** * Description of the Method * * @param bcme Description of the Parameter */ public void childrenRemoved(BeanContextMembershipEvent bcme) { this.fireContentsChanged(); } /** * Gets the elementAt attribute of the BeanContextListModel object * * @param index Description of the Parameter * @return The elementAt value */ public Object getElementAt(int index) { int i = 0; Object result = null; for (Iterator it = this.root.iterator(); it.hasNext(); i++) { result = it.next(); if (i == index) { break; } result = null; } return result; } /** * Gets the size attribute of the BeanContextListModel object * * @return The size value */ public int getSize() { return root.size(); } /** * Description of the Method * * @param l Description of the Parameter */ public void removeListDataListener(ListDataListener l) { this.listeners.remove(l); } /** Description of the Method */ protected void fireContentsChanged() { ListDataEvent event = new ListDataEvent(this, ListDataEvent.CONTENTS_CHANGED, 0, this.root.size()); Object[] copy = this.listeners.toArray(); for (int i = 0; i < copy.length; i++) { ListDataListener listener = (ListDataListener) copy[i]; listener.contentsChanged(event); } } /** Description of the Method */ protected void fireIntervalAdded() { } /** Description of the Method */ protected void fireIntervalRemoved() { } } --- NEW FILE: BeanContextTree.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt; import java.awt.Component; import javax.swing.Icon; import javax.swing.JTree; import javax.swing.tree.DefaultTreeCellRenderer; import javax.swing.tree.TreePath; import org.ejtools.adwt.util.DefaultObjectRenderer; import org.ejtools.adwt.util.ObjectIndexer; import org.ejtools.adwt.util.ObjectRenderer; import org.ejtools.adwt.util.ObjectSearcher; import org.ejtools.adwt.util.SearchableTreeModel; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public class BeanContextTree extends JTree implements ObjectSearcher { /** Description of the Field */ protected ObjectRenderer renderer = new DefaultObjectRenderer(); /** * Constructor for the BeanContextTree object * * @param newModel Description of the Parameter */ public BeanContextTree(SearchableTreeModel newModel) { super(newModel); this.setShowsRootHandles(true); this.setExpandsSelectedPaths(true); this.putClientProperty("JTree.lineStyle", "Angled"); this.setCellRenderer( new DefaultTreeCellRenderer() { public Component getTreeCellRendererComponent(JTree jtree, Object obj, boolean flag, boolean flag1, boolean flag2, int i, boolean flag3) { try { Icon leafIcon = null; Icon openIcon = null; Icon closedIcon = null; Icon newIcon = BeanContextTree.this.renderer.getIcon(obj); if (newIcon != null) { leafIcon = this.getLeafIcon(); openIcon = this.getOpenIcon(); closedIcon = this.getClosedIcon(); this.setLeafIcon(newIcon); this.setOpenIcon(newIcon); this.setClosedIcon(newIcon); } super.getTreeCellRendererComponent(jtree, obj, flag, flag1, flag2, i, flag3); if (newIcon != null) { this.setLeafIcon(leafIcon); this.setOpenIcon(openIcon); this.setClosedIcon(closedIcon); } return this; } catch (Exception e) { return super.getTreeCellRendererComponent(jtree, obj, flag, flag1, flag2, i, flag3); } } }); } /** * Description of the Method * * @param o Description of the Parameter * @return Description of the Return Value */ public Object find(Object o) { Object r = ((SearchableTreeModel) this.getModel()).find(o); if (r != null) { Object[] paths = (Object[]) r; TreePath path = new TreePath(paths); this.setSelectionPath(path); } return null; } /** Description of the Method */ public void selectRoot() { TreePath path = new TreePath(this.getModel().getRoot()); this.setSelectionPath(path); } /** * Sets the indexer attribute of the BeanContextTree object * * @param indexer The new indexer value */ public void setIndexer(ObjectIndexer indexer) { ((SearchableTreeModel) this.getModel()).setIndexer(indexer); } /** * Sets the renderer attribute of the BeanContextTree object * * @param renderer The new renderer value */ public void setRenderer(ObjectRenderer renderer) { this.renderer = renderer; } } --- NEW FILE: BeanContextTreeModel.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt; import java.beans.beancontext.BeanContext; import java.beans.beancontext.BeanContextMembershipEvent; import java.beans.beancontext.BeanContextMembershipListener; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.Vector; import javax.swing.event.TreeModelEvent; import javax.swing.event.TreeModelListener; import javax.swing.tree.TreePath; import org.ejtools.adwt.util.DefaultObjectIndexer; import org.ejtools.adwt.util.ObjectIndexer; import org.ejtools.adwt.util.SearchableTreeModel; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public class BeanContextTreeModel implements SearchableTreeModel, BeanContextMembershipListener { /** Description of the Field */ protected Collection contexts = new Vector(); /** Description of the Field */ protected ObjectIndexer indexer = new DefaultObjectIndexer(); /** Description of the Field */ protected Collection listeners = new Vector(); /** Root of the tree. */ protected BeanContext root; /** * Constructor for the BeanContextTreeModel object * * @param root Description of the Parameter */ public BeanContextTreeModel(BeanContext root) { this.root = root; this.root.addBeanContextMembershipListener(this); } /** * Adds a feature to the TreeModelListener attribute of the * BeanContextTreeModel object * * @param tml The feature to be added to the TreeModelListener attribute */ public void addTreeModelListener(TreeModelListener tml) { this.listeners.add(tml); } /** * Description of the Method * * @param bcme Description of the Parameter */ public void childrenAdded(BeanContextMembershipEvent bcme) { for (Iterator it = bcme.iterator(); it.hasNext(); ) { Object o = it.next(); if (o instanceof BeanContext) { BeanContext context = (BeanContext) o; if (!contexts.contains(context)) { contexts.add(context); context.addBeanContextMembershipListener(this); } } this.indexer.put(o, computePath(bcme.getBeanContext(), o)); } this.fireTreeStructureChanged(); } /** * Description of the Method * * @param bcme Description of the Parameter */ public void childrenRemoved(BeanContextMembershipEvent bcme) { for (Iterator it = bcme.iterator(); it.hasNext(); ) { Object o = it.next(); if (o instanceof BeanContext) { BeanContext context = (BeanContext) o; if (contexts.contains(context)) { context.removeBeanContextMembershipListener(this); contexts.remove(context); } } this.indexer.remove(o); } this.fireTreeStructureChanged(); } /** * Description of the Method * * @param o Description of the Parameter * @return Description of the Return Value */ public Object find(Object o) { return this.indexer.get(o); } /** * Gets the child attribute of the BeanContextTreeModel object * * @param parent Description of the Parameter * @param index Description of the Parameter * @return The child value */ public Object getChild(Object parent, int index) { Collection c = (Collection) parent; int i = 0; Object result = null; for (Iterator it = c.iterator(); it.hasNext(); i++) { result = it.next(); if (i == index) { break; } result = null; } return result; } /** * Gets the childCount attribute of the BeanContextTreeModel object * * @param parent Description of the Parameter * @return The childCount value */ public int getChildCount(Object parent) { Collection c = (Collection) parent; return c.size(); } /** * Gets the indexOfChild attribute of the BeanContextTreeModel object * * @param parent Description of the Parameter * @param child Description of the Parameter * @return The indexOfChild value */ public int getIndexOfChild(Object parent, Object child) { Collection c = (Collection) parent; int i = 0; int index = -1; for (Iterator it = c.iterator(); it.hasNext(); i++) { if (it.next().equals(child)) { index = i; break; } } return index; } /** * Gets the root attribute of the BeanContextTreeModel object * * @return The root value */ public Object getRoot() { return this.root; } /** * Gets the leaf attribute of the BeanContextTreeModel object * * @param node Description of the Parameter * @return The leaf value */ public boolean isLeaf(Object node) { Collection c = (Collection) node; return (c.size() == 0); } /** * Description of the Method * * @param tml Description of the Parameter */ public void removeTreeModelListener(TreeModelListener tml) { this.listeners.remove(tml); } /** * Sets the indexer attribute of the BeanContextTreeModel object * * @param indexer The new indexer value */ public void setIndexer(ObjectIndexer indexer) { this.indexer = indexer; } /** * Description of the Method * * @param path Description of the Parameter * @param newValue Description of the Parameter */ public void valueForPathChanged(TreePath path, Object newValue) { throw new UnsupportedOperationException("Not yet implemented"); } /** * Description of the Method * * @param parent Description of the Parameter * @param o Description of the Parameter * @return Description of the Return Value */ protected Object[] computePath(BeanContext parent, Object o) { ArrayList paths = new ArrayList(); BeanContext current = parent; paths.add(parent); paths.add(o); while (this.root.equals(current.getBeanContext())) { current = current.getBeanContext(); paths.add(0, current); } return paths.toArray(); } /** Description of the Method */ protected void fireTreeNodesChanged() { TreeModelEvent event = new TreeModelEvent(this, new TreePath(this.root)); Object[] copy = this.listeners.toArray(); for (int i = 0; i < copy.length; i++) { TreeModelListener listener = (TreeModelListener) copy[i]; listener.treeNodesChanged(event); } } /** Description of the Method */ protected void fireTreeNodesInserted() { TreeModelEvent event = new TreeModelEvent(this, new TreePath(this.root)); Object[] copy = this.listeners.toArray(); for (int i = 0; i < copy.length; i++) { TreeModelListener listener = (TreeModelListener) copy[i]; listener.treeNodesInserted(event); } } /** Description of the Method */ protected void fireTreeNodesRemoved() { TreeModelEvent event = new TreeModelEvent(this, new TreePath(this.root)); Object[] copy = this.listeners.toArray(); for (int i = 0; i < copy.length; i++) { TreeModelListener listener = (TreeModelListener) copy[i]; listener.treeNodesRemoved(event); } } /** Description of the Method */ protected void fireTreeStructureChanged() { TreeModelEvent event = new TreeModelEvent(this, new TreePath(this.root)); Object[] copy = this.listeners.toArray(); for (int i = 0; i < copy.length; i++) { TreeModelListener listener = (TreeModelListener) copy[i]; listener.treeStructureChanged(event); } } } --- NEW FILE: LookAndFeelUtil.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.net.URLClassLoader; import java.util.Collection; import java.util.Enumeration; import java.util.Iterator; import java.util.Properties; import java.util.Vector; import java.util.jar.JarEntry; import java.util.jar.JarFile; import javax.swing.LookAndFeel; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; import org.apache.log4j.Logger; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ * @todo Javadoc to complete */ public class LookAndFeelUtil { /** Description of the Field */ private static Logger logger = Logger.getLogger(LookAndFeelUtil.class); /** Description of the Field */ private static Collection plafs = new Vector(); /** Constructor for the AboutServiceProvider object */ private LookAndFeelUtil() { } /** Description of the Method */ public static void setLookAndFeel() { try { logger.debug("Searching for Pluggable Look and Feel classes"); // Try to load Look And Feels through the property file InputStream stream = LookAndFeelUtil.class.getResourceAsStream("/plaf.properties"); if (stream != null) { Properties props = new Properties(); props.load(stream); stream.close(); String name = props.getProperty("plaf.class"); if (name != null) { loadClass(name); } } // Find list of Look And Feels through the Class Loader // // The trick is to search the class that ends with "LookAndFeel" // and to verify that they inherit the javax.swing.LookAndFeel class // It may be defeated if the Look And Feel is not named like this // URL[] urls = ((URLClassLoader) Thread.currentThread().getContextClassLoader()).getURLs(); for (int i = 0; i < urls.length; i++) { if (urls[i].getFile().endsWith(".jar")) { JarFile file = new JarFile(new File(urls[i].getFile())); Enumeration entries = file.entries(); while (entries.hasMoreElements()) { JarEntry entry = (JarEntry) entries.nextElement(); if (!entry.isDirectory()) { String name = entry.getName(); // If it ends with LookAndFeel, it may be a Look And Feel if (name.endsWith("LookAndFeel.class")) { name = name.substring(0, name.length() - ".class".length()); name = name.replace('/', '.'); logger.debug("Found Look and Feel class : " + name); loadClass(name); } } } } } // If there are some Look And Feel, set it up for (Iterator iterator = plafs.iterator(); iterator.hasNext(); ) { LookAndFeel plaf = (LookAndFeel) iterator.next(); try { UIManager.setLookAndFeel(plaf); logger.debug("LookAndFeelService " + plaf.getName() + " setup"); break; } catch (UnsupportedLookAndFeelException ulafe) { logger.warn("Look And Feel not supported (" + ulafe.getMessage() + ")"); } } } catch (ClassCastException cce) { logger.warn("Context ClassLoader must be an URLClassLoader (" + cce.getMessage() + ")"); } catch (IOException ioe) { logger.warn("Cannot create a JarFile (" + ioe.getMessage() + ")"); } } /** * Description of the Method * * @param name Description of the Parameter */ private static void loadClass(String name) { // Load the class and add it try { Class plafClass = Thread.currentThread().getContextClassLoader().loadClass(name); if (LookAndFeel.class.isAssignableFrom(plafClass)) { LookAndFeel plaf = (LookAndFeel) plafClass.newInstance(); plafs.add(plaf); logger.debug("Look and Feel added : " + plaf.getName()); } } catch (ClassNotFoundException cnfe) { logger.warn("The Look And Feel class " + name + " was not found"); } catch (InstantiationException ie) { logger.warn("Error while creating Look And Feel"); } catch (IllegalAccessException iae) { logger.warn("Error while accessing Look And Feel"); } } } Index: AwtToolkit.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/AwtToolkit.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AwtToolkit.java 17 Dec 2002 17:14:01 -0000 1.3 --- AwtToolkit.java 15 Sep 2003 22:37:12 -0000 1.4 *************** *** 12,17 **** /** ! * @author letiembl ! * @created 24 septembre 2002 * @version $Revision$ */ --- 12,16 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ Index: BeanContextListPanel.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/BeanContextListPanel.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BeanContextListPanel.java 17 Dec 2002 17:14:01 -0000 1.3 --- BeanContextListPanel.java 15 Sep 2003 22:37:12 -0000 1.4 *************** *** 28,33 **** * Description of the Class * ! * @author Administrator ! * @created 16 octobre 2001 * @version $Revision$ */ --- 28,32 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ */ *************** *** 97,101 **** } else ! if (obj instanceof BeanContextContainerProxy) { BeanContextContainerProxy beancontextcontainerproxy = (BeanContextContainerProxy) obj; --- 96,100 ---- } else ! if (obj instanceof BeanContextContainerProxy) { BeanContextContainerProxy beancontextcontainerproxy = (BeanContextContainerProxy) obj; Index: BeanContextListView.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/BeanContextListView.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BeanContextListView.java 17 Dec 2002 17:14:01 -0000 1.3 --- BeanContextListView.java 15 Sep 2003 22:37:12 -0000 1.4 *************** *** 30,35 **** * Description of the Class * ! * @author letiembl ! * @created 24 septembre 2001 * @version $Revision$ */ --- 30,34 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ */ *************** *** 75,80 **** * * @author Administrator - * @created 16 octobre 2001 * @version $Revision$ */ protected class BeanContextListModel implements ListModel, BeanContextMembershipListener --- 74,79 ---- * * @author Administrator * @version $Revision$ + * @created 16 octobre 2001 */ protected class BeanContextListModel implements ListModel, BeanContextMembershipListener *************** *** 199,204 **** * * @author Administrator - * @created 16 octobre 2001 * @version $Revision$ */ protected class ContextElement implements BeanContextChildComponentProxy --- 198,203 ---- * * @author Administrator * @version $Revision$ + * @created 16 octobre 2001 */ protected class ContextElement implements BeanContextChildComponentProxy Index: BeanContextTreePanel.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/BeanContextTreePanel.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** BeanContextTreePanel.java 12 Feb 2003 21:09:01 -0000 1.7 --- BeanContextTreePanel.java 15 Sep 2003 22:37:12 -0000 1.8 *************** *** 19,43 **** import javax.swing.SwingUtilities; import javax.swing.event.TreeModelEvent; - import javax.swing.event.TreeModelListener; import javax.swing.event.TreeSelectionEvent; import javax.swing.event.TreeSelectionListener; - import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.TreePath; ! import org.ejtools.adwt.util.ObjectFinder; /** * Description of the Class * ! * @author letiembl ! * @created 19 octobre 2001 * @version $Revision$ * @todo Javadoc to complete - * @todo Import to clean */ ! public class BeanContextTreePanel extends JSplitPane implements ObjectFinder { /** Description of the Field */ ! protected BeanContextTreeView tree; --- 19,42 ---- import javax.swing.SwingUtilities; import javax.swing.event.TreeModelEvent; import javax.swing.event.TreeSelectionEvent; import javax.swing.event.TreeSelectionListener; import javax.swing.tree.TreePath; ! import org.apache.log4j.lf5.viewer.categoryexplorer.TreeModelAdapter; ! import org.ejtools.adwt.util.ObjectIndexer; ! import org.ejtools.adwt.util.ObjectRenderer; ! import org.ejtools.adwt.util.ObjectSearcher; /** * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete */ ! public class BeanContextTreePanel extends JSplitPane implements ObjectSearcher { /** Description of the Field */ ! protected BeanContextTree tree; *************** *** 66,80 **** this.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), title)); } ! this.tree = new BeanContextTreeView(); ! this.tree.setObject(beancontext); JScrollPane jscrollpane = new JScrollPane(tree); ! jscrollpane.setMinimumSize(new Dimension(300, 400)); jscrollpane.setPreferredSize(new Dimension(300, 400)); final JPanel dummyMsg = new JPanel(); ! dummyMsg.add(new JLabel("", 0)); this.setLeftComponent(jscrollpane); this.setRightComponent(dummyMsg); this.tree.addTreeSelectionListener( new TreeSelectionListener() --- 65,81 ---- this.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), title)); } ! BeanContextTreeModel model = new BeanContextTreeModel(beancontext); ! this.tree = new BeanContextTree(model); JScrollPane jscrollpane = new JScrollPane(tree); ! jscrollpane.setMinimumSize(new Dimension(200, 200)); jscrollpane.setPreferredSize(new Dimension(300, 400)); final JPanel dummyMsg = new JPanel(); ! dummyMsg.add(new JLabel("")); ! this.setLeftComponent(jscrollpane); this.setRightComponent(dummyMsg); + this.tree.addTreeSelectionListener( new TreeSelectionListener() *************** *** 90,94 **** try { ! Object obj = ((DefaultMutableTreeNode) selPath.getLastPathComponent()).getUserObject(); if (obj instanceof BeanContextChildComponentProxy) { --- 91,95 ---- try { ! Object obj = selPath.getLastPathComponent(); if (obj instanceof BeanContextChildComponentProxy) { *************** *** 105,108 **** --- 106,110 ---- catch (Exception e) { + // Ignore it } } *************** *** 110,135 **** } }); this.tree.getModel().addTreeModelListener( ! new TreeModelListener() { - public void treeNodesChanged(TreeModelEvent treemodelevent) { } - - - public void treeNodesInserted(TreeModelEvent treemodelevent) { } - - public void treeNodesRemoved(TreeModelEvent treemodelevent) { BeanContextTreePanel.this.selectRoot(); - // BeanContextTreePanel.this.setRightComponent(dummyMsg); - // BeanContextTreePanel.this.validate(); - } - - - public void treeStructureChanged(TreeModelEvent treemodelevent) - { - // BeanContextTreePanel.this.selectRoot(); - // BeanContextTreePanel.this.setRightComponent(dummyMsg); - // BeanContextTreePanel.this.validate(); } }); --- 112,122 ---- } }); + this.tree.getModel().addTreeModelListener( ! new TreeModelAdapter() { public void treeNodesRemoved(TreeModelEvent treemodelevent) { BeanContextTreePanel.this.selectRoot(); } }); *************** *** 138,141 **** --- 125,130 ---- /** + * Description of the Method + * * @param o Description of the Parameter * @return Description of the Return Value *************** *** 147,180 **** ! /** ! * Gets the tree attribute of the BeanContextPanel object ! * ! * @return The tree value ! */ ! public BeanContextTreeView getTree() { ! return this.tree; } ! /** Description of the Method */ ! public void selectRoot() { ! this.tree.selectRoot(); } /** ! * Sets the showRoot attribute of the BeanContextPanel object * ! * @param flag The new showRoot value */ ! public void setShowRoot(boolean flag) { ! if (!flag) ! { ! this.tree.expandPath(this.tree.getPathForRow(0)); ! } ! this.tree.setRootVisible(flag); } } --- 136,165 ---- ! /** Description of the Method */ ! public void selectRoot() { ! this.tree.selectRoot(); } ! /** ! * Sets the indexer attribute of the BeanContextTreePanel2 object ! * ! * @param indexer The new indexer value ! */ ! public void setIndexer(ObjectIndexer indexer) { ! this.tree.setIndexer(indexer); } /** ! * Sets the renderer attribute of the BeanContextTreePanel object * ! * @param renderer The new renderer value */ ! public void setRenderer(ObjectRenderer renderer) { ! this.tree.setRenderer(renderer); } } Index: GenericCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/GenericCustomizer.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** GenericCustomizer.java 3 Mar 2003 21:18:06 -0000 1.8 --- GenericCustomizer.java 15 Sep 2003 22:37:12 -0000 1.9 *************** *** 34,37 **** --- 34,38 ---- import javax.swing.JPanel; import javax.swing.JScrollPane; + import javax.swing.SwingConstants; import javax.swing.SwingUtilities; import javax.swing.border.TitledBorder; *************** *** 47,52 **** * Description of the Class * ! * @author letiembl ! * @created 8 avril 2002 * @version $Revision$ * @todo Non Supported classes displayed --- 48,52 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Non Supported classes displayed *************** *** 321,326 **** { propertydescriptor.getWriteMethod().invoke(object, new Object[]{ ! propertyeditor.getValue() ! }); } } --- 321,326 ---- { propertydescriptor.getWriteMethod().invoke(object, new Object[]{ ! propertyeditor.getValue() ! }); } } *************** *** 329,333 **** } ! JLabel jlabel = new JLabel(propertydescriptor.getDisplayName() + " : ", JLabel.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); --- 329,333 ---- } ! JLabel jlabel = new JLabel(propertydescriptor.getDisplayName() + " : ", SwingConstants.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); *************** *** 429,433 **** gridbagconstraints.insets = new Insets(3, 3, 3, 3); ! JLabel jlabel = new JLabel(propertydescriptor.getName() + " : ", JLabel.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); jlabel.setForeground(Color.black); --- 429,433 ---- gridbagconstraints.insets = new Insets(3, 3, 3, 3); ! JLabel jlabel = new JLabel(propertydescriptor.getName() + " : ", SwingConstants.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); jlabel.setForeground(Color.black); *************** *** 469,474 **** * * @author root - * @created 7 octobre 2001 * @version $Revision$ */ protected class BeanUpdater implements PropertyChangeListener --- 469,474 ---- * * @author root * @version $Revision$ + * @created 7 octobre 2001 */ protected class BeanUpdater implements PropertyChangeListener *************** *** 522,527 **** * * @author root - * @created 7 octobre 2001 * @version $Revision$ */ protected class EditorUpdater implements PropertyChangeListener --- 522,527 ---- * * @author root * @version $Revision$ + * @created 7 octobre 2001 */ protected class EditorUpdater implements PropertyChangeListener *************** *** 603,608 **** * * @author root - * @created 7 octobre 2001 * @version $Revision$ */ protected class MethodInvoker implements ActionListener --- 603,608 ---- * * @author root * @version $Revision$ + * @created 7 octobre 2001 */ protected class MethodInvoker implements ActionListener *************** *** 636,642 **** } if (methoddescriptor.getParameterDescriptors() == null ! && methoddescriptor.getMethod().getParameterTypes().length == 0 ! || methoddescriptor.getParameterDescriptors() != null ! && methoddescriptor.getParameterDescriptors().length == 0) { try --- 636,642 ---- } if (methoddescriptor.getParameterDescriptors() == null ! && methoddescriptor.getMethod().getParameterTypes().length == 0 ! || methoddescriptor.getParameterDescriptors() != null ! && methoddescriptor.getParameterDescriptors().length == 0) { try Index: GenericMBeanCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/GenericMBeanCustomizer.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GenericMBeanCustomizer.java 21 Feb 2003 22:47:49 -0000 1.6 --- GenericMBeanCustomizer.java 15 Sep 2003 22:37:12 -0000 1.7 *************** *** 36,51 **** import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.SwingUtilities; - import com.dreambean.awt.GenericPropertyCustomizer; - import org.ejtools.jmx.MBeanAccessor; import org.ejtools.util.ClassTools; /** * Description of the Class * ! * @author letiembl ! * @created 8 avril 2002 * @version $Revision$ * @todo Protected method to choose PropertyEditor by Class and Name --- 36,51 ---- import javax.swing.JPanel; import javax.swing.JScrollPane; + import javax.swing.SwingConstants; import javax.swing.SwingUtilities; import org.ejtools.jmx.MBeanAccessor; import org.ejtools.util.ClassTools; + import com.dreambean.awt.GenericPropertyCustomizer; + /** * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Protected method to choose PropertyEditor by Class and Name *************** *** 127,131 **** } ! JLabel jlabel = new JLabel(attributeInfo.getName() + " :", JLabel.RIGHT); jlabel.setToolTipText(attributeInfo.getDescription()); --- 127,131 ---- } ! JLabel jlabel = new JLabel(attributeInfo.getName() + " :", SwingConstants.RIGHT); jlabel.setToolTipText(attributeInfo.getDescription()); *************** *** 229,233 **** } ! JLabel jlabel = new JLabel(attributeInfo.getName() + " :", JLabel.RIGHT); jlabel.setToolTipText(attributeInfo.getDescription()); --- 229,233 ---- } ! JLabel jlabel = new JLabel(attributeInfo.getName() + " :", SwingConstants.RIGHT); jlabel.setToolTipText(attributeInfo.getDescription()); *************** *** 335,339 **** gridbagconstraints.insets = new Insets(3, 3, 3, 3); ! JLabel jlabel = new JLabel(attributeInfo.getName() + " :", JLabel.RIGHT); jlabel.setToolTipText(attributeInfo.getDescription()); --- 335,339 ---- gridbagconstraints.insets = new Insets(3, 3, 3, 3); ! JLabel jlabel = new JLabel(attributeInfo.getName() + " :", SwingConstants.RIGHT); jlabel.setToolTipText(attributeInfo.getDescription()); *************** *** 408,467 **** this.p.add(new JLabel(" "), gridbagconstraints); - /* - * if (mbai != null) - * { - * for (int i = 0; i < mbai.length; i++) - * { - * PropertyEditor propertyeditor = null; - * Class c = ClassTools.getClass(mbai[i].getType()); - * if (c == null) - * { - * addUnsupportedProperty(mbai[i]); - * } - * else - * { - * if (c.isArray()) - * { - * Class componentType = c.getComponentType(); - * propertyeditor = PropertyEditorManager.findEditor(componentType); - * if (propertyeditor == null) - * { - * propertyeditor = PropertyEditorManager.findEditor(String.class); - * } - * addArrayProperty(propertyeditor, mbai[i]); - * } - * else - * { - * propertyeditor = PropertyEditorManager.findEditor(c); - * if (propertyeditor == null) - * { - * propertyeditor = PropertyEditorManager.findEditor(String.class); - * } - * addProperty(propertyeditor, mbai[i]); - * } - * gridbagconstraints.weighty = 1.0D; - * } - * } - * } - * gridbagconstraints.gridwidth = GridBagConstraints.REMAINDER; - * gridbagconstraints.fill = GridBagConstraints.BOTH; - * /TODO : I18N - * JButton ubutton = new JButton("Unregister"); - * beanGui.add(ubutton, gridbagconstraints); - * ubutton.addActionListener(new UnregisterInvoker()); - * if (mboi != null) - * { - * for (int j = 0; j < mboi.length; j++) - * { - * if (!mboi[j].getName().startsWith("get") && !mboi[j].getName().startsWith("set") && !mboi[j].getName().startsWith("is")) - * { - * JButton jbutton = new JButton(mboi[j].getName()); - * jbutton.setToolTipText(mboi[j].getDescription()); - * beanGui.add(jbutton, gridbagconstraints); - * jbutton.addActionListener(new MethodInvoker(mboi[j])); - * } - * } - * } - */ validate(); repaint(); --- 408,411 ---- *************** *** 529,533 **** display.append(")"); ! JLabel label = new JLabel(display.toString(), JLabel.LEFT); label.setToolTipText(infos[i].getDescription()); this.mbeanConstructors.add(label, gridbagconstraints); --- 473,477 ---- display.append(")"); ! JLabel label = new JLabel(display.toString(), SwingConstants.LEFT); label.setToolTipText(infos[i].getDescription()); this.mbeanConstructors.add(label, gridbagconstraints); *************** *** 557,561 **** gridbagconstraints.weightx = 0.0D; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! label = new JLabel("ClassName : ", JLabel.RIGHT); label.setToolTipText("Class Name of the MBean"); label.setForeground(AwtToolkit.DARK_BLUE); --- 501,505 ---- gridbagconstraints.weightx = 0.0D; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! label = new JLabel("ClassName : ", SwingConstants.RIGHT); label.setToolTipText("Class Name of the MBean"); label.setForeground(AwtToolkit.DARK_BLUE); *************** *** 564,573 **** gridbagconstraints.weightx = 1.0D; gridbagconstraints.gridwidth = GridBagConstraints.REMAINDER; ! label = new JLabel(info.getClassName(), JLabel.LEFT); this.mbeanInfo.add(label, gridbagconstraints); gridbagconstraints.weightx = 0.0D; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! label = new JLabel("Description : ", JLabel.RIGHT); label.setToolTipText("Description of the MBean"); label.setForeground(AwtToolkit.DARK_BLUE); --- 508,517 ---- gridbagconstraints.weightx = 1.0D; gridbagconstraints.gridwidth = GridBagConstraints.REMAINDER; ! label = new JLabel(info.getClassName(), SwingConstants.LEFT); this.mbeanInfo.add(label, gridbagconstraints); gridbagconstraints.weightx = 0.0D; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! label = new JLabel("Description : ", SwingConstants.RIGHT); label.setToolTipText("Description of the MBean"); label.setForeground(AwtToolkit.DARK_BLUE); *************** *** 576,580 **** gridbagconstraints.weightx = 1.0D; gridbagconstraints.gridwidth = GridBagConstraints.REMAINDER; ! label = new JLabel(info.getDescription(), JLabel.LEFT); this.mbeanInfo.add(label, gridbagconstraints); } --- 520,524 ---- gridbagconstraints.weightx = 1.0D; gridbagconstraints.gridwidth = GridBagConstraints.REMAINDER; ! label = new JLabel(info.getDescription(), SwingConstants.LEFT); this.mbeanInfo.add(label, gridbagconstraints); } *************** *** 607,611 **** gridbagconstraints.gridheight = infos[i].getNotifTypes().length; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! JLabel label = new JLabel(infos[i].getName(), JLabel.RIGHT); label.setToolTipText(infos[i].getDescription()); label.setForeground(AwtToolkit.DARK_BLUE); --- 551,555 ---- gridbagconstraints.gridheight = infos[i].getNotifTypes().length; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! JLabel label = new JLabel(infos[i].getName(), SwingConstants.RIGHT); label.setToolTipText(infos[i].getDescription()); label.setForeground(AwtToolkit.DARK_BLUE); *************** *** 617,621 **** for (int j = 0; j < infos[i].getNotifTypes().length; j++) { ! label = new JLabel(infos[i].getNotifTypes()[j], JLabel.LEFT); this.mbeanNotifications.add(label, gridbagconstraints); } --- 561,565 ---- for (int j = 0; j < infos[i].getNotifTypes().length; j++) { ! label = new JLabel(infos[i].getNotifTypes()[j], SwingConstants.LEFT); this.mbeanNotifications.add(label, gridbagconstraints); } *************** *** 660,664 **** gridbagconstraints.gridwidth = 1; String returnType = ClassTools.classDisplay(infos[i].getReturnType()); ! JLabel label = new JLabel(returnType, JLabel.RIGHT); label.setForeground(AwtToolkit.DARK_BLUE); this.mbeanOperations.add(label, gridbagconstraints); --- 604,608 ---- gridbagconstraints.gridwidth = 1; String returnType = ClassTools.classDisplay(infos[i].getReturnType()); ! JLabel label = new JLabel(returnType, SwingConstants.RIGHT); label.setForeground(AwtToolkit.DARK_BLUE); this.mbeanOperations.add(label, gridbagconstraints); *************** *** 683,687 **** gridbagconstraints.weightx = 1.0D; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! label = new JLabel(display.toString(), JLabel.LEFT); label.setToolTipText(infos[i].getDescription()); this.mbeanOperations.add(label, gridbagconstraints); --- 627,631 ---- gridbagconstraints.weightx = 1.0D; gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE; ! label = new JLabel(display.toString(), SwingConstants.LEFT); label.setToolTipText(infos[i].getDescription()); this.mbeanOperations.add(label, gridbagconstraints); *************** *** 699,704 **** * * @author laurent - * @created 11 avril 2002 * @version $Revision$ */ class BeanUpdater implements PropertyChangeListener --- 643,648 ---- * * @author laurent * @version $Revision$ + * @created 11 avril 2002 */ class BeanUpdater implements PropertyChangeListener *************** *** 763,768 **** * * @author andreass - * @created November 24, 2000 * @version $Revision$ */ class EditorUpdater implements PropertyChangeListener --- 707,712 ---- * * @author andreass * @version $Revision$ + * @created November 24, 2000 */ class EditorUpdater implements PropertyChangeListener *************** *** 849,854 **** * * @author letiembl - * @created 10 janvier 2002 * @version $Revision$ */ class MethodInvoker implements ActionListener --- 793,798 ---- * * @author letiembl * @version $Revision$ + * @created 10 janvier 2002 */ class MethodInvoker implements ActionListener *************** *** 901,909 **** new GenericMBeanMethodDialog( ! object, ! object.getObjectName(), ! info, ! (Frame) frame ! ); } --- 845,853 ---- new GenericMBeanMethodDialog( ! object, ! object.getObjectName(), ! info, ! (Frame) frame ! ); } *************** *** 916,921 **** * * @author laurent - * @created 27 avril 2002 * @version $Revision$ */ class UnregisterInvoker implements ActionListener --- 860,865 ---- * * @author laurent * @version $Revision$ + * @created 27 avril 2002 */ class UnregisterInvoker implements ActionListener Index: GenericMBeanMethodDialog.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/GenericMBeanMethodDialog.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GenericMBeanMethodDialog.java 21 Feb 2003 22:47:47 -0000 1.6 --- GenericMBeanMethodDialog.java 15 Sep 2003 22:37:12 -0000 1.7 *************** *** 29,43 **** import javax.swing.JOptionPane; import javax.swing.JPanel; ! ! import com.dreambean.awt.GenericPropertyCustomizer; import org.ejtools.jmx.MBeanAccessor; import org.ejtools.util.ClassTools; /** * Description of the Class * ! * @author letiembl ! * @created 7 février 2002 * @version $Revision$ */ --- 29,43 ---- import javax.swing.JOptionPane; import javax.swing.JPanel; ! import javax.swing.SwingConstants; import org.ejtools.jmx.MBeanAccessor; import org.ejtools.util.ClassTools; + import com.dreambean.awt.GenericPropertyCustomizer; + /** * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ */ *************** *** 106,110 **** Class cl = ClassTools.getClass(lParameter.getType()); ! lName = new JLabel(lParameter.getName() + ":", JLabel.RIGHT); c.gridwidth = GridBagConstraints.RELATIVE; c.fill = GridBagConstraints.NONE; --- 106,110 ---- Class cl = ClassTools.getClass(lParameter.getType()); ! lName = new JLabel(lParameter.getName() + ":", SwingConstants.RIGHT); c.gridwidth = GridBagConstraints.RELATIVE; c.fill = GridBagConstraints.NONE; *************** *** 217,232 **** { Object lReturn = mConnector.invoke( ! mOperation.getName(), ! params, ! lTypes ! ); if (lReturn != null) { JOptionPane.showMessageDialog( ! this, ! lReturn.toString(), ! "Result", ! JOptionPane.INFORMATION_MESSAGE ! ); } } --- 217,232 ---- { Object lReturn = mConnector.invoke( ! mOperation.getName(), ! params, ! lTypes ! ); if (lReturn != null) { JOptionPane.showMessageDialog( ! this, ! lReturn.toString(), ! "Result", ! JOptionPane.INFORMATION_MESSAGE ! ); } } *************** *** 235,243 **** System.err.println(ex); JOptionPane.showMessageDialog( ! this, ! "An exception occured. Check log for details", ! "Error", ! JOptionPane.ERROR_MESSAGE ! ); } } --- 235,243 ---- System.err.println(ex); JOptionPane.showMessageDialog( ! this, ! "An exception occured. Check log for details", ! "Error", ! JOptionPane.ERROR_MESSAGE ! ); } } *************** *** 250,255 **** * * @author letiembl - * @created 7 février 2002 * @version $Revision$ */ private class Editor --- 250,255 ---- * * @author letiembl * @version $Revision$ + * @created 7 f?vrier 2002 */ private class Editor Index: GenericMethodDialog.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/GenericMethodDialog.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GenericMethodDialog.java 17 Dec 2002 17:14:01 -0000 1.3 --- GenericMethodDialog.java 15 Sep 2003 22:37:12 -0000 1.4 *************** *** 32,41 **** /** ! * @author letiembl ! * @created 24 septembre 2002 * @version $Revision$ */ public class GenericMethodDialog extends JDialog ! implements ActionListener { /** Description of the Field */ --- 32,40 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ public class GenericMethodDialog extends JDialog ! implements ActionListener { /** Description of the Field */ Index: SimpleCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/SimpleCustomizer.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** SimpleCustomizer.java 3 Mar 2003 21:18:05 -0000 1.8 --- SimpleCustomizer.java 15 Sep 2003 22:37:12 -0000 1.9 *************** *** 33,50 **** import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.SwingUtilities; - import com.dreambean.awt.GenericMethodDialog; - import com.dreambean.awt.GenericPropertyCustomizer; - import org.ejtools.adwt.editor.ArrayEditor; import org.ejtools.beans.CustomPropertyEditorManager; import org.ejtools.util.ClassTools; /** * Description of the Class * ! * @author letiembl ! * @created 8 avril 2002 * @version $Revision$ * @todo Non Supported classes displayed --- 33,50 ---- import javax.swing.JOptionPane; import javax.swing.JPanel; + import javax.swing.SwingConstants; import javax.swing.SwingUtilities; import org.ejtools.adwt.editor.ArrayEditor; import org.ejtools.beans.CustomPropertyEditorManager; import org.ejtools.util.ClassTools; + import com.dreambean.awt.GenericMethodDialog; + import com.dreambean.awt.GenericPropertyCustomizer; + /** * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Non Supported classes displayed *************** *** 232,237 **** { if (!md[j].getName().startsWith("get") ! && !md[j].getName().startsWith("set") ! && !md[j].getName().startsWith("is")) { JButton jbutton = new JButton(md[j].getDisplayName()); --- 232,237 ---- { if (!md[j].getName().startsWith("get") ! && !md[j].getName().startsWith("set") ! && !md[j].getName().startsWith("is")) { JButton jbutton = new JButton(md[j].getDisplayName()); *************** *** 274,279 **** { propertydescriptor.getWriteMethod().invoke(object, new Object[]{ ! propertyeditor.getValue() ! }); } } --- 274,279 ---- { propertydescriptor.getWriteMethod().invoke(object, new Object[]{ ! propertyeditor.getValue() ! }); } } *************** *** 283,287 **** } ! JLabel jlabel = new JLabel(propertydescriptor.getDisplayName() + " : ", JLabel.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); --- 283,287 ---- } ! JLabel jlabel = new JLabel(propertydescriptor.getDisplayName() + " : ", SwingConstants.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); *************** *** 383,387 **** gridbagconstraints.insets = new Insets(3, 3, 3, 3); ! JLabel jlabel = new JLabel(propertydescriptor.getName() + " : ", JLabel.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); jlabel.setForeground(Color.black); --- 383,387 ---- gridbagconstraints.insets = new Insets(3, 3, 3, 3); ! JLabel jlabel = new JLabel(propertydescriptor.getName() + " : ", SwingConstants.RIGHT); jlabel.setToolTipText(propertydescriptor.getShortDescription()); jlabel.setForeground(Color.black); *************** *** 423,428 **** * * @author root - * @created 7 octobre 2001 * @version $Revision$ * @todo I18N */ --- 423,428 ---- * * @author root * @version $Revision$ + * @created 7 octobre 2001 * @todo I18N */ *************** *** 477,482 **** * * @author root - * @created 7 octobre 2001 * @version $Revision$ */ protected class EditorUpdater implements PropertyChangeListener --- 477,482 ---- * * @author root * @version $Revision$ + * @created 7 octobre 2001 */ protected class EditorUpdater implements PropertyChangeListener *************** *** 559,564 **** * * @author root - * @created 7 octobre 2001 * @version $Revision$ */ protected class MethodInvoker implements ActionListener --- 559,564 ---- * * @author root * @version $Revision$ + * @created 7 octobre 2001 */ protected class MethodInvoker implements ActionListener *************** *** 592,598 **** } if (this.methodDescriptor.getParameterDescriptors() == null ! && this.methodDescriptor.getMethod().getParameterTypes().length == 0 ! || this.methodDescriptor.getParameterDescriptors() != null ! && this.methodDescriptor.getParameterDescriptors().length == 0) { try --- 592,598 ---- } if (this.methodDescriptor.getParameterDescriptors() == null ! && this.methodDescriptor.getMethod().getParameterTypes().length == 0 ! || this.methodDescriptor.getParameterDescriptors() != null ! && this.methodDescriptor.getParameterDescriptors().length == 0) { try --- BeanContextTreeView.java DELETED --- |
|
From: <let...@us...> - 2003-09-15 22:37:48
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/help In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action/help Modified Files: AboutAction.java HelpOnLineAction.java TOTDAction.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: AboutAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/help/AboutAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** AboutAction.java 21 Feb 2003 22:47:51 -0000 1.6 --- AboutAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: HelpOnLineAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/help/HelpOnLineAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** HelpOnLineAction.java 21 Feb 2003 22:47:52 -0000 1.6 --- HelpOnLineAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: TOTDAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/help/TOTDAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TOTDAction.java 21 Feb 2003 22:47:51 -0000 1.6 --- TOTDAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete |
|
From: <let...@us...> - 2003-09-15 22:37:48
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action Modified Files: Command.java CommandAction.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: Command.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/Command.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Command.java 8 Jan 2003 21:11:13 -0000 1.5 --- Command.java 15 Sep 2003 22:37:12 -0000 1.6 *************** *** 11,16 **** * Interface needed to implement to Command Pattern. * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ */ --- 11,15 ---- * Interface needed to implement to Command Pattern. * ! * @author Laurent Etiemble * @version $Revision$ */ Index: CommandAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/CommandAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CommandAction.java 8 Jan 2003 21:11:13 -0000 1.6 --- CommandAction.java 15 Sep 2003 22:37:12 -0000 1.7 *************** *** 29,37 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 2 novembre 2001 * @version $Revision$ * @todo Javadoc to complete - * @todo Add support for tooltip */ public class CommandAction extends CustomBeanContextServicesSupport implements Action --- 29,35 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete */ public class CommandAction extends CustomBeanContextServicesSupport implements Action |
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/edit In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action/edit Modified Files: CopyAction.java CutAction.java DeleteAction.java DeselectAllAction.java PasteAction.java SelectAllAction.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: CopyAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/edit/CopyAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CopyAction.java 21 Feb 2003 22:48:02 -0000 1.7 --- CopyAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: CutAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/edit/CutAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CutAction.java 21 Feb 2003 22:48:03 -0000 1.7 --- CutAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: DeleteAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/edit/DeleteAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DeleteAction.java 21 Feb 2003 22:48:03 -0000 1.6 --- DeleteAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: DeselectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/edit/DeselectAllAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** DeselectAllAction.java 21 Feb 2003 22:48:04 -0000 1.7 --- DeselectAllAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: PasteAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/edit/PasteAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PasteAction.java 21 Feb 2003 22:48:03 -0000 1.7 --- PasteAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: SelectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/edit/SelectAllAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SelectAllAction.java 21 Feb 2003 22:48:02 -0000 1.7 --- SelectAllAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete |
|
From: <let...@us...> - 2003-09-15 22:37:48
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action/file Modified Files: ExitAction.java FileHistoryAction.java FileHistoryActionTop.java NewAction.java OpenAction.java PrintAction.java SaveAction.java SaveAsAction.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: ExitAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/ExitAction.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ExitAction.java 21 Feb 2003 22:47:54 -0000 1.8 --- ExitAction.java 15 Sep 2003 22:37:13 -0000 1.9 *************** *** 16,21 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 16,20 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: FileHistoryAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/FileHistoryAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FileHistoryAction.java 21 Feb 2003 22:47:54 -0000 1.6 --- FileHistoryAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: FileHistoryActionTop.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/FileHistoryActionTop.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FileHistoryActionTop.java 21 Feb 2003 22:47:55 -0000 1.7 --- FileHistoryActionTop.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 16,21 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 16,20 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: NewAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/NewAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** NewAction.java 21 Feb 2003 22:47:54 -0000 1.7 --- NewAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: OpenAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/OpenAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** OpenAction.java 21 Feb 2003 22:47:54 -0000 1.7 --- OpenAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: PrintAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/PrintAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PrintAction.java 21 Feb 2003 22:47:55 -0000 1.6 --- PrintAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 18 mars 2002 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: SaveAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/SaveAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SaveAction.java 21 Feb 2003 22:47:54 -0000 1.7 --- SaveAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: SaveAsAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/SaveAsAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** SaveAsAction.java 21 Feb 2003 22:47:55 -0000 1.6 --- SaveAsAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete |
|
From: <let...@us...> - 2003-09-15 22:37:48
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/action In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action/action Modified Files: RefreshAction.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: RefreshAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/action/RefreshAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RefreshAction.java 21 Feb 2003 22:48:10 -0000 1.3 --- RefreshAction.java 15 Sep 2003 22:37:12 -0000 1.4 *************** *** 15,20 **** * Description of the Class * ! * @author letiemble ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete |
|
From: <let...@us...> - 2003-09-15 22:37:46
|
Update of /cvsroot/ejtools/libraries/adwt
In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt
Modified Files:
.cvsignore
Added Files:
.classpath .project
Removed Files:
module.properties
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
--- NEW FILE: .classpath ---
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main"/>
<classpathentry kind="src" path="src/resources"/>
<classpathentry kind="src" path="src/test"/>
<classpathentry kind="src" path="/ejtools-libraries-common"/>
<classpathentry kind="src" path="/ejtools-libraries-icons"/>
<classpathentry kind="src" path="/ejtools-thirdparty"/>
<classpathentry kind="var" path="JRE_LIB" sourcepath="JDK_SRC"/>
<classpathentry kind="var" path="MAVEN_REPO/dreambean/jars/awt-1.0.jar"/>
<classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"/>
<classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.8.jar"/>
<classpathentry kind="var" path="MAVEN_REPO/mx4j/jars/mx4j-jmx-1.1.1.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
--- NEW FILE: .project ---
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ejtools-libraries-adwt</name>
<comment></comment>
<projects>
<project>ejtools-libraries-common</project>
<project>ejtools-libraries-icons</project>
<project>ejtools-thirdparty</project>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
Index: .cvsignore
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** .cvsignore 3 Mar 2003 21:30:43 -0000 1.2
--- .cvsignore 15 Sep 2003 22:37:12 -0000 1.3
***************
*** 1,3 ****
! dist
! output
! target
--- 1,4 ----
! bin
! dist
! output
! target
--- module.properties DELETED ---
|
|
From: <let...@us...> - 2003-09-15 22:37:22
|
Update of /cvsroot/ejtools/libraries/adwt/src/test/test/adwt/editor
In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/test/test/adwt/editor
Modified Files:
EditorsTest.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: EditorsTest.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/test/test/adwt/editor/EditorsTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** EditorsTest.java 21 Feb 2003 22:41:28 -0000 1.1
--- EditorsTest.java 15 Sep 2003 22:37:15 -0000 1.2
***************
*** 8,11 ****
--- 8,12 ----
import java.beans.PropertyEditor;
+ import java.beans.PropertyEditorManager;
import java.net.URL;
import java.net.URLClassLoader;
***************
*** 15,25 ****
import javax.management.ObjectName;
- import junit.framework.TestCase;
-
import org.ejtools.beans.CustomPropertyEditorManager;
/**
! * @author letiemble
! * @created 21 février 2003
* @version $Revision$
*/
--- 16,25 ----
import javax.management.ObjectName;
import org.ejtools.beans.CustomPropertyEditorManager;
+ import junit.framework.TestCase;
+
/**
! * @author Laurent Etiemble
* @version $Revision$
*/
***************
*** 27,31 ****
{
! /**Constructor for the CustomPropertyEditorManagerTest object */
public EditorsTest()
{
--- 27,31 ----
{
! /** Constructor for the CustomPropertyEditorManagerTest object */
public EditorsTest()
{
***************
*** 35,39 ****
/**
! *Constructor for the CustomPropertyEditorManagerTest object
*
* @param name Description of the Parameter
--- 35,39 ----
/**
! * Constructor for the CustomPropertyEditorManagerTest object
*
* @param name Description of the Parameter
***************
*** 48,53 ****
public void testAppend()
{
! PropertyEditor editor = CustomPropertyEditorManager.findEditor(String.class);
! String[] paths = CustomPropertyEditorManager.getEditorSearchPath();
boolean found = false;
for (int i = 0; i < paths.length; i++)
--- 48,53 ----
public void testAppend()
{
! CustomPropertyEditorManager.findEditor(String.class);
! String[] paths = PropertyEditorManager.getEditorSearchPath();
boolean found = false;
for (int i = 0; i < paths.length; i++)
***************
*** 59,63 ****
}
}
! assertTrue("EJTools package must be registered for search : found " + CustomPropertyEditorManager.getEditorSearchPath(), found);
}
--- 59,63 ----
}
}
! assertTrue("EJTools package must be registered for search : found " + PropertyEditorManager.getEditorSearchPath(), found);
}
|
|
From: <let...@us...> - 2003-09-15 22:37:22
|
Update of /cvsroot/ejtools/libraries/adwt/src/test/test/adwt In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/test/test/adwt Added Files: TestList.java TestTree.java TestTreePanel.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 --- NEW FILE: TestList.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package test.adwt; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import org.ejtools.adwt.BeanContextList; import org.ejtools.adwt.BeanContextListModel; import org.ejtools.adwt.service.AboutServiceProvider; import org.ejtools.adwt.service.SDIFrameServiceProvider; import org.ejtools.beans.beancontext.CustomBeanContextServicesSupport; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public class TestList extends CustomBeanContextServicesSupport { /** Constructor for the TestTree object */ public TestList() { SDIFrameServiceProvider frameService = new SDIFrameServiceProvider(); AboutServiceProvider aboutProvider = new AboutServiceProvider(); // Add a window hook frameService.addWindowListener( new WindowAdapter() { public void windowClosing(WindowEvent e) { super.windowClosing(e); System.exit(0); } }); BeanContextListModel model = new BeanContextListModel(this); BeanContextList tree = new BeanContextList(model); frameService.setContent(tree); this.add(frameService); this.add(aboutProvider); } /** * The main program for the TestTree class * * @param args The command line arguments */ public static void main(String[] args) { TestList test = new TestList(); } } --- NEW FILE: TestTree.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package test.adwt; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.net.URL; import org.ejtools.adwt.BeanContextTree; import org.ejtools.adwt.BeanContextTreeModel; import org.ejtools.adwt.service.AboutServiceProvider; import org.ejtools.adwt.service.HistoryService; import org.ejtools.adwt.service.HistoryServiceProvider; import org.ejtools.adwt.service.SDIFrameServiceProvider; import org.ejtools.beans.beancontext.CustomBeanContextServicesSupport; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public class TestTree extends CustomBeanContextServicesSupport { /** Constructor for the TestTree object */ public TestTree() { SDIFrameServiceProvider frameService = new SDIFrameServiceProvider(); HistoryServiceProvider historyProvider = new HistoryServiceProvider( new HistoryService.Holder() { public void loadResource(URL url, Object context) { } }, 4); AboutServiceProvider aboutProvider = new AboutServiceProvider(); // Add a window hook frameService.addWindowListener( new WindowAdapter() { public void windowClosing(WindowEvent e) { super.windowClosing(e); System.exit(0); } }); BeanContextTreeModel model = new BeanContextTreeModel(this); BeanContextTree tree = new BeanContextTree(model); frameService.setContent(tree); this.add(frameService); this.add(aboutProvider); this.add(historyProvider); } /** * The main program for the TestTree class * * @param args The command line arguments * @exception Exception Description of the Exception */ public static void main(String[] args) throws Exception { final TestTree test = new TestTree(); Thread t = new Thread() { public void run() { try { for (int i = 0; i < 10; i++) { Thread.sleep(1000); test.add(new AboutServiceProvider()); } } catch (Exception e) { } } }; t.start(); } } --- NEW FILE: TestTreePanel.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package test.adwt; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.net.URL; import org.ejtools.adwt.BeanContextTreePanel; import org.ejtools.adwt.service.AboutServiceProvider; import org.ejtools.adwt.service.HistoryService; import org.ejtools.adwt.service.HistoryServiceProvider; import org.ejtools.adwt.service.SDIFrameServiceProvider; import org.ejtools.beans.beancontext.CustomBeanContextServicesSupport; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public class TestTreePanel extends CustomBeanContextServicesSupport { /** Constructor for the TestTree object */ public TestTreePanel() { SDIFrameServiceProvider frameService = new SDIFrameServiceProvider(); HistoryServiceProvider historyProvider = new HistoryServiceProvider( new HistoryService.Holder() { public void loadResource(URL url, Object context) { } }, 4); AboutServiceProvider aboutProvider = new AboutServiceProvider(); // Add a window hook frameService.addWindowListener( new WindowAdapter() { public void windowClosing(WindowEvent e) { super.windowClosing(e); System.exit(0); } }); BeanContextTreePanel panel = new BeanContextTreePanel(this); frameService.setContent(panel); this.add(frameService); this.add(aboutProvider); this.add(historyProvider); } /** * The main program for the TestTree class * * @param args The command line arguments * @exception Exception Description of the Exception */ public static void main(String[] args) throws Exception { final TestTreePanel test = new TestTreePanel(); Thread t = new Thread() { public void run() { try { for (int i = 0; i < 10; i++) { Thread.sleep(1000); test.add(new AboutServiceProvider()); } } catch (Exception e) { } } }; t.start(); } } |
|
From: <let...@us...> - 2003-09-15 22:37:22
|
Update of /cvsroot/ejtools/libraries/adwt/xdocs In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/xdocs Modified Files: index.xml 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: index.xml =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/xdocs/index.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.xml 8 Mar 2003 20:52:12 -0000 1.2 --- index.xml 15 Sep 2003 22:37:15 -0000 1.3 *************** *** 1,29 **** ! <?xml version="1.0" encoding="ISO-8859-1"?> ! <!-- ! # ================================================================================ ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # ================================================================================ ! --> ! <document> ! <properties> ! <title>ADvanced Window Tools</title> ! </properties> ! <body> ! <section name="ADvanced Window Tools"> ! <subsection name="Overview"> ! <p>This library has for primary goal to drastically simplify the development of a Swing application.</p> ! <p>The library mix several concepts and design patterns :<ul> ! <li>the JavaBeans core and services (see the <a href="http://java.sun.com/products/javabeans/">specifications</a>). JavaBeans provide simple and powerful coding conventions, and especially the Glasgow specifications with its BeanContextServices concept.</li> ! <li>the JavaBeans oriented design by Rickard Öberg (see <a href="http://www.dreambean.com">www.dreambean.com</a> for details). He has developped a small framework to simplify the writing of Customizer and PropertyEditor, which allow to display JavaBean into a Swing GUI.</li> ! <li>the P.A.C. (Proxy-Abstraction-Control) design pattern and the menu negotiation as described by Allan Holub (see the <a href="http://www.javaworld.com/javaworld/jw-07-1999/jw-07-toolbox.html">article series</a>).</li> ! </ul> ! </p> ! </subsection> ! </section> ! </body> ! </document> --- 1,29 ---- ! <?xml version="1.0" encoding="ISO-8859-1"?> ! <!-- ! # ================================================================================ ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # ================================================================================ ! --> ! <document> ! <properties> ! <title>ADvanced Window Tools</title> ! </properties> ! <body> ! <section name="ADvanced Window Tools"> ! <subsection name="Overview"> ! <p>This library has for primary goal to drastically simplify the development of a Swing application.</p> ! <p>The library mix several concepts and design patterns :<ul> ! <li>the JavaBeans core and services (see the <a href="http://java.sun.com/products/javabeans/">specifications</a>). JavaBeans provide simple and powerful coding conventions, and especially the Glasgow specifications with its BeanContextServices concept.</li> ! <li>the JavaBeans oriented design by Rickard Öberg (see <a href="http://www.dreambean.com">www.dreambean.com</a> for details). He has developped a small framework to simplify the writing of Customizer and PropertyEditor, which allow to display JavaBean into a Swing GUI.</li> ! <li>the P.A.C. (Proxy-Abstraction-Control) design pattern and the menu negotiation as described by Allan Holub (see the <a href="http://www.javaworld.com/javaworld/jw-07-1999/jw-07-toolbox.html">article series</a>).</li> ! </ul> ! </p> ! </subsection> ! </section> ! </body> ! </document> |
|
From: <let...@us...> - 2003-09-15 22:37:22
|
Update of /cvsroot/ejtools/libraries/adwt/src/test/test/adwt/action
In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/test/test/adwt/action
Modified Files:
ActionTest.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: ActionTest.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/test/test/adwt/action/ActionTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ActionTest.java 21 Feb 2003 22:41:28 -0000 1.1
--- ActionTest.java 15 Sep 2003 22:37:15 -0000 1.2
***************
*** 7,12 ****
package test.adwt.action;
- import junit.framework.TestCase;
-
import org.ejtools.adwt.action.Command;
import org.ejtools.adwt.action.CommandAction;
--- 7,10 ----
***************
*** 36,42 ****
import org.ejtools.adwt.action.window.TileAction;
/**
! * @author letiemble
! * @created 21 février 2003
* @version $Revision$
*/
--- 34,41 ----
import org.ejtools.adwt.action.window.TileAction;
+ import junit.framework.TestCase;
+
/**
! * @author Laurent Etiemble
* @version $Revision$
*/
***************
*** 122,136 ****
assertNotNull("Action must be not null", action);
! // Package org.ejtools.adwt.action.help
! action = new CascadeAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAllAction(command);
! assertNotNull("Action must be not null", action);
! action = new InternalFrameAction(command);
! assertNotNull("Action must be not null", action);
! action = new TileAction(command);
! assertNotNull("Action must be not null", action);
}
}
--- 121,135 ----
assertNotNull("Action must be not null", action);
! // Package org.ejtools.adwt.action.help
! action = new CascadeAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAction(command);
! assertNotNull("Action must be not null", action);
! action = new CloseAllAction(command);
! assertNotNull("Action must be not null", action);
! action = new InternalFrameAction(command);
! assertNotNull("Action must be not null", action);
! action = new TileAction(command);
! assertNotNull("Action must be not null", action);
}
}
|
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
|
|
From: <let...@us...> - 2003-09-15 22:37:21
|
Update of /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/jmx In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/resources/org/ejtools/adwt/jmx Modified Files: Resources.properties Resources_fr_FR.properties 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: Resources.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/jmx/Resources.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Resources.properties 21 Feb 2003 22:27:40 -0000 1.1 --- Resources.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,19 **** ! # ------------------------------------------------------------ ! # ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at www.gnu.org. ! # ! # Feedback and support at http://sourceforge.net/project/ejtools ! # ! # ------------------------------------------------------------ ! ! # Text for Invocation Dialog ! invoke.dialog.title=Executer une Opération ! invoke.dialog.title.error=Erreur ! invoke.dialog.text.operation=Opération ! invoke.dialog.text.unloadable.class=Classe non trouvée ! invoke.dialog.text.error=Une exception est survenue. Consultez les logs. ! invoke.dialog.button.invoke=Executer ! invoke.dialog.button.cancel=Annuler --- 1,19 ---- ! # ------------------------------------------------------------ ! # ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at www.gnu.org. ! # ! # Feedback and support at http://sourceforge.net/project/ejtools ! # ! # ------------------------------------------------------------ ! ! # Text for Invocation Dialog ! invoke.dialog.title=Invoke Operation ! invoke.dialog.title.error=Error ! invoke.dialog.text.operation=Operation ! invoke.dialog.text.unloadable.class=Unloadable Class ! invoke.dialog.text.error=An exception occured. Check log for details. ! invoke.dialog.button.invoke=Invoke ! invoke.dialog.button.cancel=Cancel Index: Resources_fr_FR.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/jmx/Resources_fr_FR.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Resources_fr_FR.properties 21 Feb 2003 22:27:40 -0000 1.1 --- Resources_fr_FR.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,19 **** ! # ------------------------------------------------------------ ! # ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at www.gnu.org. ! # ! # Feedback and support at http://sourceforge.net/project/ejtools ! # ! # ------------------------------------------------------------ ! ! # Text for Invocation Dialog ! invoke.dialog.title=Invoke Operation ! invoke.dialog.title.error=Error ! invoke.dialog.text.operation=Operation ! invoke.dialog.text.unloadable.class=Unloadable Class ! invoke.dialog.text.error=An exception occured. Check log for details. ! invoke.dialog.button.invoke=Invoke ! invoke.dialog.button.cancel=Cancel --- 1,19 ---- ! # ------------------------------------------------------------ ! # ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at www.gnu.org. ! # ! # Feedback and support at http://sourceforge.net/project/ejtools ! # ! # ------------------------------------------------------------ ! ! # Text for Invocation Dialog ! invoke.dialog.title=Executer une Opération ! invoke.dialog.title.error=Erreur ! invoke.dialog.text.operation=Opération ! invoke.dialog.text.unloadable.class=Classe non trouvée ! invoke.dialog.text.error=Une exception est survenue. Consultez les logs. ! invoke.dialog.button.invoke=Executer ! invoke.dialog.button.cancel=Annuler |
|
From: <let...@us...> - 2003-09-15 22:37:21
|
Update of /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/service In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/resources/org/ejtools/adwt/service Modified Files: ConsoleService.properties ConsoleService_fr_FR.properties 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: ConsoleService.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/service/ConsoleService.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ConsoleService.properties 21 Feb 2003 22:27:40 -0000 1.1 --- ConsoleService.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,4 **** ! # ! # Console Service ! # ! frame.title=Console --- 1,4 ---- ! # ! # Console Service ! # ! frame.title=Console Index: ConsoleService_fr_FR.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/service/ConsoleService_fr_FR.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ConsoleService_fr_FR.properties 21 Feb 2003 22:27:40 -0000 1.1 --- ConsoleService_fr_FR.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,4 **** ! # ! # Console Service ! # ! frame.title=Console --- 1,4 ---- ! # ! # Console Service ! # ! frame.title=Console |
|
From: <let...@us...> - 2003-09-15 22:37:21
|
Update of /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/editor In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/resources/org/ejtools/adwt/editor Modified Files: Resources.properties Resources_fr_FR.properties 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: Resources.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/editor/Resources.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Resources.properties 21 Feb 2003 22:27:42 -0000 1.1 --- Resources.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,2 **** ! # Text for editors ! ObjectNameEditor.button.view=View --- 1,2 ---- ! # Text for editors ! ObjectNameEditor.button.view=View Index: Resources_fr_FR.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/editor/Resources_fr_FR.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Resources_fr_FR.properties 21 Feb 2003 22:27:42 -0000 1.1 --- Resources_fr_FR.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,2 **** ! # Text for editors ! ObjectNameEditor.button.view=Voir --- 1,2 ---- ! # Text for editors ! ObjectNameEditor.button.view=Voir |
|
From: <let...@us...> - 2003-09-15 22:37:20
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/util In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/util Modified Files: DefaultObjectIndexer.java DefaultObjectRenderer.java ObjectIndexer.java ObjectRenderer.java ObjectWrapper.java Added Files: ObjectSearcher.java SearchableTreeModel.java Removed Files: ObjectFinder.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 --- NEW FILE: ObjectSearcher.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt.util; /** * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public interface ObjectSearcher { /** * Description of the Method * * @param o Description of the Parameter * @return Description of the Return Value */ public Object find(Object o); /** * Sets the indexer attribute of the ObjectSearcher object * * @param indexer The new indexer value */ public void setIndexer(ObjectIndexer indexer); } --- NEW FILE: SearchableTreeModel.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt.util; import javax.swing.tree.TreeModel; /** * Description of the Interface * * @author Laurent Etiemble * @version $Revision: 1.1 $ */ public interface SearchableTreeModel extends TreeModel, ObjectSearcher { } Index: DefaultObjectIndexer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/util/DefaultObjectIndexer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DefaultObjectIndexer.java 27 Jan 2003 21:23:41 -0000 1.1 --- DefaultObjectIndexer.java 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 10,15 **** /** ! * @author letiemble ! * @created 21 janvier 2003 * @version $Revision$ */ --- 10,14 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ Index: DefaultObjectRenderer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/util/DefaultObjectRenderer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DefaultObjectRenderer.java 27 Jan 2003 21:23:41 -0000 1.1 --- DefaultObjectRenderer.java 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 14,27 **** import java.security.AccessController; import java.security.PrivilegedAction; import javax.swing.Icon; /** ! * @author letiemble ! * @created 21 janvier 2003 * @version $Revision$ */ public class DefaultObjectRenderer implements ObjectRenderer { /** * Gets the icon attribute of the DefaultObjectRenderer object --- 14,32 ---- import java.security.AccessController; import java.security.PrivilegedAction; + import java.util.Hashtable; + import java.util.Map; import javax.swing.Icon; /** ! * @author Laurent Etiemble * @version $Revision$ */ public class DefaultObjectRenderer implements ObjectRenderer { + /** Description of the Field */ + protected Map objects = new Hashtable(); + + /** * Gets the icon attribute of the DefaultObjectRenderer object *************** *** 30,36 **** * @return The icon value */ ! public Icon getIcon(ObjectWrapper o) { ! return o.getIcon(); } --- 35,41 ---- * @return The icon value */ ! public Icon getIcon(Object o) { ! return this.getObjectWrapper(o).getIcon(); } *************** *** 42,48 **** * @return The label value */ ! public String getLabel(ObjectWrapper o) { ! return o.toString(); } --- 47,71 ---- * @return The label value */ ! public String getLabel(Object o) { ! return this.getObjectWrapper(o).toString(); ! } ! ! ! /** ! * Gets the objectWrapper attribute of the DefaultObjectRenderer object ! * ! * @param o Description of the Parameter ! * @return The objectWrapper value ! */ ! protected ObjectWrapper getObjectWrapper(Object o) ! { ! ObjectWrapper wrapper = (ObjectWrapper) this.objects.get(o); ! if (wrapper == null) ! { ! wrapper = new ObjectWrapper(o); ! this.objects.put(o, wrapper); ! } ! return wrapper; } Index: ObjectIndexer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/util/ObjectIndexer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjectIndexer.java 27 Jan 2003 21:23:38 -0000 1.1 --- ObjectIndexer.java 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 9,14 **** /** ! * @author letiemble ! * @created 21 janvier 2003 * @version $Revision$ */ --- 9,13 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ Index: ObjectRenderer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/util/ObjectRenderer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjectRenderer.java 27 Jan 2003 21:23:41 -0000 1.1 --- ObjectRenderer.java 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 10,15 **** /** ! * @author letiemble ! * @created 21 janvier 2003 * @version $Revision$ */ --- 10,14 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ *************** *** 22,26 **** * @return The icon value */ ! public Icon getIcon(ObjectWrapper o); --- 21,25 ---- * @return The icon value */ ! public Icon getIcon(Object o); *************** *** 31,34 **** * @return The label value */ ! public String getLabel(ObjectWrapper o); } --- 30,33 ---- * @return The label value */ ! public String getLabel(Object o); } Index: ObjectWrapper.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/util/ObjectWrapper.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjectWrapper.java 27 Jan 2003 21:23:41 -0000 1.1 --- ObjectWrapper.java 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 19,24 **** /** ! * @author letiemble ! * @created 21 janvier 2003 * @version $Revision$ */ --- 19,23 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ --- ObjectFinder.java DELETED --- |
|
From: <let...@us...> - 2003-09-15 22:37:20
|
Update of /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/action In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/resources/org/ejtools/adwt/action Modified Files: Resources.properties Resources_fr_FR.properties 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: Resources.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/action/Resources.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Resources.properties 21 Feb 2003 22:27:40 -0000 1.1 --- Resources.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,142 **** ! action.action=Action ! ! action.action.mnemonic=65 ! ! action.action.refresh.accelerator=control R ! ! action.action.refresh=Refresh ! ! action.action.refresh.mnemonic=82 ! ! action.action.refresh.tooltip=Refresh ! ! action.edit.copy.accelerator=control C ! ! action.edit.copy.mnemonic=67 ! ! action.edit.copy.tooltip=Copy selection ! ! action.edit.copy=Copy ! ! action.edit.cut.accelerator=control X ! ! action.edit.cut.mnemonic=84 ! ! action.edit.cut.tooltip=Cut selection ! ! action.edit.cut=Cut ! ! action.edit.delete.accelerator=DELETE ! ! action.edit.delete=Delete ! ! action.edit.delete.mnemonic=68 ! ! action.edit.delete.tooltip=Delete ! ! action.edit.deselect.all=Deselect All ! ! action.edit.paste=Paste ! ! action.edit.paste.accelerator=control V ! ! action.edit.paste.mnemonic=80 ! ! action.edit.paste.tooltip=Paste selection ! ! action.edit.select.all.mnemonic=65 ! ! action.edit.select.all.tooltip=Select All ! ! action.edit=Edit ! ! action.edit.mnemonic=69 ! ! action.edit.select.all.accelerator=control A ! ! action.edit.select.all=Select All ! ! action.file.exit.accelerator=control Q ! ! action.file.exit.mnemonic=81 ! ! action.file.exit.tooltip=Quit ! ! action.file.exit=Quit ! ! action.file.history=... ! ! action.file.mnemonic=70 ! ! # Actions items ! action.file.new=New ! ! action.file.new.accelerator=control N ! ! action.file.new.mnemonic=78 ! ! action.file.open.accelerator=control O ! ! action.file.open.mnemonic=79 ! ! action.file.open.tooltip=Open ! ! action.file.open=Open ! ! action.file.print=Print ! ! action.file.save.accelerator=control S ! ! action.file.save.as=Save As... ! ! action.file.save.tooltip=Save ! ! # Actions ! action.file=File ! ! action.file.new.tooltip=New ! ! action.file.save.mnemonic=83 ! ! action.file.save=Save ! ! action.help=Help ! ! action.help.about=About ! ! action.help.about.tooltip=About EJTools ! ! action.help.mnemonic=72 ! ! action.help.online=Online help ! ! action.help.totd=Tip of the day ! ! action.options=Options ! ! action.options.mnemonic=79 ! ! action.tools=Tools ! ! action.tools.mnemonic=78 ! ! action.view=View ! ! action.view.mnemonic=86 ! ! action.view.show.console=View Console ! ! action.window.cascade=Cascade ! ! action.window.close=Close ! ! action.window.close.all=Close All ! ! action.window.frame=... ! ! action.window.mnemonic=78 ! ! action.window.tile=Tile ! ! action.window=Window ! --- 1,113 ---- ! # Menus ! action.action=Action ! action.action.mnemonic=65 ! ! action.edit=Edit ! action.edit.mnemonic=69 ! ! action.file=File ! action.file.mnemonic=70 ! ! action.help=Help ! action.help.mnemonic=72 ! ! action.options=Options ! action.options.mnemonic=79 ! ! action.tools=Tools ! action.tools.mnemonic=84 ! ! action.view=View ! action.view.mnemonic=86 ! ! action.window=Window ! action.window.mnemonic=87 ! ! ! # Items ! action.action.refresh.accelerator=control R ! action.action.refresh=Refresh ! action.action.refresh.mnemonic=82 ! action.action.refresh.tooltip=Refresh ! ! ! action.edit.cut.accelerator=control X ! action.edit.cut.mnemonic=84 ! action.edit.cut.tooltip=Cut selection ! action.edit.cut=Cut ! ! action.edit.copy.accelerator=control C ! action.edit.copy.mnemonic=67 ! action.edit.copy.tooltip=Copy selection ! action.edit.copy=Copy ! ! action.edit.paste=Paste ! action.edit.paste.accelerator=control V ! action.edit.paste.mnemonic=80 ! action.edit.paste.tooltip=Paste selection ! ! action.edit.delete.accelerator=DELETE ! action.edit.delete=Delete ! action.edit.delete.mnemonic=68 ! action.edit.delete.tooltip=Delete ! ! action.edit.select.all=Select All ! action.edit.select.all.mnemonic=65 ! action.edit.select.all.tooltip=Select All ! action.edit.select.all.accelerator=control A ! ! action.edit.deselect.all=Deselect All ! ! ! action.file.new=New ! action.file.new.accelerator=control N ! action.file.new.mnemonic=78 ! action.file.new.tooltip=New ! ! action.file.open=Open ! action.file.open.accelerator=control O ! action.file.open.mnemonic=79 ! action.file.open.tooltip=Open ! ! action.file.save=Save ! action.file.save.accelerator=control S ! action.file.save.mnemonic=83 ! action.file.save.tooltip=Save ! ! action.file.save.as=Save As... ! ! action.file.print=Print ! ! action.file.history=... ! ! action.file.exit=Quit ! action.file.exit.accelerator=control Q ! action.file.exit.mnemonic=81 ! action.file.exit.tooltip=Quit ! ! ! action.help.about=About ! action.help.about.tooltip=About EJTools ! ! action.help.online=Online help ! ! action.help.totd=Tip of the day ! ! ! action.tools.export=Export ! ! action.tools.import=Import ! ! ! action.view.show.console=View Console ! ! ! action.window.cascade=Cascade ! ! action.window.close=Close ! ! action.window.close.all=Close All ! ! action.window.frame=... ! ! action.window.tile=Tile Index: Resources_fr_FR.properties =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/resources/org/ejtools/adwt/action/Resources_fr_FR.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Resources_fr_FR.properties 21 Feb 2003 22:27:40 -0000 1.1 --- Resources_fr_FR.properties 15 Sep 2003 22:37:14 -0000 1.2 *************** *** 1,99 **** ! # Actions ! action.file=Fichier ! action.file.mnemonic=70 ! ! action.edit=Edition ! action.edit.mnemonic=69 ! ! action.action=Action ! action.action.mnemonic=65 ! ! action.tools=Outils ! action.tools.mnemonic=78 ! ! action.view=Afficher ! action.view.mnemonic=70 ! ! action.options=Options ! action.options.mnemonic=79 ! ! action.help=Aide ! action.help.mnemonic=65 ! ! action.window=Fenêtres ! action.window.mnemonic=78 ! ! ! # Actions ! action.file.new=Nouveau ! action.file.new.mnemonic=78 ! action.file.new.accelerator=control N ! action.file.new.tooltip=Nouveau ! ! action.file.open=Ouvrir ! action.file.open.mnemonic=79 ! action.file.open.accelerator=control O ! action.file.open.tooltip=Ouvrir ! ! action.file.save=Sauver ! action.file.save.mnemonic=83 ! action.file.save.accelerator=control S ! action.file.save.tooltip=Sauver ! ! action.file.save.as=Sauver Sous... ! ! action.file.exit=Quitter ! action.file.exit.mnemonic=81 ! action.file.exit.accelerator=control Q ! action.file.exit.tooltip=Quitter ! ! action.file.history=... ! ! action.edit.cut=Couper ! action.edit.cut.mnemonic=67 ! action.edit.cut.accelerator=control X ! action.edit.cut.tooltip=Couper la sélection ! ! action.edit.copy=Copier ! action.edit.copy.mnemonic=80 ! action.edit.copy.accelerator=control C ! action.edit.copy.tooltip=Copier la sélection ! ! action.edit.paste=Coller ! action.edit.paste.mnemonic=79 ! action.edit.paste.accelerator=control V ! action.edit.paste.tooltip=Coller la sélection ! ! action.edit.delete=Effacer ! action.edit.delete.mnemonic=70 ! action.edit.delete.accelerator=DELETE ! action.edit.delete.tooltip=Effacer ! ! action.edit.select.all=Tout sélectionner ! action.edit.select.all.mnemonic=78 ! action.edit.select.all.accelerator=control A ! action.edit.select.all.tooltip=Tout sélectionner ! ! action.edit.deselect.all=Tout désélectionnaer ! ! action.action.refresh=Rafraîchir ! action.action.refresh.mnemonic=82 ! action.action.refresh.accelerator=control R ! action.action.refresh.tooltip=Rafraîchir le contenu ! ! action.view.show.console=Afficher la console ! ! action.window.cascade=Cascade ! ! action.window.tile=Pavé ! ! action.window.close=Fermer ! ! action.window.close.all=Fermer Tout ! ! action.window.frame=... ! ! action.help.about=A Propos ! action.help.about.tooltip=A Propos d'EJTools ! ! action.help.totd=Astuce du jour --- 1,113 ---- ! # Menus ! action.action=Action ! action.action.mnemonic=65 ! ! action.edit=Edition ! action.edit.mnemonic=69 ! ! action.file=Fichier ! action.file.mnemonic=70 ! ! action.help=Aide ! action.help.mnemonic=65 ! ! action.options=Options ! action.options.mnemonic=79 ! ! action.tools=Outils ! action.tools.mnemonic=78 ! ! action.view=Afficher ! action.view.mnemonic=70 ! ! action.window=Fenêtres ! action.window.mnemonic=78 ! ! ! # Items ! action.action.refresh=Rafraîchir ! action.action.refresh.mnemonic=82 ! action.action.refresh.accelerator=control R ! action.action.refresh.tooltip=Rafraîchir le contenu ! ! ! action.edit.cut=Couper ! action.edit.cut.mnemonic=67 ! action.edit.cut.accelerator=control X ! action.edit.cut.tooltip=Couper la sélection ! ! action.edit.copy=Copier ! action.edit.copy.mnemonic=80 ! action.edit.copy.accelerator=control C ! action.edit.copy.tooltip=Copier la sélection ! ! action.edit.paste=Coller ! action.edit.paste.mnemonic=79 ! action.edit.paste.accelerator=control V ! action.edit.paste.tooltip=Coller la sélection ! ! action.edit.delete=Effacer ! action.edit.delete.mnemonic=70 ! action.edit.delete.accelerator=DELETE ! action.edit.delete.tooltip=Effacer ! ! action.edit.select.all=Tout sélectionner ! action.edit.select.all.mnemonic=78 ! action.edit.select.all.accelerator=control A ! action.edit.select.all.tooltip=Tout sélectionner ! ! action.edit.deselect.all=Tout désélectionnaer ! ! ! action.file.new=Nouveau ! action.file.new.mnemonic=78 ! action.file.new.accelerator=control N ! action.file.new.tooltip=Nouveau ! ! action.file.open=Ouvrir ! action.file.open.mnemonic=79 ! action.file.open.accelerator=control O ! action.file.open.tooltip=Ouvrir ! ! action.file.save=Sauver ! action.file.save.mnemonic=83 ! action.file.save.accelerator=control S ! action.file.save.tooltip=Sauver ! ! action.file.save.as=Sauver Sous... ! ! action.file.print=Imprimer ! ! action.file.history=... ! ! action.file.exit=Quitter ! action.file.exit.mnemonic=81 ! action.file.exit.accelerator=control Q ! action.file.exit.tooltip=Quitter ! ! ! action.help.about=A Propos ! action.help.about.tooltip=A Propos d'EJTools ! ! action.help.online=Aide en ligne ! ! action.help.totd=Astuce du jour ! ! ! action.tools.export=Exporter ! ! action.tools.import=Importer ! ! ! action.view.show.console=Afficher la console ! ! ! action.window.cascade=Cascade ! ! action.window.tile=En Pavé ! ! action.window.close=Fermer ! ! action.window.close.all=Fermer Tout ! ! action.window.frame=... |
|
From: <let...@us...> - 2003-09-15 22:37:20
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor
In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/editor
Modified Files:
ArrayEditor.java ClassEditor.java CollectionEditor.java
DateTimeEditor.java GenericEditor.java IteratorEditor.java
ListEditor.java NumberEditor.java ObjectNameEditor.java
PropertiesEditor.java URLEditor.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: ArrayEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/ArrayEditor.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ArrayEditor.java 21 Feb 2003 22:47:56 -0000 1.5
--- ArrayEditor.java 15 Sep 2003 22:37:13 -0000 1.6
***************
*** 16,26 ****
import javax.swing.JPanel;
- import com.dreambean.awt.GenericPropertyCustomizer;
-
import org.ejtools.beans.CustomPropertyEditorManager;
/**
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 21 novembre 2002
* @version $Revision$
*/
--- 16,25 ----
import javax.swing.JPanel;
import org.ejtools.beans.CustomPropertyEditorManager;
+ import com.dreambean.awt.GenericPropertyCustomizer;
+
/**
! * @author Laurent Etiemble
* @version $Revision$
*/
Index: ClassEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/ClassEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ClassEditor.java 10 Jan 2003 19:35:15 -0000 1.3
--- ClassEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 12,17 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 6 avril 2002
* @version $Revision$
* @todo Javadoc to complete
--- 12,16 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: CollectionEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/CollectionEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** CollectionEditor.java 10 Jan 2003 19:35:14 -0000 1.3
--- CollectionEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 15,20 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 19 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 15,19 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: DateTimeEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/DateTimeEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** DateTimeEditor.java 10 Jan 2003 19:35:15 -0000 1.3
--- DateTimeEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 15,20 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 janvier 2002
* @version $Revision$
* @todo Javadoc to complete
--- 15,19 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 68,72 ****
return;
}
- String s1 = null;
for (int i = 0; i < fmts.length; i++)
{
--- 67,70 ----
Index: GenericEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/GenericEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** GenericEditor.java 10 Jan 2003 19:35:14 -0000 1.3
--- GenericEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 12,17 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 19 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 12,16 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: IteratorEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/IteratorEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** IteratorEditor.java 10 Jan 2003 19:35:14 -0000 1.3
--- IteratorEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 14,19 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 19 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 14,18 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: ListEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/ListEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ListEditor.java 10 Jan 2003 19:35:15 -0000 1.3
--- ListEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 11,16 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 19 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 11,15 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
Index: NumberEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/NumberEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** NumberEditor.java 10 Jan 2003 19:35:14 -0000 1.3
--- NumberEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 11,16 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 6 avril 2002
* @version $Revision$
* @todo Javadoc to complete
--- 11,15 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 19,23 ****
{
/** Description of the Field */
! protected Class clazz = Integer.class;
--- 18,22 ----
{
/** Description of the Field */
! protected Class clazz = Number.class;
Index: ObjectNameEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/ObjectNameEditor.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ObjectNameEditor.java 21 Feb 2003 22:47:59 -0000 1.5
--- ObjectNameEditor.java 15 Sep 2003 22:37:13 -0000 1.6
***************
*** 8,15 ****
--- 8,18 ----
import java.awt.Component;
+ import java.awt.Container;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
+ import java.awt.event.FocusAdapter;
+ import java.awt.event.FocusEvent;
import java.util.ResourceBundle;
***************
*** 20,30 ****
import javax.swing.SwingUtilities;
! import org.ejtools.adwt.util.ObjectFinder;
/**
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 6 avril 2002
* @version $Revision$
* @todo Javadoc to complete
--- 23,32 ----
import javax.swing.SwingUtilities;
! import org.ejtools.adwt.util.ObjectSearcher;
/**
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 35,39 ****
protected JButton button;
/** Description of the Field */
! protected JPanel panel;
/** Description of the Field */
protected JTextField text;
--- 37,41 ----
protected JButton button;
/** Description of the Field */
! protected Container panel;
/** Description of the Field */
protected JTextField text;
***************
*** 46,49 ****
--- 48,62 ----
{
this.text = new JTextField(30);
+
+ // Update value when edited
+ this.text.addFocusListener(
+ new FocusAdapter()
+ {
+ public void focusLost(FocusEvent e)
+ {
+ setAsText(text.getText());
+ }
+ }
+ );
}
***************
*** 71,108 ****
public Component getCustomEditor()
{
! if (this.panel == null)
{
! GridBagConstraints gridbagconstraints = new GridBagConstraints();
! this.panel = new JPanel();
! this.panel.setLayout(new GridBagLayout());
! this.button = new JButton(resources.getString("ObjectNameEditor.button.view"));
! gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE;
! this.panel.add(button, gridbagconstraints);
! gridbagconstraints.gridwidth = GridBagConstraints.REMAINDER;
! gridbagconstraints.weightx = 1.0;
! gridbagconstraints.fill = GridBagConstraints.HORIZONTAL;
! this.panel.add(text, gridbagconstraints);
! this.button.addActionListener(
! new ActionListener()
! {
! /**
! * @param e Event action
! */
! public void actionPerformed(ActionEvent e)
{
! ObjectFinder finder = (ObjectFinder) SwingUtilities.getAncestorOfClass(ObjectFinder.class, ObjectNameEditor.this.panel);
! if ((finder != null) && (ObjectNameEditor.this.value != null))
{
! finder.find(ObjectNameEditor.this.getAsText());
}
}
- }
);
}
- return this.panel;
}
--- 84,128 ----
public Component getCustomEditor()
{
! if (Boolean.getBoolean("ejtools.objectname.hyperlink"))
{
! if (this.panel == null)
! {
! GridBagConstraints gridbagconstraints = new GridBagConstraints();
! this.panel = new JPanel();
! this.panel.setLayout(new GridBagLayout());
! this.button = new JButton(resources.getString("ObjectNameEditor.button.view"));
! gridbagconstraints.gridwidth = GridBagConstraints.RELATIVE;
! this.panel.add(button, gridbagconstraints);
! gridbagconstraints.gridwidth = GridBagConstraints.REMAINDER;
! gridbagconstraints.weightx = 1.0;
! gridbagconstraints.fill = GridBagConstraints.HORIZONTAL;
! this.panel.add(text, gridbagconstraints);
! this.button.addActionListener(
! new ActionListener()
{
! /**
! * @param e Event action
! */
! public void actionPerformed(ActionEvent e)
{
! ObjectSearcher finder = (ObjectSearcher) SwingUtilities.getAncestorOfClass(ObjectSearcher.class, ObjectNameEditor.this.panel);
! if ((finder != null) && (ObjectNameEditor.this.value != null))
! {
! finder.find(ObjectNameEditor.this.getAsText());
! }
}
}
);
+ }
+ return this.panel;
+ }
+ else
+ {
+ return this.text;
}
}
***************
*** 118,127 ****
{
this.value = new ObjectName(s);
- this.text.setText(((ObjectName) this.value).getCanonicalName());
- this.firePropertyChange();
}
catch (Exception e)
{
}
}
--- 138,148 ----
{
this.value = new ObjectName(s);
}
catch (Exception e)
{
+ this.value = null;
}
+ this.text.setText(this.getAsText());
+ this.firePropertyChange();
}
***************
*** 137,141 ****
if (this.value != null)
{
! this.text.setText(((ObjectName) this.value).getCanonicalName());
}
}
--- 158,162 ----
if (this.value != null)
{
! this.text.setText(this.getAsText());
}
}
Index: PropertiesEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/PropertiesEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PropertiesEditor.java 10 Jan 2003 19:35:12 -0000 1.3
--- PropertiesEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 18,23 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 19 octobre 2001
* @version $Revision$
* @todo Javadoc to complete
--- 18,22 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
***************
*** 95,100 ****
*
* @author letiembl
- * @created 19 octobre 2001
* @version $Revision$
*/
protected class PropertiesView extends JTextArea
--- 94,99 ----
*
* @author letiembl
* @version $Revision$
+ * @created 19 octobre 2001
*/
protected class PropertiesView extends JTextArea
Index: URLEditor.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/editor/URLEditor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** URLEditor.java 10 Jan 2003 19:35:14 -0000 1.3
--- URLEditor.java 15 Sep 2003 22:37:13 -0000 1.4
***************
*** 12,17 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 6 avril 2002
* @version $Revision$
* @todo Javadoc to complete
--- 12,16 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
|
|
From: <let...@us...> - 2003-09-15 22:37:19
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/jmx
In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/jmx
Modified Files:
MBeanMethodDialog.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: MBeanMethodDialog.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/jmx/MBeanMethodDialog.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MBeanMethodDialog.java 21 Feb 2003 22:48:10 -0000 1.1
--- MBeanMethodDialog.java 15 Sep 2003 22:37:13 -0000 1.2
***************
*** 28,33 ****
import javax.swing.JOptionPane;
import javax.swing.JPanel;
!
! import com.dreambean.awt.GenericPropertyCustomizer;
import org.ejtools.beans.CustomPropertyEditorManager;
--- 28,32 ----
import javax.swing.JOptionPane;
import javax.swing.JPanel;
! import javax.swing.SwingConstants;
import org.ejtools.beans.CustomPropertyEditorManager;
***************
*** 35,43 ****
import org.ejtools.util.ClassTools;
/**
* Description of the Class
*
! * @author letiembl
! * @created 7 février 2002
* @version $Revision$
*/
--- 34,43 ----
import org.ejtools.util.ClassTools;
+ import com.dreambean.awt.GenericPropertyCustomizer;
+
/**
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
*/
***************
*** 103,107 ****
Class clazz = ClassTools.getClass(parameter.getType());
! nameLabel = new JLabel(parameter.getName() + ":", JLabel.RIGHT);
constraints.gridwidth = GridBagConstraints.RELATIVE;
constraints.fill = GridBagConstraints.NONE;
--- 103,107 ----
Class clazz = ClassTools.getClass(parameter.getType());
! nameLabel = new JLabel(parameter.getName() + ":", SwingConstants.RIGHT);
constraints.gridwidth = GridBagConstraints.RELATIVE;
constraints.fill = GridBagConstraints.NONE;
***************
*** 228,233 ****
*
* @author letiembl
- * @created 7 février 2002
* @version $Revision$
*/
private class Editor
--- 228,233 ----
*
* @author letiembl
* @version $Revision$
+ * @created 7 f?vrier 2002
*/
private class Editor
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/window In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action/window Modified Files: CascadeAction.java CloseAction.java CloseAllAction.java InternalFrameAction.java TileAction.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: CascadeAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/window/CascadeAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CascadeAction.java 21 Feb 2003 22:48:04 -0000 1.7 --- CascadeAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: CloseAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/window/CloseAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CloseAction.java 21 Feb 2003 22:48:04 -0000 1.6 --- CloseAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: CloseAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/window/CloseAllAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CloseAllAction.java 21 Feb 2003 22:48:06 -0000 1.7 --- CloseAllAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 16,21 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 11 janvier 2002 * @version $Revision$ * @todo Javadoc to complete --- 16,20 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: InternalFrameAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/window/InternalFrameAction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InternalFrameAction.java 21 Feb 2003 22:48:07 -0000 1.6 --- InternalFrameAction.java 15 Sep 2003 22:37:13 -0000 1.7 *************** *** 18,23 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 11 janvier 2002 * @version $Revision$ * @todo Javadoc to complete --- 18,22 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete Index: TileAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/window/TileAction.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TileAction.java 21 Feb 2003 22:48:08 -0000 1.7 --- TileAction.java 15 Sep 2003 22:37:13 -0000 1.8 *************** *** 15,20 **** * Description of the Class * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete |
|
From: <let...@us...> - 2003-09-15 22:37:17
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/tools In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action/tools Added Files: ExportAction.java ImportAction.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 --- NEW FILE: ExportAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt.action.tools; import java.util.ResourceBundle; import org.ejtools.adwt.action.Command; import org.ejtools.adwt.action.CommandAction; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ * @todo Javadoc to complete */ public class ExportAction extends CommandAction { /** Description of the Field */ private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources"); /** * Constructor for the NewAction object * * @param command Description of Parameter */ public ExportAction(Command command) { super(command, resources, "action.tools.export"); this.setMenu("action.tools"); this.setToolBar(true); this.setSmallIcon("/toolbarButtonGraphics/general/Export16.gif"); this.setIcon("/toolbarButtonGraphics/general/Export24.gif"); } } --- NEW FILE: ImportAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package org.ejtools.adwt.action.tools; import java.util.ResourceBundle; import org.ejtools.adwt.action.Command; import org.ejtools.adwt.action.CommandAction; /** * Description of the Class * * @author Laurent Etiemble * @version $Revision: 1.1 $ * @todo Javadoc to complete */ public class ImportAction extends CommandAction { /** Description of the Field */ private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources"); /** * Constructor for the NewAction object * * @param command Description of Parameter */ public ImportAction(Command command) { super(command, resources, "action.tools.import"); this.setMenu("action.tools"); this.setToolBar(true); this.setSmallIcon("/toolbarButtonGraphics/general/Import16.gif"); this.setIcon("/toolbarButtonGraphics/general/Import24.gif"); } } |
|
From: <let...@us...> - 2003-09-15 22:37:17
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/view In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/main/org/ejtools/adwt/action/view Modified Files: ShowConsoleAction.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: ShowConsoleAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/view/ShowConsoleAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ShowConsoleAction.java 21 Feb 2003 22:47:52 -0000 1.3 --- ShowConsoleAction.java 15 Sep 2003 22:37:13 -0000 1.4 *************** *** 15,20 **** * Description of the Class * ! * @author letiemble ! * @created 29 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 15,19 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ * @todo Javadoc to complete |
|
From: <let...@us...> - 2003-09-15 22:37:15
|
Update of /cvsroot/ejtools/libraries/adwt/src/etc In directory sc8-pr-cvs1:/tmp/cvs-serv24196/adwt/src/etc Removed Files: default.mf 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 --- default.mf DELETED --- |
|
From: <let...@us...> - 2003-09-15 22:23:51
|
Update of /cvsroot/ejtools/libraries/common/xdocs In directory sc8-pr-cvs1:/tmp/cvs-serv20661/common/xdocs Modified Files: index.xml Log Message: Adjust Eclipse build files Adjust some Javadoc Integrate Persistence framework Integrate Image export as PNG Index: index.xml =================================================================== RCS file: /cvsroot/ejtools/libraries/common/xdocs/index.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.xml 8 Mar 2003 20:52:12 -0000 1.2 --- index.xml 15 Sep 2003 22:23:46 -0000 1.3 *************** *** 1,23 **** ! <?xml version="1.0" encoding="ISO-8859-1"?> ! <!-- ! # ================================================================================ ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # ================================================================================ ! --> ! <document> ! <properties> ! <title>Common Library</title> ! </properties> ! <body> ! <section name="Common Library"> ! <subsection name="Overview"> ! <p>This library contains general purpose classes used by the applications of the EJTools project. They cover the JavaBean aspect, JMX api, and Servlet filters.</p> ! </subsection> ! </section> ! </body> ! </document> --- 1,23 ---- ! <?xml version="1.0" encoding="ISO-8859-1"?> ! <!-- ! # ================================================================================ ! # EJTools, the Enterprise Java Tools ! # ! # Distributable under LGPL license. ! # See terms of license at gnu.org. ! # ! # $Revision$ ! # ================================================================================ ! --> ! <document> ! <properties> ! <title>Common Library</title> ! </properties> ! <body> ! <section name="Common Library"> ! <subsection name="Overview"> ! <p>This library contains general purpose classes used by the applications of the EJTools project. They cover the JavaBean aspect, JMX api, and Servlet filters.</p> ! </subsection> ! </section> ! </body> ! </document> |