You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Invocation.java 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright (c) 2006-2015 DMDirc Developers
  3. *
  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
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. package com.dmdirc.config;
  23. import java.lang.reflect.AccessibleObject;
  24. import java.lang.reflect.Field;
  25. import java.lang.reflect.Method;
  26. /**
  27. * Class to invoke a method or set a value on a field.
  28. */
  29. public abstract class Invocation {
  30. /**
  31. * Invokes the specified element on the specified instance with the specified value.
  32. *
  33. * @param element Element to call, can be a {@link Method} or {@link Field}
  34. * @param instance Instance to call the element on
  35. * @param value Value to be passed to the element
  36. */
  37. protected void invoke(final AccessibleObject element, final Object instance, final Object value) {
  38. if (element instanceof Field) {
  39. invoke((Field) element, instance, value);
  40. } else if (element instanceof Method) {
  41. invoke((Method) element, instance, value);
  42. } else {
  43. throw new IllegalArgumentException("Can only invoke on a Field or Method.");
  44. }
  45. }
  46. /**
  47. * Sets a field on the specified instance to the specified value.
  48. *
  49. * @param field Field to set
  50. * @param instance Instance to set the field on
  51. * @param value Value to set the field to
  52. */
  53. public abstract void invoke(final Field field, final Object instance, final Object value);
  54. /**
  55. * Sets a field on the specified instance to the specified value.
  56. *
  57. * @param method Method to call
  58. * @param instance Instance to call the method on
  59. * @param value Value to call the method with
  60. */
  61. public abstract void invoke(final Method method, final Object instance, final Object value);
  62. }