ソースを参照

Update copyright for 2013

Change-Id: Iaaa1509b9f33742a5a2f5d9d6f4608432ddeaaaa
Reviewed-on: http://gerrit.dmdirc.com/2606
Reviewed-by: Greg Holmes <greg@dmdirc.com>
Automatic-Compile: DMDirc Build Manager
tags/0.7^0
Shane Mc Cormack 11年前
コミット
b23cd03717
72個のファイルの変更72行の追加72行の削除
  1. 1
    1
      src/com/dmdirc/util/CommandUtils.java
  2. 1
    1
      src/com/dmdirc/util/DateUtils.java
  3. 1
    1
      src/com/dmdirc/util/ReturnableThread.java
  4. 1
    1
      src/com/dmdirc/util/SimpleInjector.java
  5. 1
    1
      src/com/dmdirc/util/collections/DoubleMap.java
  6. 1
    1
      src/com/dmdirc/util/collections/EquatableWeakReference.java
  7. 1
    1
      src/com/dmdirc/util/collections/ListObserver.java
  8. 1
    1
      src/com/dmdirc/util/collections/ListenerList.java
  9. 1
    1
      src/com/dmdirc/util/collections/MapList.java
  10. 1
    1
      src/com/dmdirc/util/collections/ObservableList.java
  11. 1
    1
      src/com/dmdirc/util/collections/ObservableListDecorator.java
  12. 1
    1
      src/com/dmdirc/util/collections/QueuedLinkedHashSet.java
  13. 1
    1
      src/com/dmdirc/util/collections/RollingList.java
  14. 1
    1
      src/com/dmdirc/util/collections/WeakList.java
  15. 1
    1
      src/com/dmdirc/util/collections/WeakMapList.java
  16. 1
    1
      src/com/dmdirc/util/io/ConfigFile.java
  17. 1
    1
      src/com/dmdirc/util/io/DownloadListener.java
  18. 1
    1
      src/com/dmdirc/util/io/Downloader.java
  19. 1
    1
      src/com/dmdirc/util/io/InvalidConfigFileException.java
  20. 1
    1
      src/com/dmdirc/util/io/ReverseFileReader.java
  21. 1
    1
      src/com/dmdirc/util/io/StreamReader.java
  22. 1
    1
      src/com/dmdirc/util/io/StreamUtils.java
  23. 1
    1
      src/com/dmdirc/util/io/TextFile.java
  24. 1
    1
      src/com/dmdirc/util/validators/ColourValidator.java
  25. 1
    1
      src/com/dmdirc/util/validators/DisabledOptionValidator.java
  26. 1
    1
      src/com/dmdirc/util/validators/FileNameValidator.java
  27. 1
    1
      src/com/dmdirc/util/validators/IdentValidator.java
  28. 1
    1
      src/com/dmdirc/util/validators/NicknameValidator.java
  29. 1
    1
      src/com/dmdirc/util/validators/NotEmptyValidator.java
  30. 1
    1
      src/com/dmdirc/util/validators/NumericalValidator.java
  31. 1
    1
      src/com/dmdirc/util/validators/OptionalValidator.java
  32. 1
    1
      src/com/dmdirc/util/validators/PermissiveValidator.java
  33. 1
    1
      src/com/dmdirc/util/validators/PortValidator.java
  34. 1
    1
      src/com/dmdirc/util/validators/RegexStringValidator.java
  35. 1
    1
      src/com/dmdirc/util/validators/RegexValidator.java
  36. 1
    1
      src/com/dmdirc/util/validators/ServerNameValidator.java
  37. 1
    1
      src/com/dmdirc/util/validators/StringLengthValidator.java
  38. 1
    1
      src/com/dmdirc/util/validators/URIValidator.java
  39. 1
    1
      src/com/dmdirc/util/validators/Validatable.java
  40. 1
    1
      src/com/dmdirc/util/validators/ValidationResponse.java
  41. 1
    1
      src/com/dmdirc/util/validators/Validator.java
  42. 1
    1
      src/com/dmdirc/util/validators/ValidatorChain.java
  43. 1
    1
      test/com/dmdirc/util/CommandUtilsTest.java
  44. 1
    1
      test/com/dmdirc/util/DateUtilsTest.java
  45. 1
    1
      test/com/dmdirc/util/ReturnableThreadTest.java
  46. 1
    1
      test/com/dmdirc/util/SimpleInjectorTest.java
  47. 1
    1
      test/com/dmdirc/util/collections/DoubleMapTest.java
  48. 1
    1
      test/com/dmdirc/util/collections/EquatableWeakReferenceTest.java
  49. 1
    1
      test/com/dmdirc/util/collections/InvalidConfigFileExceptionTest.java
  50. 1
    1
      test/com/dmdirc/util/collections/ListenerListTest.java
  51. 1
    1
      test/com/dmdirc/util/collections/MapListTest.java
  52. 1
    1
      test/com/dmdirc/util/collections/ObservableListDecoratorTest.java
  53. 1
    1
      test/com/dmdirc/util/collections/RollingListTest.java
  54. 1
    1
      test/com/dmdirc/util/collections/WeakListTest.java
  55. 1
    1
      test/com/dmdirc/util/io/ConfigFileTest.java
  56. 1
    1
      test/com/dmdirc/util/io/ReverseFileReaderTest.java
  57. 1
    1
      test/com/dmdirc/util/io/TextFileTest.java
  58. 1
    1
      test/com/dmdirc/util/validators/DisabledOptionValidatorTest.java
  59. 1
    1
      test/com/dmdirc/util/validators/FileNameValidatorTest.java
  60. 1
    1
      test/com/dmdirc/util/validators/IdentValidatorTest.java
  61. 1
    1
      test/com/dmdirc/util/validators/NicknameValidatorTest.java
  62. 1
    1
      test/com/dmdirc/util/validators/NotEmptyValidatorTest.java
  63. 1
    1
      test/com/dmdirc/util/validators/NumericalValidatorTest.java
  64. 1
    1
      test/com/dmdirc/util/validators/OptionalValidatorTest.java
  65. 1
    1
      test/com/dmdirc/util/validators/PermissiveValidatorTest.java
  66. 1
    1
      test/com/dmdirc/util/validators/PortValidatorTest.java
  67. 1
    1
      test/com/dmdirc/util/validators/RegexStringValidatorTest.java
  68. 1
    1
      test/com/dmdirc/util/validators/RegexValidatorTest.java
  69. 1
    1
      test/com/dmdirc/util/validators/ServerNameValidatorTest.java
  70. 1
    1
      test/com/dmdirc/util/validators/StringLengthValidatorTest.java
  71. 1
    1
      test/com/dmdirc/util/validators/URIValidatorTest.java
  72. 1
    1
      test/com/dmdirc/util/validators/ValidatorChainTest.java

