Author: kylem Date: Tue Dec 7 10:45:27 2004 New Revision: 110138 URL: http://svn.apache.org/viewcvs?view=rev&rev=110138 Log: Fixed issue with control implementation inheritance that caused subclassed initializer not to be called properly.
Modified: incubator/beehive/trunk/controls/src/runtime/org/apache/beehive/controls/runtime/generator/ImplInitializer.java Modified: incubator/beehive/trunk/controls/src/runtime/org/apache/beehive/controls/runtime/generator/ImplInitializer.java Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/controls/src/runtime/org/apache/beehive/controls/runtime/generator/ImplInitializer.java?view=diff&rev=110138&p1=incubator/beehive/trunk/controls/src/runtime/org/apache/beehive/controls/runtime/generator/ImplInitializer.java&r1=110137&p2=incubator/beehive/trunk/controls/src/runtime/org/apache/beehive/controls/runtime/generator/ImplInitializer.java&r2=110138 ============================================================================== --- incubator/beehive/trunk/controls/src/runtime/org/apache/beehive/controls/runtime/generator/ImplInitializer.java (original) +++ incubator/beehive/trunk/controls/src/runtime/org/apache/beehive/controls/runtime/generator/ImplInitializer.java Tue Dec 7 10:45:27 2004 @@ -101,6 +101,11 @@ public ImplInitializer getSuperClass() { return _superClass; } /** + * Returns true if the ImplInitializer has a super class + */ + public boolean hasSuperClass() { return _superClass != null; } + + /** * Returns true if the initializer will use Reflection to initialize the field, false * otherwise. */
