Sfoglia il codice sorgente

All methods marked @since 0.6.3 are now @since 0.6.3m1

tags/0.6.3m1rc1
Chris Smith 15 anni fa
parent
commit
e4cd22244c
56 ha cambiato i file con 93 aggiunte e 92 eliminazioni
  1. 1
    1
      src/com/dmdirc/CertificateManager.java
  2. 1
    1
      src/com/dmdirc/EventHandler.java
  3. 1
    1
      src/com/dmdirc/Server.java
  4. 3
    2
      src/com/dmdirc/ServerState.java
  5. 1
    1
      src/com/dmdirc/ServerStatus.java
  6. 1
    1
      src/com/dmdirc/addons/dcc/DCCCommand.java
  7. 1
    1
      src/com/dmdirc/addons/nowplaying/MediaSource.java
  8. 1
    1
      src/com/dmdirc/addons/nowplaying/MediaSourceState.java
  9. 1
    1
      src/com/dmdirc/addons/ui_swing/components/frames/InputTextFrame.java
  10. 1
    1
      src/com/dmdirc/addons/ui_swing/components/statusbar/ErrorPanel.java
  11. 1
    1
      src/com/dmdirc/addons/ui_swing/components/statusbar/ErrorPopup.java
  12. 1
    1
      src/com/dmdirc/addons/ui_swing/components/statusbar/InvitePopup.java
  13. 1
    1
      src/com/dmdirc/addons/ui_swing/components/statusbar/StatusbarPopupPanel.java
  14. 1
    1
      src/com/dmdirc/addons/ui_swing/components/statusbar/StatusbarPopupWindow.java
  15. 1
    1
      src/com/dmdirc/addons/ui_swing/dialogs/prefs/PreferencesListCellRenderer.java
  16. 2
    2
      src/com/dmdirc/addons/ui_swing/dialogs/prefs/PrefsCategoryLoader.java
  17. 2
    2
      src/com/dmdirc/addons/ui_swing/dialogs/prefs/SwingPreferencesDialog.java
  18. 1
    1
      src/com/dmdirc/addons/ui_swing/textpane/Line.java
  19. 1
    1
      src/com/dmdirc/commandparser/CommandArguments.java
  20. 9
    9
      src/com/dmdirc/commandparser/CommandManager.java
  21. 1
    1
      src/com/dmdirc/commandparser/CommandType.java
  22. 1
    1
      src/com/dmdirc/commandparser/commands/ChannelCommand.java
  23. 1
    1
      src/com/dmdirc/commandparser/commands/ChatCommand.java
  24. 1
    1
      src/com/dmdirc/commandparser/commands/CommandOptions.java
  25. 1
    1
      src/com/dmdirc/commandparser/commands/ExternalCommand.java
  26. 1
    1
      src/com/dmdirc/commandparser/commands/GlobalCommand.java
  27. 1
    1
      src/com/dmdirc/commandparser/commands/QueryCommand.java
  28. 1
    1
      src/com/dmdirc/commandparser/commands/ServerCommand.java
  29. 1
    1
      src/com/dmdirc/commandparser/commands/ValidatingCommand.java
  30. 1
    1
      src/com/dmdirc/commandparser/commands/WrappableCommand.java
  31. 1
    1
      src/com/dmdirc/commandparser/commands/server/JoinChannelCommand.java
  32. 5
    5
      src/com/dmdirc/commandparser/parsers/CommandParser.java
  33. 5
    5
      src/com/dmdirc/config/ConfigSource.java
  34. 3
    3
      src/com/dmdirc/config/Identity.java
  35. 1
    1
      src/com/dmdirc/config/InvalidIdentityFileException.java
  36. 6
    6
      src/com/dmdirc/config/prefs/PreferencesCategory.java
  37. 8
    8
      src/com/dmdirc/logger/ErrorManager.java
  38. 1
    1
      src/com/dmdirc/logger/ErrorReportingThread.java
  39. 1
    1
      src/com/dmdirc/parser/irc/IRCParser.java
  40. 1
    1
      src/com/dmdirc/parser/irc/SocketState.java
  41. 1
    1
      src/com/dmdirc/parser/irc/callbacks/CallbackObject.java
  42. 1
    1
      src/com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.java
  43. 1
    1
      src/com/dmdirc/parser/irc/callbacks/FakableArgument.java
  44. 1
    1
      src/com/dmdirc/parser/irc/callbacks/FakableSource.java
  45. 1
    1
      src/com/dmdirc/parser/irc/callbacks/SpecificCallback.java
  46. 1
    1
      src/com/dmdirc/ui/IconManager.java
  47. 1
    1
      src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateAction.java
  48. 1
    1
      src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateChainEntry.java
  49. 1
    1
      src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateInformationEntry.java
  50. 1
    1
      src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateSummaryEntry.java
  51. 1
    1
      src/com/dmdirc/ui/core/dialogs/sslcertificate/SSLCertificateDialogModel.java
  52. 3
    3
      src/com/dmdirc/ui/interfaces/Window.java
  53. 1
    1
      src/com/dmdirc/ui/messages/Styliser.java
  54. 1
    1
      src/com/dmdirc/updater/UpdateComponent.java
  55. 1
    1
      src/com/dmdirc/updater/Version.java
  56. 2
    2
      src/com/dmdirc/util/TextFile.java

+ 1
- 1
src/com/dmdirc/CertificateManager.java Vedi File

@@ -63,7 +63,7 @@ import net.miginfocom.Base64;
63 63
  * Manages storage and validation of certificates used when connecting to
64 64
  * SSL servers.
65 65
  *
66
- * @since 0.6.3
66
+ * @since 0.6.3m1
67 67
  * @author chris
68 68
  */
