Browse Source

Get rid of @author tags

Change-Id: Ib8d0b8886b769777267f0b757faea00787c149f7
Reviewed-on: http://gerrit.dmdirc.com/2080
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Greg Holmes <greg@dmdirc.com>
tags/0.6.6b1
Chris Smith 13 years ago
parent
commit
6a06e9abae
36 changed files with 0 additions and 63 deletions
  1. 0
    1
      src/com/dmdirc/ParserFactory.java
  2. 0
    2
      src/com/dmdirc/Precondition.java
  3. 0
    2
      src/com/dmdirc/ServerManager.java
  4. 0
    1
      src/com/dmdirc/ServerStatus.java
  5. 0
    2
      src/com/dmdirc/Topic.java
  6. 0
    1
      src/com/dmdirc/actions/internal/WhoisNumericFormatter.java
  7. 0
    2
      src/com/dmdirc/actions/metatypes/PluginEvents.java
  8. 0
    2
      src/com/dmdirc/actions/metatypes/QueryEvents.java
  9. 0
    2
      src/com/dmdirc/actions/metatypes/ServerEvents.java
  10. 0
    2
      src/com/dmdirc/commandline/RemoteInterface.java
  11. 0
    2
      src/com/dmdirc/commandline/RemoteServer.java
  12. 0
    2
      src/com/dmdirc/commandparser/PopupManager.java
  13. 0
    2
      src/com/dmdirc/commandparser/PopupMenu.java
  14. 0
    2
      src/com/dmdirc/commandparser/PopupType.java
  15. 0
    2
      src/com/dmdirc/commandparser/commands/PreviousCommand.java
  16. 0
    2
      src/com/dmdirc/commandparser/commands/WrappableCommand.java
  17. 0
    1
      src/com/dmdirc/commandparser/commands/context/QueryCommandContext.java
  18. 0
    1
      src/com/dmdirc/commandparser/commands/context/ServerCommandContext.java
  19. 0
    1
      src/com/dmdirc/config/prefs/PluginPreferencesCategory.java
  20. 0
    2
      src/com/dmdirc/config/prefs/PreferencesDialogModel.java
  21. 0
    1
      src/com/dmdirc/config/prefs/PreferencesManager.java
  22. 0
    2
      src/com/dmdirc/config/prefs/SettingChangeListener.java
  23. 0
    1
      src/com/dmdirc/interfaces/TopicChangeListener.java
  24. 0
    2
      src/com/dmdirc/plugins/PluginException.java
  25. 0
    2
      src/com/dmdirc/ui/input/TabCompleter.java
  26. 0
    2
      src/com/dmdirc/ui/input/TabCompletionType.java
  27. 0
    2
      src/com/dmdirc/ui/themes/Theme.java
  28. 0
    2
      src/com/dmdirc/ui/themes/ThemeIdentity.java
  29. 0
    2
      src/com/dmdirc/updater/Update.java
  30. 0
    2
      src/com/dmdirc/updater/UpdateChannel.java
  31. 0
    2
      src/com/dmdirc/updater/UpdateChecker.java
  32. 0
    2
      src/com/dmdirc/updater/UpdateCheckerListener.java
  33. 0
    2
      src/com/dmdirc/updater/UpdateComponent.java
  34. 0
    2
      src/com/dmdirc/updater/UpdateListener.java
  35. 0
    1
      src/com/dmdirc/updater/Version.java
  36. 0
    2
      src/com/dmdirc/util/URLBuilder.java

+ 0
- 1
src/com/dmdirc/ParserFactory.java View File

38
  * Provides a method to retrieve a parser.
38
  * Provides a method to retrieve a parser.
39
  *
39
  *
40
  * @since 0.6
40
  * @since 0.6
41
- * @author chris
42
  */
41
  */
