Delegate Method

2002-11-29 Thread Paul Kinnucan
Cattell, Craig writes: > When I try the delegate method wizard I get: > > Beanshell expression evaluation error. > Expression: > jde.wizards.DelegateFactory.makeDelegatesExpression("connection_", > "com.caucho.jdbc.mysql.Connection", true); > Error: // Error: // Uncaught Exception: Targ

RE: jde-wiz-implement-interface

2002-11-29 Thread Paul Kinnucan
Petter Måhlén writes: > Hmm. This seems to be a bug in jde.util.ClassPathZip.load(): > > > void load() throws IOException { > ZipFile zipFile = new ZipFile(zipOrJar); > Enumeration enum = zipFile.entries(); > while (enum.hasMoreElements()) { > ZipEn

Re: patch for jde-gen-class-buffer-template

2002-11-29 Thread Paul Kinnucan
Peter Dobratz writes: > Peter Dobratz writes: > > This patch changes the default value for jde-gen-class-buffer-template > > so that relevant tempo-template-jde-javadoc are used instead of > > literal text. This way when the value of, for example, > > tempo-template-jde-javadoc-author-tag

Support in emacs for RefactorIT

2002-11-29 Thread Paul Kinnucan
Artur Hefczyc writes: > Hi, > > Does anyone know about any kind of support > in emacs or even JDEE for RefactorIT? > I don't plan to provide any support in the JDEE for RefactorIT as it is a commercial product. In general I believe commercial vendors should themselves provide Emacs support

Not getting stop at any breakpoint.

2002-11-29 Thread Christopher Mark Balz
Problem: --- Not able to get any use out of jdebug yet. With What: - Windows 2000 Service Pack 3, Java 1.4 SDK, Tomcat 3.2.4 Servlet Engine, GNU Emacs 21.2.1, JDE 2.2.8, a web application that I'm trying to debug, compiled with -g option, running Tomcat from startup.bat with normal

Delegate Method

2002-11-29 Thread Cattell, Craig
When I try the delegate method wizard I get: Beanshell expression evaluation error. Expression: jde.wizards.DelegateFactory.makeDelegatesExpression("connection_", "com.caucho.jdbc.mysql.Connection", true); Error: // Error: // Uncaught Exception: TargetError : at Line: 63 : in file: : jde .wiz

Support in emacs for RefactorIT

2002-11-29 Thread Artur Hefczyc
Hi, Does anyone know about any kind of support in emacs or even JDEE for RefactorIT? regards Artur Hefczyc -- Artur Hefczyc[EMAIL PROTECTED] Open Source Developer http://wttools.sourceforge.net/

RE: jde-wiz-implement-interface

2002-11-29 Thread Petter Måhlén
Hmm. This seems to be a bug in jde.util.ClassPathZip.load(): void load() throws IOException { ZipFile zipFile = new ZipFile(zipOrJar); Enumeration enum = zipFile.entries(); while (enum.hasMoreElements()) { ZipEntry zipEntry = (ZipEntry)enum.nextElement();

jde-wiz-implement-interface

2002-11-29 Thread Henrik Kjær
Title: Message There is a bug in the interface wizard - it insert $ when the interface to be implemented uses inner classes.   Example: My interface - import path.Class;   public interface MyInterface {  void myMethod(Class.innerClass) } will result in import path.Class$innerClass; My