Quellcode durchsuchen

Change header?

Change-Id: Ic35853b0be7901c0d9b457ef5d099105e4852560
Reviewed-on: http://gerrit.dmdirc.com/2075
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Chris Smith <chris@dmdirc.com>
tags/0.7rc1
Greg Holmes vor 13 Jahren
Ursprung
Commit
d9b65da75f
59 geänderte Dateien mit 65 neuen und 60 gelöschten Zeilen
  1. 1
    2
      src/com/dmdirc/util/CommandUtils.java
  2. 1
    1
      src/com/dmdirc/util/ConfigFile.java
  3. 1
    1
      src/com/dmdirc/util/DateUtils.java
  4. 1
    1
      src/com/dmdirc/util/DoubleMap.java
  5. 1
    1
      src/com/dmdirc/util/DownloadListener.java
  6. 1
    1
      src/com/dmdirc/util/Downloader.java
  7. 1
    1
      src/com/dmdirc/util/EquatableWeakReference.java
  8. 1
    1
      src/com/dmdirc/util/InvalidConfigFileException.java
  9. 7
    1
      src/com/dmdirc/util/ListenerList.java
  10. 1
    1
      src/com/dmdirc/util/MapList.java
  11. 1
    1
      src/com/dmdirc/util/QueuedLinkedHashSet.java
  12. 1
    1
      src/com/dmdirc/util/ReturnableThread.java
  13. 1
    1
      src/com/dmdirc/util/RollingList.java
  14. 1
    1
      src/com/dmdirc/util/SimpleInjector.java
  15. 1
    1
      src/com/dmdirc/util/StreamReader.java
  16. 1
    1
      src/com/dmdirc/util/StreamUtil.java
  17. 1
    1
      src/com/dmdirc/util/TextFile.java
  18. 1
    1
      src/com/dmdirc/util/WeakList.java
  19. 1
    1
      src/com/dmdirc/util/WeakMapList.java
  20. 1
    1
      src/com/dmdirc/util/validators/ColourValidator.java
  21. 1
    1
      src/com/dmdirc/util/validators/DisabledOptionValidator.java
  22. 1
    1
      src/com/dmdirc/util/validators/FileNameValidator.java
  23. 1
    1
      src/com/dmdirc/util/validators/IdentValidator.java
  24. 1
    1
      src/com/dmdirc/util/validators/NicknameValidator.java
  25. 1
    1
      src/com/dmdirc/util/validators/NotEmptyValidator.java
  26. 1
    1
      src/com/dmdirc/util/validators/NumericalValidator.java
  27. 1
    1
      src/com/dmdirc/util/validators/OptionalValidator.java
  28. 1
    1
      src/com/dmdirc/util/validators/PermissiveValidator.java
  29. 1
    1
      src/com/dmdirc/util/validators/PortValidator.java
  30. 1
    1
      src/com/dmdirc/util/validators/RegexStringValidator.java
  31. 1
    1
      src/com/dmdirc/util/validators/RegexValidator.java
  32. 1
    1
      src/com/dmdirc/util/validators/ServerNameValidator.java
  33. 1
    1
      src/com/dmdirc/util/validators/StringLengthValidator.java
  34. 1
    1
      src/com/dmdirc/util/validators/URIValidator.java
  35. 1
    1
      src/com/dmdirc/util/validators/ValidationResponse.java
  36. 1
    1
      src/com/dmdirc/util/validators/Validator.java
  37. 1
    1
      src/com/dmdirc/util/validators/ValidatorChain.java
  38. 1
    1
      test/com/dmdirc/util/CommandUtilsTest.java
  39. 1
    1
      test/com/dmdirc/util/ConfigFileTest.java
  40. 1
    1
      test/com/dmdirc/util/DateUtilsTest.java
  41. 1
    1
      test/com/dmdirc/util/DoubleMapTest.java
  42. 1
    1
      test/com/dmdirc/util/EquatableWeakReferenceTest.java
  43. 1
    1
      test/com/dmdirc/util/InvalidConfigFileExceptionTest.java
  44. 1
    1
      test/com/dmdirc/util/MapListTest.java
  45. 1
    1
      test/com/dmdirc/util/RollingListTest.java
  46. 1
    1
      test/com/dmdirc/util/TextFileTest.java
  47. 1
    1
      test/com/dmdirc/util/WeakListTest.java
  48. 1
    1
      test/com/dmdirc/util/validators/FileNameValidatorTest.java
  49. 1
    1
      test/com/dmdirc/util/validators/IdentValidatorTest.java
  50. 1
    1
      test/com/dmdirc/util/validators/NicknameValidatorTest.java
  51. 1
    1
      test/com/dmdirc/util/validators/NotEmptyValidatorTest.java
  52. 1
    1
      test/com/dmdirc/util/validators/NumericalValidatorTest.java
  53. 1
    1
      test/com/dmdirc/util/validators/OptionalValidatorTest.java
  54. 1
    1
      test/com/dmdirc/util/validators/PermissiveValidatorTest.java
  55. 1
    1
      test/com/dmdirc/util/validators/PortValidatorTest.java
  56. 1
    1
      test/com/dmdirc/util/validators/RegexStringValidatorTest.java
  57. 1
    1
      test/com/dmdirc/util/validators/RegexValidatorTest.java
  58. 1
    1
      test/com/dmdirc/util/validators/StringLengthValidatorTest.java
  59. 1
    1
      test/com/dmdirc/util/validators/ValidatorChainTest.java

