From: <wu...@us...> - 2008-04-17 16:35:31
|
Revision: 126 http://davinspector.svn.sourceforge.net/davinspector/?rev=126&view=rev Author: wuest Date: 2008-04-17 09:35:23 -0700 (Thu, 17 Apr 2008) Log Message: ----------- Added "select all" option to the popup menu of the raw pane. Copy & Paste now working correct. Modified Paths: -------------- trunk/DAVInspector/resource/TextBundle.properties trunk/DAVInspector/resource/TextBundle_de_DE.properties trunk/DAVInspector/src/de/dlr/davinspector/ui/JRawTextPane.java Modified: trunk/DAVInspector/resource/TextBundle.properties =================================================================== --- trunk/DAVInspector/resource/TextBundle.properties 2008-04-17 14:45:46 UTC (rev 125) +++ trunk/DAVInspector/resource/TextBundle.properties 2008-04-17 16:35:23 UTC (rev 126) @@ -35,6 +35,8 @@ ac_cut_description=Cut ac_copy=Copy ac_copy_description=Copy +ac_select_all=Select all +ac_select_all_description=Select all ac_saveas=Save as ... ac_saveas_description=Save text in a file #save as dialog file chooser Modified: trunk/DAVInspector/resource/TextBundle_de_DE.properties =================================================================== --- trunk/DAVInspector/resource/TextBundle_de_DE.properties 2008-04-17 14:45:46 UTC (rev 125) +++ trunk/DAVInspector/resource/TextBundle_de_DE.properties 2008-04-17 16:35:23 UTC (rev 126) @@ -35,6 +35,8 @@ ac_cut_description=Text ausschneiden und in die Zwischenablage einf\xFCgen ac_copy=Kopieren ac_copy_description=Text in die Zwischenablage einf\xFCgen +ac_select_all=Alles ausw\xE4hlen +ac_select_all_description=Alles ausw\xE4hlen ac_saveas=Speichern unter ... ac_saveas_description=Text in einer Datei speichern #save as dialog file chooser Modified: trunk/DAVInspector/src/de/dlr/davinspector/ui/JRawTextPane.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/ui/JRawTextPane.java 2008-04-17 14:45:46 UTC (rev 125) +++ trunk/DAVInspector/src/de/dlr/davinspector/ui/JRawTextPane.java 2008-04-17 16:35:23 UTC (rev 126) @@ -97,28 +97,17 @@ public void actionPerformed(ActionEvent e) { // paste - int pos = getCaretPosition(); - int start = getSelectionStart(); - int end = getSelectionEnd(); - Transferable content = myClipboard.getContents(this); if (content != null) { try { String s = (String) content.getTransferData(DataFlavor.stringFlavor); - if ((start >= 0) && (end >= 0) && (start < end)) { - // some text is selected, overwrite with clip board - setText(getText(0, start) + s + getText(end, getText().length() - end)); - } else { - // no text selected, insert clip board at cursor - setText(getText(0, pos) + s + getText(pos, getText().length() - pos)); + if (s.length() > 0) { + replaceSelection(s); } - // TODO: place the cursor at the end of the edited text } catch (IOException ioe) { myLogger.error(ioe.getMessage(), ioe); } catch (UnsupportedFlavorException usfe) { myLogger.error(usfe.getMessage(), usfe); - } catch (BadLocationException ble) { - myLogger.error(ble.getMessage(), ble); } } } @@ -138,11 +127,11 @@ public void actionPerformed(ActionEvent e) { // copy int start = getSelectionStart(); - int end = getSelectionEnd(); + int end = getSelectionEnd(); + try { StringSelection content = new StringSelection(getText(start, end - start)); myClipboard.setContents(content, myRawTextPane); - setText(getText(0, start) + getText(end, getText().length() - end)); } catch (IllegalStateException ise) { myLogger.error(ise.getMessage(), ise); } catch (BadLocationException ble) { @@ -164,11 +153,13 @@ public void actionPerformed(ActionEvent e) { // cut - int start = getSelectionStart(); - int end = getSelectionEnd(); + int cutStart = getSelectionStart(); + int cutEnd = getSelectionEnd(); + try { - StringSelection content = new StringSelection(getText(start, end - start)); - myClipboard.setContents(content, myRawTextPane); + StringSelection content = new StringSelection(getText(cutStart, cutEnd - cutStart)); + myClipboard.setContents(content, myRawTextPane); + replaceSelection(""); } catch (IllegalStateException ise) { myLogger.error(ise.getMessage(), ise); } catch (BadLocationException ble) { @@ -227,6 +218,26 @@ }; /** + * Action: Select all. + */ + private Action selectAllAction = new AbstractAction() { + static final long serialVersionUID = 1L; + { + putValue(Action.NAME, Internationalization.getTranslation("ac_select_all")); + putValue(Action.SHORT_DESCRIPTION, Internationalization.getTranslation("ac_select_all_description")); + } + + public void actionPerformed(ActionEvent e) { + // select all + try { + selectAll(); + } catch (IllegalStateException ise) { + myLogger.error(ise.getMessage(), ise); + } + } + }; + + /** * Constructor of JRawTextPane. * * @param direction Direction the text pane is used for displaying content (client or server). @@ -247,6 +258,7 @@ myJPopupMenu.add(new JMenuItem(cutAction)); myJPopupMenu.add(new JMenuItem(copyAction)); myJPopupMenu.add(new JMenuItem(pasteAction)); + myJPopupMenu.add(new JMenuItem(selectAllAction)); myJPopupMenu.add(new JMenuItem(saveAsAction)); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kil...@us...> - 2008-04-17 18:32:50
|
Revision: 130 http://davinspector.svn.sourceforge.net/davinspector/?rev=130&view=rev Author: killerjoe Date: 2008-04-17 11:32:39 -0700 (Thu, 17 Apr 2008) Log Message: ----------- Added example view plugin to project. Modified Paths: -------------- trunk/DAVInspector/build-user.xml Added Paths: ----------- trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/package.html Modified: trunk/DAVInspector/build-user.xml =================================================================== --- trunk/DAVInspector/build-user.xml 2008-04-17 18:25:54 UTC (rev 129) +++ trunk/DAVInspector/build-user.xml 2008-04-17 18:32:39 UTC (rev 130) @@ -57,6 +57,10 @@ basedir="bin" includes="de/dlr/davinspector/plugins/raweditplugin/**"> </jar> + <jar jarfile="${dist}/plugins/ExampleViewPlugin.jar" + basedir="bin" + includes="de/dlr/davinspector/plugins/exampleviewplugin/**"> + </jar> <!-- Copy DAVInspector resource files --> <copy todir="bin/de/dlr/davinspector/resource"> Added: trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java (rev 0) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java 2008-04-17 18:32:39 UTC (rev 130) @@ -0,0 +1,186 @@ +/* + * ExamplePlugin.java + * + * This class contains the Example-View-Plugin. + * + * Created: 17.04.2008 Jochen Wuest <joc...@dl...> + * Changed: + * + * $Id$ + * + * Copyright 2007 Deutsches Zentrum fuer Luft- und Raumfahrt e.V. (DLR) + * + * Licensed under the Apache License, Version 2.0 (the 'License'); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an 'AS IS' BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package de.dlr.davinspector.plugins.exampleviewplugin; + +import javax.swing.JComponent; +import javax.swing.JScrollPane; +import javax.swing.JTextPane; + +import de.dlr.davinspector.common.Util; +import de.dlr.davinspector.history.AMessage; +import de.dlr.davinspector.plugin.IViewPlugin; +import de.dlr.davinspector.plugin.PluginManager; + + +/** + * This class contains the Example-View-Plugin. + * + * @version $LastChangedRevision$ + * @author Jochen Wuest + */ +public class ExampleViewPlugin implements IViewPlugin { + + /** The direction the plugin is assigned to. */ + private PluginDirection myPlugInDirection; + + /** State of the plugin. */ + private Boolean isActive = true; + + /** The scroll pane of the view. */ + private JScrollPane myJScrollPane = null; + + /** The text pane of the view. */ + private JTextPane myJTextPane = null; + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IViewPlugin#getUI() + */ + public JComponent getUI() { + return myJScrollPane; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#getAuthor() + */ + public String getAuthor() { + return "Jochen Wuest"; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#getDescription() + */ + public String getDescription() { + return "This is an example"; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#getName() + */ + public String getName() { + return "Example View"; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#getType() + */ + public PluginType getType() { + return PluginType.VIEW_GENERAL; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#getVersion() + */ + public int getVersion() { + return 1; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#init() + */ + public void init(PluginManager pluginManager, PluginDirection direction) { + myPlugInDirection = direction; + if (myJScrollPane == null) { + myJTextPane = new JTextPane(); + + myJScrollPane = new JScrollPane(); + myJScrollPane.setViewportView(myJTextPane); + } + myJTextPane.setText(""); + Util.setUIDesign(); + } + + /** + * {@inheritDoc} + * + * @see de.dlr.davinspector.plugin.IPlugin#getPluginDirection() + */ + public PluginDirection getPluginDirection() { + return myPlugInDirection; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.davinspector.plugin.IPlugin#shutdown() + */ + public void shutdown() { + // do nothing + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#isActive() + */ + public Boolean isActive() { + return isActive; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#setActive(java.lang.Boolean) + */ + public void setActive(Boolean state) { + isActive = state; + } + + /** + * {@inheritDoc} + * + * @see de.dlr.DAVInspector.Plugin.IPlugin#update(java.lang.String) + */ + public void update(AMessage msg) { + if (isActive && myJTextPane != null) { + myJTextPane.setText(msg.getBody()); + } + } + + /** + * {@inheritDoc} + * + * @see de.dlr.davinspector.plugin.IPlugin#clear() + */ + public void clear() { + if (myJTextPane != null) { + myJTextPane.setText(""); + } + } +} Added: trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/package.html =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/package.html (rev 0) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/package.html 2008-04-17 18:32:39 UTC (rev 130) @@ -0,0 +1,6 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" +"http://www.w3.org/TR/REC-html40/loose.dtd"> + +<html><head><title>Example View Plugin</title></head><body> +This package contains the Example-View-Plugin. +</body></html> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wu...@us...> - 2008-04-28 13:54:42
|
Revision: 142 http://davinspector.svn.sourceforge.net/davinspector/?rev=142&view=rev Author: wuest Date: 2008-04-28 06:54:35 -0700 (Mon, 28 Apr 2008) Log Message: ----------- Added an error message dialog to the relay thread, corrected spelling in README and set default log4j properties. Modified Paths: -------------- trunk/DAVInspector/README.txt trunk/DAVInspector/log4j.properties trunk/DAVInspector/resource/TextBundle.properties trunk/DAVInspector/resource/TextBundle_de_DE.properties trunk/DAVInspector/src/de/dlr/davinspector/common/Util.java trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayThread.java Modified: trunk/DAVInspector/README.txt =================================================================== --- trunk/DAVInspector/README.txt 2008-04-28 06:52:57 UTC (rev 141) +++ trunk/DAVInspector/README.txt 2008-04-28 13:54:35 UTC (rev 142) @@ -2,7 +2,7 @@ ================================================================================ About DAVInspector ------------------ -DAVInpector is a tool for debugging and monitoring HTTP and WebDAV capable applications. It is mainly written to help developers creating HTTP/WebDAV clients or servers, but could also be used by sysadmins. The open plugin technology makes it possible that in future other network protocols will be support too. +DAVInpector is a tool for debugging and monitoring HTTP and WebDAV capable applications. It is mainly written to help developers creating HTTP/WebDAV clients or servers, but could also be used by sysadmins. The open plugin technology makes it possible that in future other network protocols will be supported too. DAVInspector is developed by employees of the the institution "Simulation and Software Technology" (SISTEC) at the German Aerospace Center DLR. @@ -11,11 +11,10 @@ Starting DAVInspector --------------------- -- Windows - -- Linux - java -jar davinspector.jar - +java -jar davinspector.jar + +For convenience you can also use "DAVInspector.bat" on windows plattforms or "DAVInspector.sh" under *nix to start DAVInspector. + Please note that DAVnspector requires JAVA 5 or later. @@ -31,7 +30,7 @@ Bugs, Support, Help, Feature Requests ------------------------------------- -DAVInspector is an open volunteer project based on the spirit of the Open Development and Free Software. You can visit the project home, joind mailing lists and contribute ideas at SourceForge.net: +DAVInspector is an open volunteer project based on the spirit of the Open Development and Free Software. You can visit the project home, join mailing lists and contribute ideas at SourceForge.net: http://sourceforge.net/projects/davinspector/ @@ -40,11 +39,11 @@ License ------- -Copyright 2006 Deutsches Zentrum für Luft- und Raumfahrt e.V. (DLR) +Copyright 2006 Deutsches Zentrum fuer Luft- und Raumfahrt e.V. (DLR) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied. See the License for the specific language governing permissions and limitations under the License. Modified: trunk/DAVInspector/log4j.properties =================================================================== --- trunk/DAVInspector/log4j.properties 2008-04-28 06:52:57 UTC (rev 141) +++ trunk/DAVInspector/log4j.properties 2008-04-28 13:54:35 UTC (rev 142) @@ -3,11 +3,11 @@ # Set Log-Level for DAVInspector log4j.logger.de.dlr.davinspector=ERROR, system -log4j.logger.de.dlr.davinspector.plugin=DEBUG, plugin -log4j.logger.de.dlr.davinspector.plugins=DEBUG, plugin -log4j.logger.de.dlr.davinspector.http=DEBUG, messageparser -log4j.logger.de.dlr.davinspector.history=DEBUG, messageparser -log4j.logger.de.dlr.davinspector.relay=DEBUG, relay +log4j.logger.de.dlr.davinspector.plugin=ERROR, plugin +log4j.logger.de.dlr.davinspector.plugins=ERROR, plugin +log4j.logger.de.dlr.davinspector.http=ERROR, messageparser +log4j.logger.de.dlr.davinspector.history=ERROR, messageparser +log4j.logger.de.dlr.davinspector.relay=ERROR, relay # Configuration of the general Log-File log4j.appender.system=org.apache.log4j.FileAppender Modified: trunk/DAVInspector/resource/TextBundle.properties =================================================================== --- trunk/DAVInspector/resource/TextBundle.properties 2008-04-28 06:52:57 UTC (rev 141) +++ trunk/DAVInspector/resource/TextBundle.properties 2008-04-28 13:54:35 UTC (rev 142) @@ -42,9 +42,13 @@ #save as dialog file chooser dlg_title_saveas=Save as ... +#error dialog +dlg_error_title=Error +dlg_error_text=An error occurred + #io error dialog dlg_ioerror_title=Error -dlg_ioerror_text=File IO-Error. +dlg_ioerror_text=File IO-Error #tabs tab_raw=Raw Modified: trunk/DAVInspector/resource/TextBundle_de_DE.properties =================================================================== --- trunk/DAVInspector/resource/TextBundle_de_DE.properties 2008-04-28 06:52:57 UTC (rev 141) +++ trunk/DAVInspector/resource/TextBundle_de_DE.properties 2008-04-28 13:54:35 UTC (rev 142) @@ -42,9 +42,13 @@ #save as dialog file chooser dlg_title_saveas=Speichern unter ... +#error dialog +dlg_error_title=Fehler +dlg_error_text=Ein Fehler ist aufgetreten + #io error dialog dlg_ioerror_title=Fehler -dlg_ioerror_text=Fehler bei der Ein-/Ausgabe. +dlg_ioerror_text=Fehler bei der Ein-/Ausgabe #tabs tab_raw=Rohdaten Modified: trunk/DAVInspector/src/de/dlr/davinspector/common/Util.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/common/Util.java 2008-04-28 06:52:57 UTC (rev 141) +++ trunk/DAVInspector/src/de/dlr/davinspector/common/Util.java 2008-04-28 13:54:35 UTC (rev 142) @@ -121,4 +121,17 @@ Internationalization.getTranslation("dlg_ioerror_title"), JOptionPane.ERROR_MESSAGE); } + + /** + * This method opens a dialog window displaying the Exception. + * + * @param e {@link Exception} + */ + public static void showExceptionMessageDialog(Exception e) { + JOptionPane.showMessageDialog(null, + Internationalization.getTranslation("dlg_error_text") + "\n" + + e.getLocalizedMessage(), + Internationalization.getTranslation("dlg_error_title"), + JOptionPane.ERROR_MESSAGE); + } } Modified: trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayThread.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayThread.java 2008-04-28 06:52:57 UTC (rev 141) +++ trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayThread.java 2008-04-28 13:54:35 UTC (rev 142) @@ -36,6 +36,7 @@ import de.dlr.davinspector.common.Constant; import de.dlr.davinspector.common.Constant.Direction; +import de.dlr.davinspector.common.Util; import de.dlr.davinspector.configuration.Configuration; @@ -83,23 +84,27 @@ */ public RelayThread(IRelayModel aRelayModel, Configuration configuration) { isActive = true; - // TODO: blockieren bis sockets geschlossen sind. myRelayModel = aRelayModel; try { - InetAddress serverAddress = InetAddress.getByName(configuration.getClientAddress()); - InetAddress clientAddress = InetAddress.getByName(configuration.getServerAddress()); - + InetAddress clientAddress = InetAddress.getByName(configuration.getClientAddress()); + myLogger.debug("Source " + clientAddress.getHostAddress() + ":" + configuration.getClientPort()); + if (clientAddress == null) { relayServerSocket = new ServerSocket(configuration.getClientPort(), Constant.RELAY_BACKLOG); } else { relayServerSocket = new ServerSocket(configuration.getClientPort(), Constant.RELAY_BACKLOG, clientAddress); } relayServerSocket.setReuseAddress(true); + + InetAddress serverAddress = InetAddress.getByName(configuration.getServerAddress()); myDestinationAddress = serverAddress; myDestinationPort = configuration.getServerPort(); + myLogger.debug("Destination " + myDestinationAddress.getHostAddress() + ":" + myDestinationPort); } catch (UnknownHostException uhe) { + Util.showExceptionMessageDialog(uhe); myLogger.error(uhe.getMessage(), uhe); } catch (IOException ioe) { + Util.showExceptionMessageDialog(ioe); myLogger.error(ioe.getMessage(), ioe); } start(); @@ -121,7 +126,7 @@ myLogger.debug("Accepting client connection"); try { // Connect to the server - Socket serverSideSocket = new Socket(myDestinationAddress, myDestinationPort); + Socket serverSideSocket = new Socket(myDestinationAddress.getHostAddress(), myDestinationPort); serverSideSocket.setSoLinger(true, Constant.RELAY_LINGERTIME); myLogger.debug("Established connection to the server"); serverToClientChannel = new ChannelThread(serverSideSocket, clientSideSocket, (IRelayThread) this); @@ -156,15 +161,17 @@ synchronized (lock) { isActive = false; myLogger.debug("Stopping stage: Shutting down ChannelThreads " + activeCount()); - serverToClientChannel.shutdown(); - clientToServerChannel.shutdown(); + if (clientToServerChannel != null && serverToClientChannel != null) { + clientToServerChannel.shutdown(); + serverToClientChannel.shutdown(); + } } try { // INFO: A "java.net.SocketException: socket closed" is thrown, but that's okay with us myLogger.debug("Stopping stage: Closing Server Socket " + activeCount()); relayServerSocket.close(); } catch (IOException ioe) { - myLogger.fatal(ioe.getMessage(), ioe); + myLogger.error(ioe.getMessage(), ioe); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wu...@us...> - 2008-04-28 17:42:57
|
Revision: 145 http://davinspector.svn.sourceforge.net/davinspector/?rev=145&view=rev Author: wuest Date: 2008-04-28 10:42:45 -0700 (Mon, 28 Apr 2008) Log Message: ----------- Post RC2 / switched to -dev Version Modified Paths: -------------- trunk/DAVInspector/build-user.xml trunk/DAVInspector/src/de/dlr/davinspector/common/Constant.java Modified: trunk/DAVInspector/build-user.xml =================================================================== --- trunk/DAVInspector/build-user.xml 2008-04-28 17:37:56 UTC (rev 144) +++ trunk/DAVInspector/build-user.xml 2008-04-28 17:42:45 UTC (rev 145) @@ -2,7 +2,7 @@ <?eclipse.ant.import?> <project> <property name="project.name" value="DAVInspector"/> - <property name="project.version" value="1.0-RC1-dev"/> + <property name="project.version" value="1.0-RC2-dev"/> <target name="dist" description="Generates distribution in subdirectory dist"> <!-- Handle OS-specific properties --> Modified: trunk/DAVInspector/src/de/dlr/davinspector/common/Constant.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/common/Constant.java 2008-04-28 17:37:56 UTC (rev 144) +++ trunk/DAVInspector/src/de/dlr/davinspector/common/Constant.java 2008-04-28 17:42:45 UTC (rev 145) @@ -88,7 +88,7 @@ public static final String APP_TITLE = "DAVInspector"; /** Version of the application. */ - public static final String APP_VERSION = "1.0-RC2"; + public static final String APP_VERSION = "1.0-RC2-dev"; /** Filename of the configuration file. */ public static final String APP_CONFIGURATION_FILENAME = "config.properties"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wu...@us...> - 2008-06-17 15:55:38
|
Revision: 155 http://davinspector.svn.sourceforge.net/davinspector/?rev=155&view=rev Author: wuest Date: 2008-06-17 08:54:37 -0700 (Tue, 17 Jun 2008) Log Message: ----------- Added ant-file for javadoc. Updated comments and package documentation. Modified Paths: -------------- trunk/DAVInspector/src/de/dlr/davinspector/history/AMessage.java trunk/DAVInspector/src/de/dlr/davinspector/http/HTTPMessageParser.java trunk/DAVInspector/src/de/dlr/davinspector/plugin/package.html trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java trunk/DAVInspector/src/de/dlr/davinspector/plugins/headerplugin/HeaderPlugin.java trunk/DAVInspector/src/de/dlr/davinspector/plugins/raweditplugin/RawEditPlugin.java trunk/DAVInspector/src/de/dlr/davinspector/plugins/recordingplugin/RecordingPlugin.java trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmlplugin/XMLPlugin.java trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmltreeplugin/XMLTreePlugin.java trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayModel.java Added Paths: ----------- trunk/DAVInspector/javadoc.xml Added: trunk/DAVInspector/javadoc.xml =================================================================== --- trunk/DAVInspector/javadoc.xml (rev 0) +++ trunk/DAVInspector/javadoc.xml 2008-06-17 15:54:37 UTC (rev 155) @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<project default="javadoc"> + <target name="javadoc"> + <javadoc access="public" author="true" classpath="lib/log4j.jar;D:\src\java\eclipse\plugins\org.junit4_4.3.1\junit.jar" destdir="doc" doctitle="DAVInspector" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="de.dlr.davinspector.plugins.headerplugin,de.dlr.davinspector.http,de.dlr.davinspector.plugins.recordingplugin,de.dlr.davinspector.plugins.xmltreeplugin,de.dlr.davinspector.plugins.raweditplugin,de.dlr.davinspector.relay,de.dlr.davinspector.plugin,de.dlr.davinspector.history,de.dlr.davinspector.plugins.exampleviewplugin,de.dlr.davinspector.common,de.dlr.davinspector.ui,de.dlr.davinspector.configuration,de.dlr.davinspector.plugins.xmlplugin" source="1.5" sourcefiles="src/de/dlr/davinspector/DAVInspector.java" sourcepath="test;src" splitindex="false" use="true" version="true"/> + </target> +</project> Modified: trunk/DAVInspector/src/de/dlr/davinspector/history/AMessage.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/history/AMessage.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/history/AMessage.java 2008-06-17 15:54:37 UTC (rev 155) @@ -100,9 +100,9 @@ /** * Returns the direction (request/reply) of the message. - * @see MessageDirection + * @see de.dlr.davinspector.common.Constant.Direction * - * @return MessageDirection + * @return Direction */ public Direction getDirection() { return myDirection; @@ -110,7 +110,7 @@ /** * This method sets the message direction. - * @see MessageDirection + * @see de.dlr.davinspector.common.Constant.Direction * * @param direction Direction */ Modified: trunk/DAVInspector/src/de/dlr/davinspector/http/HTTPMessageParser.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/http/HTTPMessageParser.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/http/HTTPMessageParser.java 2008-06-17 15:54:37 UTC (rev 155) @@ -141,7 +141,7 @@ /** * {@inheritDoc} * - * @see de.dlr.davinspector.history.AMessageParser#parseMessage() + * @see de.dlr.davinspector.history.AMessageParser#parse() */ public String parse() { myLogger.debug("---- new data event ----"); Modified: trunk/DAVInspector/src/de/dlr/davinspector/plugin/package.html =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugin/package.html 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugin/package.html 2008-06-17 15:54:37 UTC (rev 155) @@ -1,12 +1,6 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> -<html><head><title>BLUB B</title></head><body> - -BLUB B - -<h2>Package Specification</h2> - -BLUB B - +<html><head><title>Plugin</title></head><body> +This package contains all classes and interfaces needed to handle plugins. </body></html> \ No newline at end of file Modified: trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/exampleviewplugin/ExampleViewPlugin.java 2008-06-17 15:54:37 UTC (rev 155) @@ -61,7 +61,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IViewPlugin#getUI() + * @see de.dlr.davinspector.plugin.IViewPlugin#getUI() */ public JComponent getUI() { return myJScrollPane; @@ -70,7 +70,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getAuthor() + * @see de.dlr.davinspector.plugin.IPlugin#getAuthor() */ public String getAuthor() { return "Jochen Wuest"; @@ -79,7 +79,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getDescription() + * @see de.dlr.davinspector.plugin.IPlugin#getDescription() */ public String getDescription() { return translate("description"); @@ -88,7 +88,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getName() + * @see de.dlr.davinspector.plugin.IPlugin#getName() */ public String getName() { return translate("name"); @@ -97,7 +97,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getType() + * @see de.dlr.davinspector.plugin.IPlugin#getType() */ public PluginType getType() { return PluginType.VIEW_GENERAL; @@ -106,7 +106,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getVersion() + * @see de.dlr.davinspector.plugin.IPlugin#getVersion() */ public int getVersion() { return 1; @@ -115,7 +115,8 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#init() + * @see de.dlr.davinspector.plugin.IPlugin#init(de.dlr.davinspector.plugin.PluginManager, + * de.dlr.davinspector.plugin.IPlugin.PluginDirection) */ public void init(PluginManager pluginManager, PluginDirection direction) { myPlugInDirection = direction; @@ -150,7 +151,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#isActive() + * @see de.dlr.davinspector.plugin.IPlugin#isActive() */ public Boolean isActive() { return isActive; @@ -159,7 +160,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#setActive(java.lang.Boolean) + * @see de.dlr.davinspector.plugin.IPlugin#setActive(java.lang.Boolean) */ public void setActive(Boolean state) { isActive = state; @@ -168,7 +169,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#update(java.lang.String) + * @see de.dlr.davinspector.plugin.IPlugin#update(de.dlr.davinspector.history.AMessage) */ public void update(AMessage msg) { if (isActive && myJTextPane != null) { Modified: trunk/DAVInspector/src/de/dlr/davinspector/plugins/headerplugin/HeaderPlugin.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/headerplugin/HeaderPlugin.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/headerplugin/HeaderPlugin.java 2008-06-17 15:54:37 UTC (rev 155) @@ -82,7 +82,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IViewPlugin#getUI() + * @see de.dlr.davinspector.plugin.IViewPlugin#getUI() */ public JComponent getUI() { return myJPanel; @@ -91,7 +91,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getAuthor() + * @see de.dlr.davinspector.plugin.IPlugin#getAuthor() */ public String getAuthor() { return "Jochen Wuest"; @@ -100,7 +100,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getDescription() + * @see de.dlr.davinspector.plugin.IPlugin#getDescription() */ public String getDescription() { return translate("description"); @@ -109,7 +109,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getName() + * @see de.dlr.davinspector.plugin.IPlugin#getName() */ public String getName() { return translate("name"); @@ -118,7 +118,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getType() + * @see de.dlr.davinspector.plugin.IPlugin#getType() */ public PluginType getType() { return PluginType.VIEW_GENERAL; @@ -127,16 +127,18 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getVersion() + * @see de.dlr.davinspector.plugin.IPlugin#getVersion() */ public int getVersion() { return 2; } + /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#init() + * @see de.dlr.davinspector.plugin.IPlugin#init(de.dlr.davinspector.plugin.PluginManager, + * de.dlr.davinspector.plugin.IPlugin.PluginDirection) */ public void init(PluginManager pluginManager, PluginDirection direction) { myPlugInDirection = direction; @@ -182,7 +184,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#isActive() + * @see de.dlr.davinspector.plugin.IPlugin#isActive() */ public Boolean isActive() { return isActive; @@ -191,7 +193,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#setActive(java.lang.Boolean) + * @see de.dlr.davinspector.plugin.IPlugin#setActive(java.lang.Boolean) */ public void setActive(Boolean state) { isActive = state; @@ -200,7 +202,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#update(java.lang.String) + * @see de.dlr.davinspector.plugin.IPlugin#update(de.dlr.davinspector.history.AMessage) */ public void update(AMessage msg) { clear(); Modified: trunk/DAVInspector/src/de/dlr/davinspector/plugins/raweditplugin/RawEditPlugin.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/raweditplugin/RawEditPlugin.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/raweditplugin/RawEditPlugin.java 2008-06-17 15:54:37 UTC (rev 155) @@ -94,7 +94,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IViewPlugin#getUI() + * @see de.dlr.davinspector.plugin.IViewPlugin#getUI() */ public JComponent getUI() { return myJPanel; @@ -103,7 +103,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getAuthor() + * @see de.dlr.davinspector.plugin.IPlugin#getAuthor() */ public String getAuthor() { return "Jochen Wuest"; @@ -112,7 +112,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getDescription() + * @see de.dlr.davinspector.plugin.IPlugin#getDescription() */ public String getDescription() { return translate("description"); @@ -121,7 +121,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getName() + * @see de.dlr.davinspector.plugin.IPlugin#getName() */ public String getName() { return translate("name"); @@ -130,7 +130,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getType() + * @see de.dlr.davinspector.plugin.IPlugin#getType() */ public PluginType getType() { return PluginType.EDIT_GENERAL; @@ -139,7 +139,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getVersion() + * @see de.dlr.davinspector.plugin.IPlugin#getVersion() */ public int getVersion() { return 1; @@ -148,7 +148,8 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#init() + * @see de.dlr.davinspector.plugin.IPlugin#init(de.dlr.davinspector.plugin.PluginManager, + * de.dlr.davinspector.plugin.IPlugin.PluginDirection) */ public void init(PluginManager pluginManager, PluginDirection direction) { myPluginManager = pluginManager; @@ -243,7 +244,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#isActive() + * @see de.dlr.davinspector.plugin.IPlugin#isActive() */ public Boolean isActive() { return isActive; @@ -252,7 +253,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#setActive(java.lang.Boolean) + * @see de.dlr.davinspector.plugin.IPlugin#setActive(java.lang.Boolean) */ public void setActive(Boolean state) { isActive = state; @@ -261,7 +262,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#update(java.lang.String) + * @see de.dlr.davinspector.plugin.IPlugin#update(de.dlr.davinspector.history.AMessage) */ public void update(AMessage msg) { if (isActive && myJTextPane != null) { Modified: trunk/DAVInspector/src/de/dlr/davinspector/plugins/recordingplugin/RecordingPlugin.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/recordingplugin/RecordingPlugin.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/recordingplugin/RecordingPlugin.java 2008-06-17 15:54:37 UTC (rev 155) @@ -131,7 +131,8 @@ /** * {@inheritDoc} * - * @see de.dlr.davinspector.plugin.IPlugin#init() + * @see de.dlr.davinspector.plugin.IPlugin#init(de.dlr.davinspector.plugin.PluginManager, + * de.dlr.davinspector.plugin.IPlugin.PluginDirection) */ public void init(PluginManager pluginManager, PluginDirection direction) { myPlugInDirection = direction; Modified: trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmlplugin/XMLPlugin.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmlplugin/XMLPlugin.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmlplugin/XMLPlugin.java 2008-06-17 15:54:37 UTC (rev 155) @@ -78,7 +78,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IViewPlugin#getUI() + * @see de.dlr.davinspector.plugin.IViewPlugin#getUI() */ public JComponent getUI() { return myJSplitPane; @@ -87,7 +87,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getAuthor() + * @see de.dlr.davinspector.plugin.IPlugin#getAuthor() */ public String getAuthor() { return "Jochen Wuest"; @@ -96,7 +96,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getDescription() + * @see de.dlr.davinspector.plugin.IPlugin#getDescription() */ public String getDescription() { return translate("description"); @@ -105,7 +105,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getName() + * @see de.dlr.davinspector.plugin.IPlugin#getName() */ public String getName() { return translate("name"); @@ -114,7 +114,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getType() + * @see de.dlr.davinspector.plugin.IPlugin#getType() */ public PluginType getType() { return PluginType.VIEW_GENERAL; @@ -123,7 +123,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getVersion() + * @see de.dlr.davinspector.plugin.IPlugin#getVersion() */ public int getVersion() { return 1; @@ -132,7 +132,8 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#init() + * @see de.dlr.davinspector.plugin.IPlugin#init(de.dlr.davinspector.plugin.PluginManager, + * de.dlr.davinspector.plugin.IPlugin.PluginDirection) */ public void init(PluginManager pluginManager, PluginDirection direction) { myPlugInDirection = direction; @@ -184,7 +185,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#isActive() + * @see de.dlr.davinspector.plugin.IPlugin#isActive() */ public Boolean isActive() { return isActive; @@ -193,7 +194,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#setActive(java.lang.Boolean) + * @see de.dlr.davinspector.plugin.IPlugin#setActive(java.lang.Boolean) */ public void setActive(Boolean state) { isActive = state; @@ -202,7 +203,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#update(java.lang.String) + * @see de.dlr.davinspector.plugin.IPlugin#update(de.dlr.davinspector.history.AMessage) */ public void update(AMessage msg) { if (isActive && myXMLTextPane != null) { Modified: trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmltreeplugin/XMLTreePlugin.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmltreeplugin/XMLTreePlugin.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/plugins/xmltreeplugin/XMLTreePlugin.java 2008-06-17 15:54:37 UTC (rev 155) @@ -78,7 +78,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IViewPlugin#getUI() + * @see de.dlr.davinspector.plugin.IViewPlugin#getUI() */ public JComponent getUI() { return myJSplitPane; @@ -87,7 +87,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getAuthor() + * @see de.dlr.davinspector.plugin.IPlugin#getAuthor() */ public String getAuthor() { return "Jochen Wuest"; @@ -96,7 +96,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getDescription() + * @see de.dlr.davinspector.plugin.IPlugin#getDescription() */ public String getDescription() { return translate("description"); @@ -105,7 +105,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getName() + * @see de.dlr.davinspector.plugin.IPlugin#getName() */ public String getName() { return translate("name"); @@ -114,7 +114,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getType() + * @see de.dlr.davinspector.plugin.IPlugin#getType() */ public PluginType getType() { return PluginType.VIEW_GENERAL; @@ -123,7 +123,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#getVersion() + * @see de.dlr.davinspector.plugin.IPlugin#getVersion() */ public int getVersion() { return 1; @@ -132,7 +132,8 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#init() + * @see de.dlr.davinspector.plugin.IPlugin#init(de.dlr.davinspector.plugin.PluginManager, + * de.dlr.davinspector.plugin.IPlugin.PluginDirection) */ public void init(PluginManager pluginManager, PluginDirection direction) { myPlugInDirection = direction; @@ -183,7 +184,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#isActive() + * @see de.dlr.davinspector.plugin.IPlugin#isActive() */ public Boolean isActive() { return isActive; @@ -192,7 +193,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#setActive(java.lang.Boolean) + * @see de.dlr.davinspector.plugin.IPlugin#setActive(java.lang.Boolean) */ public void setActive(Boolean state) { isActive = state; @@ -201,7 +202,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Plugin.IPlugin#update(java.lang.String) + * @see de.dlr.davinspector.plugin.IPlugin#update(de.dlr.davinspector.history.AMessage) */ public void update(AMessage msg) { if (isActive && myXMLTreeView != null) { Modified: trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayModel.java =================================================================== --- trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayModel.java 2008-06-17 15:02:19 UTC (rev 154) +++ trunk/DAVInspector/src/de/dlr/davinspector/relay/RelayModel.java 2008-06-17 15:54:37 UTC (rev 155) @@ -153,7 +153,7 @@ /** * {@inheritDoc} * - * @see de.dlr.davinspector.relay.IRelayModel#enableAutomode(java.lang.Boolean) + * @see de.dlr.davinspector.relay.IRelayModel#enableAutomode() */ public void enableAutomode() { myPluginManager.disableEditPlugins(); @@ -233,7 +233,7 @@ /** * {@inheritDoc} * - * @see de.dlr.DAVInspector.Relay.IRelayModel#startRelay() + * @see de.dlr.davinspector.relay.IRelayModel#startRelay(de.dlr.davinspector.configuration.Configuration) */ public void startRelay(Configuration configuration) { theRelay = new RelayThread(this, configuration); @@ -256,7 +256,7 @@ /** * {@inheritDoc} * - * @see de.dlr.davinspector.relay.IRelayModel#writeToClient(java.lang.String) + * @see de.dlr.davinspector.relay.IRelayModel#writeToClient() */ public void writeToClient() { AMessage message = myMessageHistory.getMessage(myActiveClientMessageID); @@ -269,7 +269,7 @@ /** * {@inheritDoc} * - * @see de.dlr.davinspector.relay.IRelayModel#writeToServer(java.lang.String) + * @see de.dlr.davinspector.relay.IRelayModel#writeToServer() */ public void writeToServer() { AMessage message = myMessageHistory.getMessage(myActiveServerMessageID); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |