MsrpCallback.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* ----------------------------------------------------------------------------
  2. * This file was automatically generated by SWIG (http://www.swig.org).
  3. * Version 2.0.9
  4. *
  5. * Do not make changes to this file unless you know what you are doing--modify
  6. * the SWIG interface file instead.
  7. * ----------------------------------------------------------------------------- */
  8. package org.doubango.tinyWRAP;
  9. public class MsrpCallback {
  10. private long swigCPtr;
  11. protected boolean swigCMemOwn;
  12. protected MsrpCallback(long cPtr, boolean cMemoryOwn) {
  13. swigCMemOwn = cMemoryOwn;
  14. swigCPtr = cPtr;
  15. }
  16. protected static long getCPtr(MsrpCallback obj) {
  17. return (obj == null) ? 0 : obj.swigCPtr;
  18. }
  19. protected void finalize() {
  20. delete();
  21. }
  22. public synchronized void delete() {
  23. if (swigCPtr != 0) {
  24. if (swigCMemOwn) {
  25. swigCMemOwn = false;
  26. tinyWRAPJNI.delete_MsrpCallback(swigCPtr);
  27. }
  28. swigCPtr = 0;
  29. }
  30. }
  31. protected void swigDirectorDisconnect() {
  32. swigCMemOwn = false;
  33. delete();
  34. }
  35. public void swigReleaseOwnership() {
  36. swigCMemOwn = false;
  37. tinyWRAPJNI.MsrpCallback_change_ownership(this, swigCPtr, false);
  38. }
  39. public void swigTakeOwnership() {
  40. swigCMemOwn = true;
  41. tinyWRAPJNI.MsrpCallback_change_ownership(this, swigCPtr, true);
  42. }
  43. public MsrpCallback() {
  44. this(tinyWRAPJNI.new_MsrpCallback(), true);
  45. tinyWRAPJNI.MsrpCallback_director_connect(this, swigCPtr, swigCMemOwn, true);
  46. }
  47. public int OnEvent(MsrpEvent e) {
  48. return (getClass() == MsrpCallback.class) ? tinyWRAPJNI.MsrpCallback_OnEvent(swigCPtr, this, MsrpEvent.getCPtr(e), e) : tinyWRAPJNI.MsrpCallback_OnEventSwigExplicitMsrpCallback(swigCPtr, this, MsrpEvent.getCPtr(e), e);
  49. }
  50. }