43
 public class ParserFactory {
42
 public class ParserFactory {
44
 
43
 

+ 0
- 2
src/com/dmdirc/Precondition.java View File

28
  * The precondition annotation is used to indicate that a particular method
28
  * The precondition annotation is used to indicate that a particular method
29
  * has one or more preconditions. The preconditions are specified in plain
29
  * has one or more preconditions. The preconditions are specified in plain
30
  * English.
30
  * English.
31
- *
32
- * @author chris
33
  */
31
  */
34
 @Documented
32
 @Documented
35
 public @interface Precondition {
33
 public @interface Precondition {

+ 0
- 2
src/com/dmdirc/ServerManager.java View File

38
 /**
38
 /**
39
  * The ServerManager maintains a list of all servers, and provides methods to
39
  * The ServerManager maintains a list of all servers, and provides methods to
40
  * search or iterate over them.
40
  * search or iterate over them.
41
- *
42
- * @author chris
43
  */
41
  */
44
 public final class ServerManager {
42
 public final class ServerManager {
45
 
43
 

+ 0
- 1
src/com/dmdirc/ServerStatus.java View File

33
  * states.
33
  * states.
34
  *
34
  *
35
  * @since 0.6.3m1
35
  * @since 0.6.3m1
36
- * @author chris
37
  */
36
  */
38
 public class ServerStatus {
37
 public class ServerStatus {
39
 
38
 

+ 0
- 2
src/com/dmdirc/Topic.java View File

24
 
24
 
25
 /**
25
 /**
26
  * Stores information about a channel topic.
26
  * Stores information about a channel topic.
27
- *
28
- * @author chris
29
  */
27
  */
30
 public class Topic {
28
 public class Topic {
31
 
29
 

+ 0
- 1
src/com/dmdirc/actions/internal/WhoisNumericFormatter.java View File

36
  * Listens for whois-like numeric events and automatically formats them.
36
  * Listens for whois-like numeric events and automatically formats them.
37
  *
37
  *
38
  * @since 0.6.3
38
  * @since 0.6.3
39
- * @author chris
40
  */
39
  */
41
 public class WhoisNumericFormatter implements ActionListener {
40
 public class WhoisNumericFormatter implements ActionListener {
42
 
41
 

+ 0
- 2
src/com/dmdirc/actions/metatypes/PluginEvents.java View File

27
 
27
 
28
 /**
28
 /**
29
  * Defines plugin-related events.
29
  * Defines plugin-related events.
30
- *
31
- * @author Chris
32
  */
30
  */
33
 public enum PluginEvents implements ActionMetaType {
31
 public enum PluginEvents implements ActionMetaType {
34
 
32
 

+ 0
- 2
src/com/dmdirc/actions/metatypes/QueryEvents.java View File

28
 
28
 
29
 /**
29
 /**
30
  * Defines query-related events.
30
  * Defines query-related events.
31
- *
32
- * @author Chris
33
  */
31
  */
34
 public enum QueryEvents implements ActionMetaType {
32
 public enum QueryEvents implements ActionMetaType {
35
 
33
 

+ 0
- 2
src/com/dmdirc/actions/metatypes/ServerEvents.java View File

28
 
28
 
29
 /**
29
 /**
30
  * Defines server-related events.
30
  * Defines server-related events.
31
- *
32
- * @author Chris
33
  */
31
  */
34
 public enum ServerEvents implements ActionMetaType {
32
 public enum ServerEvents implements ActionMetaType {
35
 
33
 

+ 0
- 2
src/com/dmdirc/commandline/RemoteInterface.java View File

29
 
29
 
30
 /**
30
 /**
31
  * Defines the interface that is available using RMI.
31
  * Defines the interface that is available using RMI.
32
- *
33
- * @author chris
34
  */
32
  */
35
 public interface RemoteInterface extends Remote {
33
 public interface RemoteInterface extends Remote {
36
 
34
 

+ 0
- 2
src/com/dmdirc/commandline/RemoteServer.java View File

36
 
36
 
37
 /**
37
 /**
38
  * An RMI server that allows other clients to interact with DMDirc.
38
  * An RMI server that allows other clients to interact with DMDirc.
39
- *
40
- * @author chris
41
  */
39
  */
42
 public class RemoteServer implements RemoteInterface {
40
 public class RemoteServer implements RemoteInterface {
43
 
41
 

+ 0
- 2
src/com/dmdirc/commandparser/PopupManager.java View File

29
 
29
 
30
 /**
30
 /**
31
  * The popup manager manages which commands should be present in popup menus.
31
  * The popup manager manages which commands should be present in popup menus.
32
- *
33
- * @author Chris
34
  */
32
  */
35
 public class PopupManager {
33
 public class PopupManager {
36
 
34
 

+ 0
- 2
src/com/dmdirc/commandparser/PopupMenu.java View File

28
 
28
 
29
 /**
29
 /**
30
  * Represents an abstract, UI-independent popup menu.
30
  * Represents an abstract, UI-independent popup menu.
31
- *
32
- * @author chris
33
  */
31
  */
34
 public class PopupMenu {
32
 public class PopupMenu {
35
 
33
 

+ 0
- 2
src/com/dmdirc/commandparser/PopupType.java View File

25
 /**
25
 /**
26
  * An enumeration of the types of popup menu which are supported by the
26
  * An enumeration of the types of popup menu which are supported by the
27
  * PopupManager.
27
  * PopupManager.
28
- *
29
- * @author chris
30
  */
28
  */
31
 public enum PopupType {
29
 public enum PopupType {
32
 
30
 

+ 0
- 2
src/com/dmdirc/commandparser/commands/PreviousCommand.java View File

26
 
26
 
27
 /**
27
 /**
28
  * Stores information about a previously executed command.
28
  * Stores information about a previously executed command.
29
- *
30
- * @author chris
31
  */
29
  */
32
 public final class PreviousCommand {
30
 public final class PreviousCommand {
33
 
31
 

+ 0
- 2
src/com/dmdirc/commandparser/commands/WrappableCommand.java View File

28
 /**
28
 /**
29
  * Wrapping commands are commands whose arguments may be wrapped into multiple
29
  * Wrapping commands are commands whose arguments may be wrapped into multiple
30
  * lines when sending.
30
  * lines when sending.
31
- *
32
- * @author chris
33
  */
31
  */
34
 public interface WrappableCommand {
32
 public interface WrappableCommand {
35
 
33
 

+ 0
- 1
src/com/dmdirc/commandparser/commands/context/QueryCommandContext.java View File

30
  * A query-specific command context.
30
  * A query-specific command context.
31
  *
31
  *
32
  * @since 0.6.4
32
  * @since 0.6.4
33
- * @author chris
34
  */
33
  */
35
 public class QueryCommandContext extends ChatCommandContext {
34
 public class QueryCommandContext extends ChatCommandContext {
36
 
35
 

+ 0
- 1
src/com/dmdirc/commandparser/commands/context/ServerCommandContext.java View File

30
  * A command context for server commands.
30
  * A command context for server commands.
31
  *
31
  *
32
  * @since 0.6.4
32
  * @since 0.6.4
33
- * @author chris
34
  */
33
  */
35
 public class ServerCommandContext extends CommandContext {
34
 public class ServerCommandContext extends CommandContext {
36
 
35
 

+ 0
- 1
src/com/dmdirc/config/prefs/PluginPreferencesCategory.java View File

29
  * associated plugin is not loaded
29
  * associated plugin is not loaded
30
  *
30
  *
31
  * @since 0.6.3
31
  * @since 0.6.3
32
- * @author chris
33
  */
32
  */
34
 public class PluginPreferencesCategory extends PreferencesCategory {
33
 public class PluginPreferencesCategory extends PreferencesCategory {
35
 
34
 

+ 0
- 2
src/com/dmdirc/config/prefs/PreferencesDialogModel.java View File

39
 
39
 
40
 /**
40
 /**
41
  * Manages categories that should appear in the preferences dialog.
41
  * Manages categories that should appear in the preferences dialog.
42
- *
43
- * @author chris
44
  */
42
  */
45
 public class PreferencesDialogModel {
43
 public class PreferencesDialogModel {
46
 
44
 

+ 0
- 1
src/com/dmdirc/config/prefs/PreferencesManager.java View File

32
  * Manages preferences for the client.
32
  * Manages preferences for the client.
33
  *
33
  *
34
  * @since 0.6.5
34
  * @since 0.6.5
35
- * @author chris
36
  */
35
  */
37
 public final class PreferencesManager {
36
 public final class PreferencesManager {
38
 
37
 

+ 0
- 2
src/com/dmdirc/config/prefs/SettingChangeListener.java View File

24
 
24
 
25
 /**
25
 /**
26
  * Defines the methods required for setting change listeners.
26
  * Defines the methods required for setting change listeners.
27
- *
28
- * @author chris
29
  */
27
  */
30
 public interface SettingChangeListener {
28
 public interface SettingChangeListener {
31
 
29
 

+ 0
- 1
src/com/dmdirc/interfaces/TopicChangeListener.java View File

30
  * a {@link Channel}.
30
  * a {@link Channel}.
31
  *
31
  *
32
  * @since 0.6.3
32
  * @since 0.6.3
33
- * @author chris
34
  */
33
  */
35
 public interface TopicChangeListener {
34
 public interface TopicChangeListener {
36
 
35
 

+ 0
- 2
src/com/dmdirc/plugins/PluginException.java View File

24
 
24
 
25
 /**
25
 /**
26
  * Plugin Exception.
26
  * Plugin Exception.
27
- *
28
- * @author            Shane Mc Cormack
29
  */
27
  */
30
 public class PluginException extends Exception {
28
 public class PluginException extends Exception {
31
 
29
 

+ 0
- 2
src/com/dmdirc/ui/input/TabCompleter.java View File

40
 
40
 
41
 /**
41
 /**
42
  * The tab completer handles a user's request to tab complete some word.
42
  * The tab completer handles a user's request to tab complete some word.
43
- *
44
- * @author chris
45
  */
43
  */
46
 public class TabCompleter {
44
 public class TabCompleter {
47
 
45
 

+ 0
- 2
src/com/dmdirc/ui/input/TabCompletionType.java View File

23
 
23
 
24
 /**
24
 /**
25
  * The possible types of tab-completion entries.
25
  * The possible types of tab-completion entries.
26
- *
27
- * @author chris
28
  */
26
  */
29
 public enum TabCompletionType {
27
 public enum TabCompletionType {
30
 
28
 

+ 0
- 2
src/com/dmdirc/ui/themes/Theme.java View File

36
 
36
 
37
 /**
37
 /**
38
  * Represents one theme file.
38
  * Represents one theme file.
39
- *
40
- * @author Chris
41
  */
39
  */
42
 public class Theme implements Comparable<Theme> {
40
 public class Theme implements Comparable<Theme> {
43
 
41
 

+ 0
- 2
src/com/dmdirc/ui/themes/ThemeIdentity.java View File

32
 /**
32
 /**
33
  * An identity that only claims to know about settings under the UI domain,
33
  * An identity that only claims to know about settings under the UI domain,
34
  * for use with themes.
34
  * for use with themes.
35
- *
36
- * @author Chris
37
  */
35
  */
38
 public class ThemeIdentity extends Identity {
36
 public class ThemeIdentity extends Identity {
39
 
37
 

+ 0
- 2
src/com/dmdirc/updater/Update.java View File

34
 
34
 
35
 /**
35
 /**
36
  * Represents a single available update for some component.
36
  * Represents a single available update for some component.
37
- *
38
- * @author chris
39
  */
37
  */
40
 public final class Update implements DownloadListener {
38
 public final class Update implements DownloadListener {
41
 
39
 

+ 0
- 2
src/com/dmdirc/updater/UpdateChannel.java View File

24
 
24
 
25
 /**
25
 /**
26
  * Represents one update channel (e.g., stable, nightly, etc).
26
  * Represents one update channel (e.g., stable, nightly, etc).
27
- *
28
- * @author chris
29
  */
27
  */
30
 public enum UpdateChannel {
28
 public enum UpdateChannel {
31
 
29
 

+ 0
- 2
src/com/dmdirc/updater/UpdateChecker.java View File

45
 /**
45
 /**
46
  * The update checker contacts the DMDirc website to check to see if there
46
  * The update checker contacts the DMDirc website to check to see if there
47
  * are any updates available.
47
  * are any updates available.
48
- *
49
- * @author chris
50
  */
48
  */
51
 public final class UpdateChecker implements Runnable {
49
 public final class UpdateChecker implements Runnable {
52
 
50
 

+ 0
- 2
src/com/dmdirc/updater/UpdateCheckerListener.java View File

25
 /**
25
 /**
26
  * Update Checker Listeners receive notifications when the status of the update
26
  * Update Checker Listeners receive notifications when the status of the update
27
  * checker changes.
27
  * checker changes.
28
- *
29
- * @author chris
30
  */
28
  */
31
 public interface UpdateCheckerListener {
29
 public interface UpdateCheckerListener {
32
 
30
 

+ 0
- 2
src/com/dmdirc/updater/UpdateComponent.java View File

26
  * The update component interface defines the methods needed to be implemented
26
  * The update component interface defines the methods needed to be implemented
27
  * by updatable components. The components handle determining the current
27
  * by updatable components. The components handle determining the current
28
  * version and installing updated files.
28
  * version and installing updated files.
29
- *
30
- * @author chris
31
  */
29
  */
32
 public interface UpdateComponent {
30
 public interface UpdateComponent {
33
 
31
 

+ 0
- 2
src/com/dmdirc/updater/UpdateListener.java View File

24
 
24
 
25
 /**
25
 /**
26
  * Defines the method that must be implemented by update listeners.
26
  * Defines the method that must be implemented by update listeners.
27
- *
28
- * @author chris
29
  */
27
  */
30
 public interface UpdateListener {
28
 public interface UpdateListener {
31
 
29
 

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

27
  * corresponds to the output of `git-describe --tags`.
27
  * corresponds to the output of `git-describe --tags`.
28
  *
28
  *
29
  * @since 0.6.3m1
29
  * @since 0.6.3m1
30
- * @author chris
31
  */
30
  */
32
 public class Version implements Comparable<Version> {
31
 public class Version implements Comparable<Version> {
33
 
32
 

+ 0
- 2
src/com/dmdirc/util/URLBuilder.java View File

32
 
32
 
33
 /**
33
 /**
34
  * Provides methods for building URLs to reference DMDirc resources.
34
  * Provides methods for building URLs to reference DMDirc resources.
35
- *
36
- * @author chris
37
  */
35
  */
38
 public final class URLBuilder {
36
 public final class URLBuilder {
39
 
37
 

Loading…
Cancel
Save