+ 1
- 1
src/com/dmdirc/util/CommandUtils.java ファイルの表示

@@ -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/util/DateUtils.java ファイルの表示

@@ -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/util/ReturnableThread.java ファイルの表示

@@ -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/util/SimpleInjector.java ファイルの表示

@@ -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/util/collections/DoubleMap.java ファイルの表示

@@ -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/util/collections/EquatableWeakReference.java ファイルの表示

@@ -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/util/collections/ListObserver.java ファイルの表示

@@ -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/util/collections/ListenerList.java ファイルの表示

@@ -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/util/collections/MapList.java ファイルの表示

@@ -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/util/collections/ObservableList.java ファイルの表示

@@ -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/util/collections/ObservableListDecorator.java ファイルの表示

@@ -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/util/collections/QueuedLinkedHashSet.java ファイルの表示

@@ -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/util/collections/RollingList.java ファイルの表示

@@ -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/util/collections/WeakList.java ファイルの表示

@@ -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/util/collections/WeakMapList.java ファイルの表示

@@ -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/util/io/ConfigFile.java ファイルの表示

@@ -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/util/io/DownloadListener.java ファイルの表示

@@ -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/util/io/Downloader.java ファイルの表示

@@ -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/util/io/InvalidConfigFileException.java ファイルの表示

@@ -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/util/io/ReverseFileReader.java ファイルの表示

@@ -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/util/io/StreamReader.java ファイルの表示

@@ -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/util/io/StreamUtils.java ファイルの表示

@@ -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/util/io/TextFile.java ファイルの表示

@@ -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/util/validators/ColourValidator.java ファイルの表示

@@ -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/util/validators/DisabledOptionValidator.java ファイルの表示

@@ -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/util/validators/FileNameValidator.java ファイルの表示

@@ -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/util/validators/IdentValidator.java ファイルの表示

@@ -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/util/validators/NicknameValidator.java ファイルの表示

@@ -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/util/validators/NotEmptyValidator.java ファイルの表示

@@ -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/util/validators/NumericalValidator.java ファイルの表示

@@ -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/util/validators/OptionalValidator.java ファイルの表示

@@ -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/util/validators/PermissiveValidator.java ファイルの表示

@@ -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/util/validators/PortValidator.java ファイルの表示

@@ -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/util/validators/RegexStringValidator.java ファイルの表示

@@ -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/util/validators/RegexValidator.java ファイルの表示

@@ -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/util/validators/ServerNameValidator.java ファイルの表示

@@ -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/util/validators/StringLengthValidator.java ファイルの表示

@@ -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/util/validators/URIValidator.java ファイルの表示

@@ -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/util/validators/Validatable.java ファイルの表示

@@ -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/util/validators/ValidationResponse.java ファイルの表示

@@ -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/util/validators/Validator.java ファイルの表示

@@ -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/util/validators/ValidatorChain.java ファイルの表示

@@ -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
test/com/dmdirc/util/CommandUtilsTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/DateUtilsTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/ReturnableThreadTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/SimpleInjectorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/DoubleMapTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/EquatableWeakReferenceTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/InvalidConfigFileExceptionTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/ListenerListTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/MapListTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/ObservableListDecoratorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/RollingListTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/collections/WeakListTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/io/ConfigFileTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/io/ReverseFileReaderTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/io/TextFileTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/DisabledOptionValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/FileNameValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/IdentValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/NicknameValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/NotEmptyValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/NumericalValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/OptionalValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/PermissiveValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/PortValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/RegexStringValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/RegexValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/ServerNameValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/StringLengthValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/URIValidatorTest.java ファイルの表示

@@ -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
test/com/dmdirc/util/validators/ValidatorChainTest.java ファイルの表示

@@ -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

読み込み中…
キャンセル
保存