+ 1
- 2
src/com/dmdirc/util/CommandUtils.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes,
3
- * Simon Mott
2
+ * Copyright (c) 2006-2011 DMDirc Developers
4
  *
3
  *
5
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
6
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/ConfigFile.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/DateUtils.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/DoubleMap.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/DownloadListener.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/Downloader.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/EquatableWeakReference.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/InvalidConfigFileException.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 7
- 1
src/com/dmdirc/util/ListenerList.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal
45
      * @param listener The listener to be added
45
      * @param listener The listener to be added
46
      */
46
      */
47
     public <T> void add(final Class<T> listenerType, final T listener) {
47
     public <T> void add(final Class<T> listenerType, final T listener) {
48
+        if (listener == null) {
49
+            throw new IllegalArgumentException("Listener cannot be null");
50
+        }
48
         if (!listeners.containsKey(listenerType)) {
51
         if (!listeners.containsKey(listenerType)) {
49
             listeners.put(listenerType, new CopyOnWriteArrayList<Object>());
52
             listeners.put(listenerType, new CopyOnWriteArrayList<Object>());
50
         }
53
         }
59
      * @param listener The listener to be added
62
      * @param listener The listener to be added
60
      */
63
      */
61
     public void add(final String listenerType, final Object listener) {
64
     public void add(final String listenerType, final Object listener) {
65
+        if (listener == null) {
66
+            throw new IllegalArgumentException("Listener cannot be null");
67
+        }
62
         if (!listeners.containsKey(listenerType)) {
68
         if (!listeners.containsKey(listenerType)) {
63
             listeners.put(listenerType, new CopyOnWriteArrayList<Object>());
69
             listeners.put(listenerType, new CopyOnWriteArrayList<Object>());
64
         }
70
         }

+ 1
- 1
src/com/dmdirc/util/MapList.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/QueuedLinkedHashSet.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/ReturnableThread.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/RollingList.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/SimpleInjector.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/StreamReader.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/StreamUtil.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/TextFile.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/WeakList.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/WeakMapList.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ColourValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/DisabledOptionValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/FileNameValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/IdentValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/NicknameValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/NotEmptyValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/NumericalValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/OptionalValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/PermissiveValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/PortValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/RegexStringValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/RegexValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ServerNameValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/StringLengthValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/URIValidator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ValidationResponse.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/Validator.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ValidatorChain.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/CommandUtilsTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/ConfigFileTest.java Datei anzeigen

1
 
1
 
2
 /*
2
 /*
3
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
3
+ * Copyright (c) 2006-2011 DMDirc Developers
4
  *
4
  *
5
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * Permission is hereby granted, free of charge, to any person obtaining a copy
6
  * of this software and associated documentation files (the "Software"), to deal
6
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/DateUtilsTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/DoubleMapTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/EquatableWeakReferenceTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/InvalidConfigFileExceptionTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/MapListTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/RollingListTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/TextFileTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/WeakListTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/FileNameValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/IdentValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/NicknameValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/NotEmptyValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/NumericalValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/OptionalValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/PermissiveValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/PortValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/RegexStringValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/RegexValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/StringLengthValidatorTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/ValidatorChainTest.java Datei anzeigen

1
 /*
1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3
  *
3
  *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal

Laden…
Abbrechen
Speichern