69 69
 public class CertificateManager implements X509TrustManager {

+ 1
- 1
src/com/dmdirc/EventHandler.java Vedi File

@@ -82,7 +82,7 @@ public abstract class EventHandler implements ICallbackInterface {
82 82
     /**
83 83
      * Retrieves the server belonging to this EventHandler's owner.
84 84
      *
85
-     * @since 0.6.3
85
+     * @since 0.6.3m1
86 86
      * @return This EventHandler's expected server
87 87
      */
88 88
     protected abstract Server getServer();

+ 1
- 1
src/com/dmdirc/Server.java Vedi File

@@ -983,7 +983,7 @@ public class Server extends WritableFrameContainer implements Serializable {
983 983
      * on the object returned by this method will almost certainly cause
984 984
      * problems.
985 985
      *
986
-     * @since 0.6.3
986
+     * @since 0.6.3m1
987 987
      * @return This server's status object.
988 988
      */
989 989
     public ServerStatus getStatus() {

+ 3
- 2
src/com/dmdirc/ServerState.java Vedi File

@@ -81,7 +81,7 @@ public enum ServerState {
81 81
     /**
82 82
      * Creates a new instance of ServerState.
83 83
      *
84
-     * @since 0.6.3
84
+     * @since 0.6.3m1
85 85
      * @param transitions The names of the states to which a transition is
86 86
      * allowed from this state
87 87
      */
@@ -93,7 +93,7 @@ public enum ServerState {
93 93
      * Determines whether a transition from this state to the specified state
94 94
      * would be legal.
95 95
      *
96
-     * @since 0.6.3
96
+     * @since 0.6.3m1
97 97
      * @param state The state that is being transitioned to
98 98
      * @return True if the transition is allowed, false otherwise.
99 99
      */
@@ -105,6 +105,7 @@ public enum ServerState {
105 105
      * Determines where the current state is a disconnected one.
106 106
      *
107 107
      * @return True if the state is one of the disconnected states, false otherwise
108
+     * @since 0.6.3m1
108 109
      */
109 110
     public boolean isDisconnected() {
110 111
         return this == ServerState.DISCONNECTED || this == ServerState.TRANSIENTLY_DISCONNECTED;

+ 1
- 1
src/com/dmdirc/ServerStatus.java Vedi File

@@ -28,7 +28,7 @@ import com.dmdirc.util.RollingList;
28 28
  * Describes the status of a server and manages transitions between different
29 29
  * states.
30 30
  *
31
- * @since 0.6.3
31
+ * @since 0.6.3m1
32 32
  * @author chris
33 33
  */
34 34
 public class ServerStatus {

+ 1
- 1
src/com/dmdirc/addons/dcc/DCCCommand.java Vedi File

@@ -122,7 +122,7 @@ public final class DCCCommand extends ServerCommand implements IntelligentComman
122 122
 	 * @param server The server instance that this command is being executed on
123 123
 	 * @param isSilent Whether this command is silenced or not
124 124
 	 * @param filename The file to send
125
-     * @since 0.6.3
125
+     * @since 0.6.3m1
126 126
 	 */
127 127
 	public void sendFile(final String target, final InputWindow origin, final Server server, final boolean isSilent, final String filename) {
128 128
 		// New thread to ask the user what file to send

+ 1
- 1
src/com/dmdirc/addons/nowplaying/MediaSource.java Vedi File

@@ -33,7 +33,7 @@ public interface MediaSource {
33 33
      * Get the state of this media source
34 34
      *
35 35
      * @return State for this media source.
36
-     * @since 0.6.3
36
+     * @since 0.6.3m1
37 37
      */
38 38
     MediaSourceState getState();
39 39
     

+ 1
- 1
src/com/dmdirc/addons/nowplaying/MediaSourceState.java Vedi File

@@ -26,7 +26,7 @@ package com.dmdirc.addons.nowplaying;
26 26
  * The state of a media source.
27 27
  *
28 28
  * @author Shane McCormack
29
- * @since 0.6.3
29
+ * @since 0.6.3m1
30 30
  */
31 31
 public enum MediaSourceState {
32 32
 	/** Media Source is closed. */

+ 1
- 1
src/com/dmdirc/addons/ui_swing/components/frames/InputTextFrame.java Vedi File

@@ -334,7 +334,7 @@ public abstract class InputTextFrame extends TextFrame implements InputWindow,
334 334
      * Pastes the specified content into the input area.
335 335
      *
336 336
      * @param clipboard The contents of the clipboard to be pasted
337
-     * @since 0.6.3
337
+     * @since 0.6.3m1
338 338
      */
339 339
     protected void doPaste(final String clipboard) {
340 340
         String[] clipboardLines;

+ 1
- 1
src/com/dmdirc/addons/ui_swing/components/statusbar/ErrorPanel.java Vedi File

@@ -46,7 +46,7 @@ import javax.swing.SwingUtilities;
46 46
 /**
47 47
  * Shows error status in the status bar.
48 48
  *
49
- * @since 0.6.3
49
+ * @since 0.6.3m1
50 50
  * @author chris
51 51
  */
52 52
 public class ErrorPanel extends StatusbarPopupPanel implements ErrorListener, ActionListener {

+ 1
- 1
src/com/dmdirc/addons/ui_swing/components/statusbar/ErrorPopup.java Vedi File

@@ -39,7 +39,7 @@ import javax.swing.JSeparator;
39 39
 /**
40 40
  * Shows a breakdown of errors that have occured.
41 41
  *
42
- * @since 0.6.3
42
+ * @since 0.6.3m1
43 43
  * @author chris
44 44
  */
45 45
 public class ErrorPopup extends StatusbarPopupWindow {

+ 1
- 1
src/com/dmdirc/addons/ui_swing/components/statusbar/InvitePopup.java Vedi File

@@ -32,7 +32,7 @@ import javax.swing.JPanel;
32 32
 /**
33 33
  * Shows information about received invites.
34 34
  *
35
- * @since 0.6.3
35
+ * @since 0.6.3m1
36 36
  * @author chris
37 37
  */
38 38
 public class InvitePopup extends StatusbarPopupWindow {

+ 1
- 1
src/com/dmdirc/addons/ui_swing/components/statusbar/StatusbarPopupPanel.java Vedi File

@@ -42,7 +42,7 @@ import net.miginfocom.swing.MigLayout;
42 42
  * A panel shown in the status bar which displays a {@link StatusbarPopupWindow}
43 43
  * when the user mouses over it.
44 44
  *
45
- * @since 0.6.3
45
+ * @since 0.6.3m1
46 46
  * @author chris
47 47
  */
48 48
 public abstract class StatusbarPopupPanel extends JPanel

+ 1
- 1
src/com/dmdirc/addons/ui_swing/components/statusbar/StatusbarPopupWindow.java Vedi File

@@ -41,7 +41,7 @@ import net.miginfocom.swing.MigLayout;
41 41
  * A popup window which is shown above a status bar component to provide more
42 42
  * detailed information.
43 43
  *
44
- * @since 0.6.3
44
+ * @since 0.6.3m1
45 45
  * @author chris
46 46
  */
47 47
 public abstract class StatusbarPopupWindow extends StandardDialog {

+ 1
- 1
src/com/dmdirc/addons/ui_swing/dialogs/prefs/PreferencesListCellRenderer.java Vedi File

@@ -47,7 +47,7 @@ import net.miginfocom.layout.PlatformDefaults;
47 47
 /**
48 48
  * Prefs dialog list cell renderer.
49 49
  *
50
- * @since 0.6.3
50
+ * @since 0.6.3m1
51 51
  */
52 52
 public class PreferencesListCellRenderer extends JLabel implements ListCellRenderer {
53 53
 

+ 2
- 2
src/com/dmdirc/addons/ui_swing/dialogs/prefs/PrefsCategoryLoader.java Vedi File

@@ -117,7 +117,7 @@ public class PrefsCategoryLoader extends SwingWorker<JPanel, Object> {
117 117
     /**
118 118
      * Initialises the specified category.
119 119
      *
120
-     * @since 0.6.3
120
+     * @since 0.6.3m1
121 121
      * @param category The category that is being initialised
122 122
      * @param panel The panel to which we're adding its contents
123 123
      * @param path The textual path of this category
@@ -235,7 +235,7 @@ public class PrefsCategoryLoader extends SwingWorker<JPanel, Object> {
235 235
     /**
236 236
      * Adds the specified category to the preferences dialog.
237 237
      *
238
-     * @since 0.6.3
238
+     * @since 0.6.3m1
239 239
      * @param category The category to be added
240 240
      * @param namePrefix Category name prefix
241 241
      */

+ 2
- 2
src/com/dmdirc/addons/ui_swing/dialogs/prefs/SwingPreferencesDialog.java Vedi File

@@ -67,7 +67,7 @@ public final class SwingPreferencesDialog extends StandardDialog implements
67 67
     /**
68 68
      * The maximum height clients may use if they don't want to scroll.
69 69
      *
70
-     * @since 0.6.3
70
+     * @since 0.6.3m1
71 71
      */
72 72
     public static int CLIENT_HEIGHT = 375;
73 73
     /** Previously instantiated instance of SwingPreferencesDialog. */
@@ -253,7 +253,7 @@ public final class SwingPreferencesDialog extends StandardDialog implements
253 253
     /**
254 254
      * {@inheritDoc}
255 255
      *
256
-     * @since 0.6.3
256
+     * @since 0.6.3m1
257 257
      */
258 258
     @Override
259 259
     public void valueChanged(final ListSelectionEvent e) {

+ 1
- 1
src/com/dmdirc/addons/ui_swing/textpane/Line.java Vedi File

@@ -112,7 +112,7 @@ public class Line {
112 112
      *
113 113
      * @return Line at the specified number or null
114 114
      *
115
-     * @since 0.6.3
115
+     * @since 0.6.3m1
116 116
      */
117 117
     public String getStyledText() {
118 118
         StringBuilder lineText = new StringBuilder();

+ 1
- 1
src/com/dmdirc/commandparser/CommandArguments.java Vedi File

@@ -32,7 +32,7 @@ import java.util.regex.Pattern;
32 32
  * 'arguments' are the same but exclude the first word, which will normally be
33 33
  * the command name.
34 34
  *
35
- * @since 0.6.3
35
+ * @since 0.6.3m1
36 36
  * @author chris
37 37
  */
38 38
 public class CommandArguments {

+ 9
- 9
src/com/dmdirc/commandparser/CommandManager.java Vedi File

@@ -97,7 +97,7 @@ public final class CommandManager {
97 97
      * 
98 98
      * @param command The command to be registered
99 99
      * @param info The information about the command
100
-     * @since 0.6.3
100
+     * @since 0.6.3m1
101 101
      */
102 102
     public static void registerCommand(final Command command, final CommandInfo info) {
103 103
         registerCommand(info, command, true);
@@ -110,7 +110,7 @@ public final class CommandManager {
110 110
      * @param <T> The type of object that's being registered
111 111
      * @param command An object that extends {@link Command} and implements
112 112
      * {@link CommandInfo} to be registered.
113
-     * @since 0.6.3
113
+     * @since 0.6.3m1
114 114
      */
115 115
     public static <T extends Command & CommandInfo> void registerCommand(final T command) {
116 116
         registerCommand(command, command);
@@ -120,7 +120,7 @@ public final class CommandManager {
120 120
      * Unregisters a command with the command manager.
121 121
      * 
122 122
      * @param info The information object for the command that should be unregistered
123
-     * @since 0.6.3
123
+     * @since 0.6.3m1
124 124
      */
125 125
     public static void unregisterCommand(final CommandInfo info) {
126 126
         registerCommand(info, commands.get(info), false);
@@ -133,7 +133,7 @@ public final class CommandManager {
133 133
      * @param command The command to be (un)registered
134 134
      * @param register True if the command should be registered, false if it
135 135
      * should be unregistered.
136
-     * @since 0.6.3
136
+     * @since 0.6.3m1
137 137
      */
138 138
     private static void registerCommand(final CommandInfo info, final Command command,
139 139
             final boolean register) {
@@ -156,7 +156,7 @@ public final class CommandManager {
156 156
      * @param info The command information object
157 157
      * @param command The command to be reigstered
158 158
      * @param parsers The parsers to register the command with
159
-     * @since 0.6.3
159
+     * @since 0.6.3m1
160 160
      */
161 161
     private static void registerCommand(final CommandInfo info, final Command command,
162 162
             final List<? extends CommandParser> myParsers, final boolean register) {
@@ -176,7 +176,7 @@ public final class CommandManager {
176 176
      * @param command The command to be registered
177 177
      * @param register True if the command should be registered, false if it
178 178
      * should be unregistered.
179
-     * @since 0.6.3
179
+     * @since 0.6.3m1
180 180
      */
181 181
     private static void registerCommandName(final CommandInfo command,
182 182
             final boolean register) {
@@ -311,7 +311,7 @@ public final class CommandManager {
311 311
      * Loads all commands of the specified types into the specified parser.
312 312
      *
313 313
      * @see CommandType#getComponentTypes()
314
-     * @since 0.6.3
314
+     * @since 0.6.3m1
315 315
      * @param parser The {@link CommandParser} to load commands in to
316 316
      * @param supertypes The types of commands that should be loaded
317 317
      */
@@ -386,7 +386,7 @@ public final class CommandManager {
386 386
      * 
387 387
      * @param type The type of command to list
388 388
      * @return A map of commands
389
-     * @since 0.6.3
389
+     * @since 0.6.3m1
390 390
      */    
391 391
     public static Map<CommandInfo, Command> getCommands(final CommandType type) {
392 392
         return getCommands(type, null);
@@ -399,7 +399,7 @@ public final class CommandManager {
399 399
      * @param type The type of command to list, or null for all types
400 400
      * @param name The name of the command to look for, or null for any name
401 401
      * @return A map of {@link CommandInfo}s and their associated {@link Command}.
402
-     * @since 0.6.3
402
+     * @since 0.6.3m1
403 403
      */    
404 404
     private static Map<CommandInfo, Command> getCommands(final CommandType type,
405 405
             final String name) {

+ 1
- 1
src/com/dmdirc/commandparser/CommandType.java Vedi File

@@ -77,7 +77,7 @@ public enum CommandType {
77 77
      * both CHAT and CHANNEL queues). Note that for obvious reasons there is
78 78
      * no recursion done on the values returned here.
79 79
      *
80
-     * @since 0.6.3
80
+     * @since 0.6.3m1
81 81
      * @return An array of types which this type should be registered as.
82 82
      */
83 83
     public CommandType[] getComponentTypes() {

+ 1
- 1
src/com/dmdirc/commandparser/commands/ChannelCommand.java Vedi File

@@ -43,7 +43,7 @@ public abstract class ChannelCommand extends Command implements CommandInfo {
43 43
      * @param channel The channel instance that this command is being executed on
44 44
      * @param isSilent Whether this command is silenced or not
45 45
      * @param args Arguments passed to this command
46
-     * @since 0.6.3
46
+     * @since 0.6.3m1
47 47
      */
48 48
     public abstract void execute(InputWindow origin, Server server, Channel channel,
49 49
             boolean isSilent, CommandArguments args);

+ 1
- 1
src/com/dmdirc/commandparser/commands/ChatCommand.java Vedi File

@@ -45,7 +45,7 @@ public abstract class ChatCommand extends Command implements CommandInfo {
45 45
      * @param target The target of this command
46 46
      * @param isSilent Whether this command is silenced or not
47 47
      * @param args Arguments passed to this command
48
-     * @since 0.6.3
48
+     * @since 0.6.3m1
49 49
      */
50 50
     public abstract void execute(InputWindow origin, Server server, MessageTarget target,
51 51
             boolean isSilent, CommandArguments args);

+ 1
- 1
src/com/dmdirc/commandparser/commands/CommandOptions.java Vedi File

@@ -30,7 +30,7 @@ import java.lang.annotation.Target;
30 30
 /**
31 31
  * Allows commands to define options that affect their behaviour.
32 32
  *
33
- * @since 0.6.3
33
+ * @since 0.6.3m1
34 34
  * @author chris
35 35
  */
36 36
 @Retention(RetentionPolicy.RUNTIME)

+ 1
- 1
src/com/dmdirc/commandparser/commands/ExternalCommand.java Vedi File

@@ -41,7 +41,7 @@ public interface ExternalCommand {
41 41
      * @param channel The name of the channel the command is being executed for
42 42
      * @param isSilent Whether this command is silenced or not
43 43
      * @param args Arguments passed to this command
44
-     * @since 0.6.3
44
+     * @since 0.6.3m1
45 45
      */
46 46
     void execute(InputWindow origin, Server server, String channel,
47 47
             boolean isSilent, CommandArguments args);

+ 1
- 1
src/com/dmdirc/commandparser/commands/GlobalCommand.java Vedi File

@@ -42,7 +42,7 @@ public abstract class GlobalCommand extends Command implements CommandInfo {
42 42
      * @param origin The window in which the command was typed
43 43
      * @param isSilent Whether this command is silenced or not
44 44
      * @param args Arguments passed to this command
45
-     * @since 0.6.3
45
+     * @since 0.6.3m1
46 46
      */
47 47
     public abstract void execute(InputWindow origin, boolean isSilent, CommandArguments args);
48 48
 

+ 1
- 1
src/com/dmdirc/commandparser/commands/QueryCommand.java Vedi File

@@ -44,7 +44,7 @@ public abstract class QueryCommand extends Command implements CommandInfo {
44 44
      * @param query The query object that the commadparser is associated with
45 45
      * @param isSilent Whether this command is silenced or not
46 46
      * @param args Arguments passed to this command
47
-     * @since 0.6.3
47
+     * @since 0.6.3m1
48 48
      */
49 49
     public abstract void execute(InputWindow origin, Server server, Query query,
50 50
             boolean isSilent, CommandArguments args);

+ 1
- 1
src/com/dmdirc/commandparser/commands/ServerCommand.java Vedi File

@@ -43,7 +43,7 @@ public abstract class ServerCommand extends Command implements CommandInfo {
43 43
      * @param server The server instance that this command is being executed on
44 44
      * @param isSilent Whether this command is silenced or not
45 45
      * @param args Arguments passed to this command
46
-     * @since 0.6.3
46
+     * @since 0.6.3m1
47 47
      */
48 48
     public abstract void execute(InputWindow origin, Server server,
49 49
             boolean isSilent, CommandArguments args);

+ 1
- 1
src/com/dmdirc/commandparser/commands/ValidatingCommand.java Vedi File

@@ -39,7 +39,7 @@ public interface ValidatingCommand {
39 39
      * @param origin The window the command is being executed in
40 40
      * @param arguments The arguments that the user has entered (so far)
41 41
      * @return A validation response indicating the validity of the arguments
42
-     * @since 0.6.3
42
+     * @since 0.6.3m1
43 43
      */
44 44
     ValidationResponse validateArguments(InputWindow origin, CommandArguments arguments);
45 45
 

+ 1
- 1
src/com/dmdirc/commandparser/commands/WrappableCommand.java Vedi File

@@ -40,7 +40,7 @@ public interface WrappableCommand {
40 40
      * @param origin The window the command is being executed in
41 41
      * @param arguments The arguments that the user has entered (so far)
42 42
      * @return The number of lines that the arguments will result in
43
-     * @since 0.6.3
43
+     * @since 0.6.3m1
44 44
      */
45 45
     int getLineCount(InputWindow origin, CommandArguments arguments);
46 46
 

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/JoinChannelCommand.java Vedi File

@@ -41,7 +41,7 @@ import java.util.List;
41 41
 /**
42 42
  * Allows the user to join channels.
43 43
  *
44
- * @since 0.6.3
44
+ * @since 0.6.3m1
45 45
  * @author chris
46 46
  */
47 47
 public final class JoinChannelCommand extends ServerCommand implements

+ 5
- 5
src/com/dmdirc/commandparser/parsers/CommandParser.java Vedi File

@@ -83,7 +83,7 @@ public abstract class CommandParser implements Serializable {
83 83
     /**
84 84
      * Registers the specified command with this parser.
85 85
      *
86
-     * @since 0.6.3
86
+     * @since 0.6.3m1
87 87
      * @param command Command to be registered
88 88
      * @param info The information the command should be registered with
89 89
      */
@@ -95,7 +95,7 @@ public abstract class CommandParser implements Serializable {
95 95
      * Unregisters the specified command with this parser.
96 96
      *
97 97
      * @param info Command information to be unregistered
98
-     * @since 0.6.3
98
+     * @since 0.6.3m1
99 99
      */
100 100
     public final void unregisterCommand(final CommandInfo info) {
101 101
         commands.remove(info.getName().toLowerCase());
@@ -104,7 +104,7 @@ public abstract class CommandParser implements Serializable {
104 104
     /**
105 105
      * Retrieves a map of commands known by this command parser.
106 106
      *
107
-     * @since 0.6.3
107
+     * @since 0.6.3m1
108 108
      * @return A map of commands known to this parser
109 109
      */
110 110
     public Map<String, Command> getCommands() {
@@ -226,7 +226,7 @@ public abstract class CommandParser implements Serializable {
226 226
      * @param isSilent Whether the command is being silenced or not
227 227
      * @param command The command to be executed
228 228
      * @param args The arguments to the command
229
-     * @since 0.6.3
229
+     * @since 0.6.3m1
230 230
      */
231 231
     protected abstract void executeCommand(final InputWindow origin,
232 232
             final boolean isSilent, final Command command, final CommandArguments args);
@@ -238,7 +238,7 @@ public abstract class CommandParser implements Serializable {
238 238
      *
239 239
      * @param origin The window in which the command was typed
240 240
      * @param args The arguments passed to the command
241
-     * @since 0.6.3
241
+     * @since 0.6.3m1
242 242
      */
243 243
     protected void handleInvalidCommand(final InputWindow origin,
244 244
             final CommandArguments args) {

+ 5
- 5
src/com/dmdirc/config/ConfigSource.java Vedi File

@@ -59,7 +59,7 @@ public abstract class ConfigSource {
59 59
      *
60 60
      * @param domain The domain of the option
61 61
      * @param option The name of the option
62
-     * @since 0.6.3
62
+     * @since 0.6.3m1
63 63
      * @return True iff the option exists and is not empty, false otherwise
64 64
      */
65 65
     public boolean hasOptionString(final String domain, final String option) {
@@ -71,7 +71,7 @@ public abstract class ConfigSource {
71 71
      *
72 72
      * @param domain The domain of the option
73 73
      * @param option The name of the option
74
-     * @since 0.6.3
74
+     * @since 0.6.3m1
75 75
      * @return True iff the option exists and is parsable as an integer,
76 76
      * false otherwise.
77 77
      */
@@ -93,7 +93,7 @@ public abstract class ConfigSource {
93 93
      *
94 94
      * @param domain The domain of the option
95 95
      * @param option The name of the option
96
-     * @since 0.6.3
96
+     * @since 0.6.3m1
97 97
      * @return True iff the option exists and is parsable as a char,
98 98
      * false otherwise.
99 99
      */
@@ -106,7 +106,7 @@ public abstract class ConfigSource {
106 106
      *
107 107
      * @param domain The domain of the option
108 108
      * @param option The name of the option
109
-     * @since 0.6.3
109
+     * @since 0.6.3m1
110 110
      * @return True iff the option exists and is parsable as a colour,
111 111
      * false otherwise.
112 112
      */
@@ -133,7 +133,7 @@ public abstract class ConfigSource {
133 133
      * @param fallbacks An ordered array of further domains and options
134 134
      * (in pairs) to try if the specified domain/option isn't found
135 135
      * @return The colour representation of the option
136
-     * @since 0.6.3
136
+     * @since 0.6.3m1
137 137
      */
138 138
     public Color getOptionColour(final String domain, final String option,
139 139
             final String ... fallbacks) {

+ 3
- 3
src/com/dmdirc/config/Identity.java Vedi File

@@ -271,7 +271,7 @@ public class Identity extends ConfigSource implements Serializable,
271 271
      *
272 272
      * @param domain The domain of the option that's changed
273 273
      * @param key The key of the option that's changed
274
-     * @since 0.6.3
274
+     * @since 0.6.3m1
275 275
      */
276 276
     private void fireSettingChange(final String domain, final String key) {
277 277
         for (ConfigChangeListener listener : new ArrayList<ConfigChangeListener>(listeners)) {
@@ -297,7 +297,7 @@ public class Identity extends ConfigSource implements Serializable,
297 297
      * storing nicknames (profile.nickname + profile.altnicks) to the new
298 298
      * method (profile.nicknames), and performs the migration if needed.
299 299
      *
300
-     * @since 0.6.3
300
+     * @since 0.6.3m1
301 301
      */
302 302
     protected void migrateProfile() {
303 303
         if (hasOption(PROFILE_DOMAIN, "nickname")) {
@@ -609,7 +609,7 @@ public class Identity extends ConfigSource implements Serializable,
609 609
      * @return A new identity containing the specified properties
610 610
      * @throws IOException If the file cannot be created
611 611
      * @throws InvalidIdentityFileException If the settings are invalid
612
-     * @since 0.6.3
612
+     * @since 0.6.3m1
613 613
      */
614 614
     protected static Identity createIdentity(final Map<String, Map<String, String>> settings)
615 615
             throws IOException, InvalidIdentityFileException {

+ 1
- 1
src/com/dmdirc/config/InvalidIdentityFileException.java Vedi File

@@ -46,7 +46,7 @@ public class InvalidIdentityFileException extends Exception {
46 46
      * Creates a new instance of InvalidIdentityFileException.
47 47
      *
48 48
      * @param cause The cause of the exception
49
-     * @since 0.6.3
49
+     * @since 0.6.3m1
50 50
      */
51 51
     public InvalidIdentityFileException(final Throwable cause) {
52 52
         super(cause);

+ 6
- 6
src/com/dmdirc/config/prefs/PreferencesCategory.java Vedi File

@@ -82,7 +82,7 @@ public class PreferencesCategory {
82 82
     /**
83 83
      * Creates a new preferences category that contains settings.
84 84
      *
85
-     * @since 0.6.3
85
+     * @since 0.6.3m1
86 86
      * @param title The title of this preferences category
87 87
      * @param description The description of this category
88 88
      * @param icon The icon to use for this category
@@ -107,7 +107,7 @@ public class PreferencesCategory {
107 107
     /**
108 108
      * Creates a new preferences category that contains an object.
109 109
      *
110
-     * @since 0.6.3
110
+     * @since 0.6.3m1
111 111
      * @param title The title of this preferences category
112 112
      * @param description The description of this category
113 113
      * @param icon The icon to use for this category
@@ -230,7 +230,7 @@ public class PreferencesCategory {
230 230
      * Retrieves the icon to use for this category.
231 231
      *
232 232
      * @return This category's icon
233
-     * @since 0.6.3
233
+     * @since 0.6.3m1
234 234
      */
235 235
     public String getIcon() {
236 236
         return icon;
@@ -262,7 +262,7 @@ public class PreferencesCategory {
262 262
      * hierarchy, separated by '→' characters.
263 263
      *
264 264
      * @return This category's path
265
-     * @since 0.6.3
265
+     * @since 0.6.3m1
266 266
      */
267 267
     public String getPath() {
268 268
         return (parent == null ? "" : parent.getPath() + " → ") + getTitle();
@@ -272,7 +272,7 @@ public class PreferencesCategory {
272 272
      * Sets this category's parent.
273 273
      *
274 274
      * @param parent The parent of this category
275
-     * @since 0.6.3
275
+     * @since 0.6.3m1
276 276
      */
277 277
     public void setParent(final PreferencesCategory parent) {
278 278
         this.parent = parent;
@@ -282,7 +282,7 @@ public class PreferencesCategory {
282 282
      * Retrieves the parent of this category.
283 283
      *
284 284
      * @return This category's parent, or null if it's an orphan
285
-     * @since 0.6.3
285
+     * @since 0.6.3m1
286 286
      */
287 287
     public PreferencesCategory getParent() {
288 288
         return parent;

+ 8
- 8
src/com/dmdirc/logger/ErrorManager.java Vedi File

@@ -112,7 +112,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
112 112
      *
113 113
      * @param level The severity of the error
114 114
      * @param message The error message
115
-     * @since 0.6.3
115
+     * @since 0.6.3m1
116 116
      */
117 117
     protected void addError(final ErrorLevel level, final String message) {
118 118
         addError(level, message, new String[0], false);
@@ -125,7 +125,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
125 125
      * @param message The error message
126 126
      * @param exception The exception that caused this error
127 127
      * @param appError Whether or not this is an application error
128
-     * @since 0.6.3
128
+     * @since 0.6.3m1
129 129
      */
130 130
     protected void addError(final ErrorLevel level, final String message,
131 131
             final Throwable exception, final boolean appError) {
@@ -139,7 +139,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
139 139
      * @param message The error message
140 140
      * @param details The details of the exception
141 141
      * @param appError Whether or not this is an application error
142
-     * @since 0.6.3
142
+     * @since 0.6.3m1
143 143
      */
144 144
     protected void addError(final ErrorLevel level, final String message,
145 145
             final String[] details, final boolean appError) {
@@ -154,7 +154,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
154 154
      * @param details The details of the exception
155 155
      * @param appError Whether or not this is an application error
156 156
      * @param canReport Whether or not this error can be reported
157
-     * @since 0.6.3
157
+     * @since 0.6.3m1
158 158
      */
159 159
     protected void addError(final ErrorLevel level, final String message,
160 160
             final String[] details, final boolean appError, final boolean canReport) {
@@ -210,7 +210,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
210 210
      * @param message The error message
211 211
      * @param details The details of the exception
212 212
      * @param appError Whether or not this is an application error
213
-     * @since 0.6.3
213
+     * @since 0.6.3m1
214 214
      * @return A corresponding ProgramError
215 215
      */
216 216
     protected ProgramError getError(final ErrorLevel level, final String message,
@@ -224,7 +224,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
224 224
      * willing to report.
225 225
      *
226 226
      * @param exception The exception to test
227
-     * @since 0.6.3
227
+     * @since 0.6.3m1
228 228
      * @return True if the exception may be reported, false otherwise
229 229
      */
230 230
     protected boolean isValidError(final Throwable exception) {
@@ -247,7 +247,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
247 247
      * Converts an exception into a string array.
248 248
      *
249 249
      * @param throwable Exception to convert
250
-     * @since 0.6.3
250
+     * @since 0.6.3m1
251 251
      * @return Exception string array
252 252
      */
253 253
     protected String[] getTrace(final Throwable throwable) {
@@ -317,7 +317,7 @@ public final class ErrorManager implements Serializable, ConfigChangeListener {
317 317
     /**
318 318
      * Deletes all errors from the manager.
319 319
      *
320
-     * @since 0.6.3
320
+     * @since 0.6.3m1
321 321
      */
322 322
     public void deleteAll() {
323 323
         synchronized (errors) {

+ 1
- 1
src/com/dmdirc/logger/ErrorReportingThread.java Vedi File

@@ -27,7 +27,7 @@ import java.util.concurrent.BlockingQueue;
27 27
 /**
28 28
  * Daemon thread which reports errors.
29 29
  *
30
- * @since 0.6.3
30
+ * @since 0.6.3m1
31 31
  * @author chris
32 32
  */
33 33
 public class ErrorReportingThread extends Thread {

+ 1
- 1
src/com/dmdirc/parser/irc/IRCParser.java Vedi File

@@ -354,7 +354,7 @@ public class IRCParser implements Runnable {
354 354
 	/**
355 355
 	 * Get the current socket State.
356 356
 	 *
357
-     * @since 0.6.3
357
+     * @since 0.6.3m1
358 358
 	 * @return Current {@link SocketState}
359 359
 	 */
360 360
 	public SocketState getSocketState() { return currentSocketState; }

+ 1
- 1
src/com/dmdirc/parser/irc/SocketState.java Vedi File

@@ -25,7 +25,7 @@ package com.dmdirc.parser.irc;
25 25
 /**
26 26
  * An enumeration of possible states of an IRC Parser's socket.
27 27
  *
28
- * @since 0.6.3
28
+ * @since 0.6.3m1
29 29
  * @author chris
30 30
  */
31 31
 public enum SocketState {

+ 1
- 1
src/com/dmdirc/parser/irc/callbacks/CallbackObject.java Vedi File

@@ -60,7 +60,7 @@ public class CallbackObject {
60 60
 	 * @param parser IRCParser That owns this callback
61 61
 	 * @param manager CallbackManager that is in charge of this callback
62 62
      * @param type The type of callback to use
63
-     * @since 0.6.3
63
+     * @since 0.6.3m1
64 64
 	 */
65 65
 	protected CallbackObject(final IRCParser parser, final CallbackManager manager,
66 66
             final Class<? extends ICallbackInterface> type) {

+ 1
- 1
src/com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.java Vedi File

@@ -48,7 +48,7 @@ public class CallbackObjectSpecific extends CallbackObject {
48 48
 	 * @param parser IRCParser That owns this callback
49 49
 	 * @param manager CallbackManager that is in charge of this callback
50 50
      * @param type The type of callback to use
51
-     * @since 0.6.3
51
+     * @since 0.6.3m1
52 52
 	 */
53 53
 	public CallbackObjectSpecific(final IRCParser parser,
54 54
             final CallbackManager manager, final Class<? extends ICallbackInterface> type) {

+ 1
- 1
src/com/dmdirc/parser/irc/callbacks/FakableArgument.java Vedi File

@@ -30,7 +30,7 @@ import java.lang.annotation.Target;
30 30
 /**
31 31
  * Indicates a specific argument may be faked.
32 32
  *
33
- * @since 0.6.3
33
+ * @since 0.6.3m1
34 34
  * @author chris
35 35
  */
36 36
 @Retention(RetentionPolicy.RUNTIME)

+ 1
- 1
src/com/dmdirc/parser/irc/callbacks/FakableSource.java Vedi File

@@ -31,7 +31,7 @@ import java.lang.annotation.Target;
31 31
  * Indicates that the specified argument is a source of data for fakable
32 32
  * arguments.
33 33
  *
34
- * @since 0.6.3
34
+ * @since 0.6.3m1
35 35
  * @author chris
36 36
  */
37 37
 @Retention(RetentionPolicy.RUNTIME)

+ 1
- 1
src/com/dmdirc/parser/irc/callbacks/SpecificCallback.java Vedi File

@@ -29,7 +29,7 @@ import java.lang.annotation.RetentionPolicy;
29 29
  * Used to indicate that a callback interface can be called for specified
30 30
  * objects (hosts/channels/etc).
31 31
  *
32
- * @since 0.6.3
32
+ * @since 0.6.3m1
33 33
  * @author chris
34 34
  */
35 35
 @Retention(RetentionPolicy.RUNTIME)

+ 1
- 1
src/com/dmdirc/ui/IconManager.java Vedi File

@@ -98,7 +98,7 @@ public final class IconManager implements ConfigChangeListener {
98 98
      * 
99 99
      * @return The icon that should be used for the specified type
100 100
      *
101
-     * @since 0.6.3
101
+     * @since 0.6.3m1
102 102
      */
103 103
     public Icon getScaledIcon(final String type, final int width, final int height) {
104 104
         return new ImageIcon(getScaledImage(new ImageIcon(getIconURL(type)).

+ 1
- 1
src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateAction.java Vedi File

@@ -25,7 +25,7 @@ package com.dmdirc.ui.core.dialogs.sslcertificate;
25 25
 /**
26 26
  * Describes an action that can be performed on an invalid certificate.
27 27
  *
28
- * @since 0.6.3
28
+ * @since 0.6.3m1
29 29
  * @author chris
30 30
  */
31 31
 public enum CertificateAction {

+ 1
- 1
src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateChainEntry.java Vedi File

@@ -25,7 +25,7 @@ package com.dmdirc.ui.core.dialogs.sslcertificate;
25 25
 /**
26 26
  * Represents one certificate within a chain.
27 27
  *
28
- * @since 0.6.3
28
+ * @since 0.6.3m1
29 29
  * @author chris
30 30
  */
31 31
 public class CertificateChainEntry {

+ 1
- 1
src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateInformationEntry.java Vedi File

@@ -25,7 +25,7 @@ package com.dmdirc.ui.core.dialogs.sslcertificate;
25 25
 /**
26 26
  * Describes one piece of information about a certificate.
27 27
  *
28
- * @since 0.6.3
28
+ * @since 0.6.3m1
29 29
  * @author chris
30 30
  */
31 31
 public class CertificateInformationEntry {

+ 1
- 1
src/com/dmdirc/ui/core/dialogs/sslcertificate/CertificateSummaryEntry.java Vedi File

@@ -25,7 +25,7 @@ package com.dmdirc.ui.core.dialogs.sslcertificate;
25 25
 /**
26 26
  * Describes an entry in the summary of a certificate.
27 27
  *
28
- * @since 0.6.3
28
+ * @since 0.6.3m1
29 29
  * @author chris
30 30
  */
31 31
 public class CertificateSummaryEntry {

+ 1
- 1
src/com/dmdirc/ui/core/dialogs/sslcertificate/SSLCertificateDialogModel.java Vedi File

@@ -38,7 +38,7 @@ import java.util.Map;
38 38
 /**
39 39
  * Model for SSL certificate dialogs.
40 40
  *
41
- * @since 0.6.3
41
+ * @since 0.6.3m1
42 42
  * @author chris
43 43
  */
44 44
 public class SSLCertificateDialogModel {

+ 3
- 3
src/com/dmdirc/ui/interfaces/Window.java Vedi File

@@ -120,7 +120,7 @@ public interface Window {
120 120
     /**
121 121
      * Restores this window.
122 122
      * 
123
-     * @since 0.6.3
123
+     * @since 0.6.3m1
124 124
      */
125 125
     void restore();
126 126
     
@@ -128,14 +128,14 @@ public interface Window {
128 128
     /** 
129 129
      * Maximises this window.
130 130
      * 
131
-     * @since 0.6.3
131
+     * @since 0.6.3m1
132 132
      */
133 133
     void maximise();
134 134
     
135 135
     /**
136 136
      * Toggles Maximise State.
137 137
      * 
138
-     * @since 0.6.3
138
+     * @since 0.6.3m1
139 139
      */
140 140
     void toggleMaximise();
141 141
     

+ 1
- 1
src/com/dmdirc/ui/messages/Styliser.java Vedi File

@@ -241,7 +241,7 @@ public final class Styliser {
241 241
      *
242 242
      * @param string The string to be smilified
243 243
      * @return A copy of the string with smilies marked up
244
-     * @since 0.6.3
244
+     * @since 0.6.3m1
245 245
      */
246 246
     public static String doSmilies(final String string) {
247 247
         // TODO: read types from config. Check if they're enabled.

+ 1
- 1
src/com/dmdirc/updater/UpdateComponent.java Vedi File

@@ -57,7 +57,7 @@ public interface UpdateComponent {
57 57
      * Retrieves the currently installed version of this component.
58 58
      * 
59 59
      * @return This component's current version
60
-     * @since 0.6.3
60
+     * @since 0.6.3m1
61 61
      */
62 62
     Version getVersion();
63 63
     

+ 1
- 1
src/com/dmdirc/updater/Version.java Vedi File

@@ -26,7 +26,7 @@ package com.dmdirc.updater;
26 26
  * Describes a version of a component, either as an integer or as a String which
27 27
  * corresponds to the output of `git-describe --tags`.
28 28
  *
29
- * @since 0.6.3
29
+ * @since 0.6.3m1
30 30
  * @author chris
31 31
  */
32 32
 public class Version implements Comparable<Version> {

+ 2
- 2
src/com/dmdirc/util/TextFile.java Vedi File

@@ -89,7 +89,7 @@ public class TextFile {
89 89
      *
90 90
      * @param file The file to read
91 91
      * @param charset The charset to read the file in
92
-     * @since 0.6.3
92
+     * @since 0.6.3m1
93 93
      */
94 94
     public TextFile(final File file, final Charset charset) {
95 95
         this.file = file;
@@ -102,7 +102,7 @@ public class TextFile {
102 102
      *
103 103
      * @param is The input stream to read from
104 104
      * @param charset The charset to read the file in
105
-     * @since 0.6.3
105
+     * @since 0.6.3m1
106 106
      */
107 107
     public TextFile(final InputStream is, final Charset charset) {
108 108
         this.is = is;

Loading…
Annulla
Salva