Browse Source

Update copyright for 2013

Change-Id: I1c711ca0525af9a78cbd7c07876eaf6cc91c1434
Reviewed-on: http://gerrit.dmdirc.com/2604
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Greg Holmes <greg@dmdirc.com>
tags/0.7^0
Shane Mc Cormack 11 years ago
parent
commit
807ad3358b
100 changed files with 99 additions and 99 deletions
  1. 1
    1
      src/com/dmdirc/parser/common/AwayState.java
  2. 1
    1
      src/com/dmdirc/parser/common/BaseChannelClientInfo.java
  3. 1
    1
      src/com/dmdirc/parser/common/BaseChannelInfo.java
  4. 1
    1
      src/com/dmdirc/parser/common/BaseClientInfo.java
  5. 1
    1
      src/com/dmdirc/parser/common/BaseParser.java
  6. 1
    1
      src/com/dmdirc/parser/common/BaseSocketAwareParser.java
  7. 1
    1
      src/com/dmdirc/parser/common/CallbackManager.java
  8. 1
    1
      src/com/dmdirc/parser/common/CallbackNotFoundException.java
  9. 1
    1
      src/com/dmdirc/parser/common/CallbackObject.java
  10. 1
    1
      src/com/dmdirc/parser/common/CallbackObjectSpecific.java
  11. 1
    1
      src/com/dmdirc/parser/common/ChannelJoinRequest.java
  12. 1
    1
      src/com/dmdirc/parser/common/ChannelListModeItem.java
  13. 1
    1
      src/com/dmdirc/parser/common/ChildImplementations.java
  14. 1
    1
      src/com/dmdirc/parser/common/CompositionState.java
  15. 1
    1
      src/com/dmdirc/parser/common/DefaultStringConverter.java
  16. 1
    1
      src/com/dmdirc/parser/common/IgnoreList.java
  17. 1
    1
      src/com/dmdirc/parser/common/MyInfo.java
  18. 1
    1
      src/com/dmdirc/parser/common/ParserError.java
  19. 1
    1
      src/com/dmdirc/parser/common/QueuePriority.java
  20. 1
    1
      src/com/dmdirc/parser/common/SRVRecord.java
  21. 1
    1
      src/com/dmdirc/parser/common/SystemEncoder.java
  22. 1
    1
      src/com/dmdirc/parser/common/ThreadedParser.java
  23. 1
    1
      src/com/dmdirc/parser/interfaces/ChannelClientInfo.java
  24. 1
    1
      src/com/dmdirc/parser/interfaces/ChannelInfo.java
  25. 1
    1
      src/com/dmdirc/parser/interfaces/ClientInfo.java
  26. 1
    1
      src/com/dmdirc/parser/interfaces/Encoder.java
  27. 1
    1
      src/com/dmdirc/parser/interfaces/EncodingParser.java
  28. 1
    1
      src/com/dmdirc/parser/interfaces/FakableArgument.java
  29. 1
    1
      src/com/dmdirc/parser/interfaces/FakableSource.java
  30. 1
    1
      src/com/dmdirc/parser/interfaces/LocalClientInfo.java
  31. 1
    1
      src/com/dmdirc/parser/interfaces/Parser.java
  32. 1
    1
      src/com/dmdirc/parser/interfaces/ProtocolDescription.java
  33. 1
    1
      src/com/dmdirc/parser/interfaces/SecureParser.java
  34. 1
    1
      src/com/dmdirc/parser/interfaces/SpecificCallback.java
  35. 1
    1
      src/com/dmdirc/parser/interfaces/StringConverter.java
  36. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/AuthNoticeListener.java
  37. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/AwayStateListener.java
  38. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/CallbackInterface.java
  39. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelActionListener.java
  40. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelCtcpListener.java
  41. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelCtcpReplyListener.java
  42. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelJoinListener.java
  43. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelKickListener.java
  44. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelListModeListener.java
  45. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelMessageListener.java
  46. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelModeChangeListener.java
  47. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelModeMessageListener.java
  48. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelModeNoticeListener.java
  49. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelNamesListener.java
  50. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelNickChangeListener.java
  51. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelNonUserModeChangeListener.java
  52. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelNoticeListener.java
  53. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelOtherAwayStateListener.java
  54. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelPartListener.java
  55. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelQuitListener.java
  56. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelSelfJoinListener.java
  57. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelSingleModeChangeListener.java
  58. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelTopicListener.java
  59. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ChannelUserModeChangeListener.java
  60. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/CompositionStateChangeListener.java
  61. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ConnectErrorListener.java
  62. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/DataInListener.java
  63. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/DataOutListener.java
  64. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/DebugInfoListener.java
  65. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ErrorInfoListener.java
  66. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/GroupListEndListener.java
  67. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/GroupListEntryListener.java
  68. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/GroupListStartListener.java
  69. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/InviteListener.java
  70. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/MotdEndListener.java
  71. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/MotdLineListener.java
  72. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/MotdStartListener.java
  73. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/NetworkDetectedListener.java
  74. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/NickChangeListener.java
  75. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/NickInUseListener.java
  76. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/NumericListener.java
  77. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/OtherAwayStateListener.java
  78. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PasswordRequiredListener.java
  79. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PingFailureListener.java
  80. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PingSentListener.java
  81. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PingSuccessListener.java
  82. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PrivateActionListener.java
  83. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PrivateCtcpListener.java
  84. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PrivateCtcpReplyListener.java
  85. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PrivateMessageListener.java
  86. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/PrivateNoticeListener.java
  87. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/QuitListener.java
  88. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ServerErrorListener.java
  89. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ServerNoticeListener.java
  90. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/ServerReadyListener.java
  91. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/SocketCloseListener.java
  92. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UnknownActionListener.java
  93. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UnknownCtcpListener.java
  94. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UnknownCtcpReplyListener.java
  95. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UnknownMessageListener.java
  96. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UnknownNoticeListener.java
  97. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UnknownServerNoticeListener.java
  98. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UserModeChangeListener.java
  99. 1
    1
      src/com/dmdirc/parser/interfaces/callbacks/UserModeDiscoveryListener.java
  100. 0
    0
      src/com/dmdirc/parser/interfaces/callbacks/WallDesyncListener.java

