From 9ceb42ea6821a37e65edfea24789ce1b943fabda Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Mon, 20 Aug 2012 21:12:42 +0000 Subject: [PATCH] Section numbering update git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13711 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Doc/Manual/Contents.html | 1 + Doc/Manual/Java.html | 1 + 2 files changed, 2 insertions(+) diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html index 4af66298c..bdb3aa9f5 100644 --- a/Doc/Manual/Contents.html +++ b/Doc/Manual/Contents.html @@ -912,6 +912,7 @@
  • Overhead and code bloat
  • Simple directors example
  • Director threading issues +
  • Director performance tuning
  • Accessing protected members
  • Common customization features diff --git a/Doc/Manual/Java.html b/Doc/Manual/Java.html index cfee64fa0..ed99549b0 100644 --- a/Doc/Manual/Java.html +++ b/Doc/Manual/Java.html @@ -3528,6 +3528,7 @@ Macros can be defined on the commandline when compiling your C++ code, or altern

    24.5.6 Director performance tuning

    +

    When a new instance of a director (or subclass) is created in Java, the C++ side of the director performs a runtime check per director method to determine if that particular method is overridden in Java or if it should invoke the C++ base implementation directly. Although this makes initialization slightly more expensive, it is generally a good overall tradeoff.