+ 1
- 1
src/com/dmdirc/parser/common/AwayState.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/BaseChannelClientInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/BaseChannelInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/BaseClientInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/BaseParser.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/BaseSocketAwareParser.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/CallbackManager.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/CallbackNotFoundException.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/CallbackObject.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/CallbackObjectSpecific.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/ChannelJoinRequest.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/ChannelListModeItem.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/ChildImplementations.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/CompositionState.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/DefaultStringConverter.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/IgnoreList.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/MyInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/ParserError.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/QueuePriority.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/SRVRecord.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/SystemEncoder.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/common/ThreadedParser.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/ChannelClientInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/ChannelInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/ClientInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/Encoder.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/EncodingParser.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/FakableArgument.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/FakableSource.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/LocalClientInfo.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/Parser.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/ProtocolDescription.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/SecureParser.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/SpecificCallback.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/StringConverter.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/AuthNoticeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/AwayStateListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/CallbackInterface.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelActionListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelCtcpListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelCtcpReplyListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelJoinListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelKickListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelListModeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelMessageListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelModeChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelModeMessageListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelModeNoticeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelNamesListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelNickChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelNonUserModeChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelNoticeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelOtherAwayStateListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelPartListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelQuitListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelSelfJoinListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelSingleModeChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelTopicListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ChannelUserModeChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/CompositionStateChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ConnectErrorListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/DataInListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/DataOutListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/DebugInfoListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ErrorInfoListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/GroupListEndListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/GroupListEntryListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/GroupListStartListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/InviteListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/MotdEndListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/MotdLineListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/MotdStartListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/NetworkDetectedListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/NickChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/NickInUseListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/NumericListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/OtherAwayStateListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PasswordRequiredListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PingFailureListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PingSentListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PingSuccessListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PrivateActionListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PrivateCtcpListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PrivateCtcpReplyListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PrivateMessageListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/PrivateNoticeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/QuitListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ServerErrorListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ServerNoticeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/ServerReadyListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/SocketCloseListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UnknownActionListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UnknownCtcpListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UnknownCtcpReplyListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UnknownMessageListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UnknownNoticeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UnknownServerNoticeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UserModeChangeListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/parser/interfaces/callbacks/UserModeDiscoveryListener.java View File

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2012 DMDirc Developers
2
+ * Copyright (c) 2006-2013 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 0
- 0
src/com/dmdirc/parser/interfaces/callbacks/WallDesyncListener.java View File


Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save