Re: JDEbug and static variables

2005-09-23 Thread Roland Roberts
I'm using a freshly installed cedet-1.0pre3 and jde 2.3.5.  I have a
method which, after C-c C-v j looks like below.

/**
 * Describe  method here.
 *
 * @paramvalue
 * @paramvalue
 * @paramvalue
 * @paramvalue
 * @exception  if an error occurs
 */
public static void setModified(Connection con, boolean commit,
   String tableName, Timestamp when)
throws SQLException {
setSomething(con, commit, tableName, when, false);
return;
}


I tried running the fix documentation menubar item, but it just inserts
the same thing, although it also adds an extra @exception line

My .emacs has the following:

(autoload 'jde-mode jde JDE mode. t)
(setq semantic-load-turn-useful-things-on nil
  jde-check-version-flag nil)
(load cedet)
(defun rbr-jde-mode ()
  (setq jde-db-read-app-args t
c-basic-offset 4
;; Replace TAB with equivalent spaces
indent-tabs-mode nil))
(add-hook 'jde-mode-hook 'rbr-jde-mode)

Any clues on what I need to be doing?

roland
-- 
   PGP Key ID: 66 BC 3B CD
Roland B. Roberts, PhD RL Enterprises
[EMAIL PROTECTED]6818 Madeline Court
[EMAIL PROTECTED]   Brooklyn, NY 11220


Re: JDEbug and static variables

2005-09-16 Thread Troy Daniels

At 10:06 PM 9/15/2005, John wrote:


Hi,

I recently installed JDEE 2.3.5 in a GNU Emacs 21.3 environment running on
Windows XP Pro. I'm using Java J2SE 1.5.0_04. The debugger works fine,
however, I can't seem to view static variables. Am I missing something 
obvious

or does JDEbug not work with static variables. Thanks in advance.


JDEbug shows static variables inside objects that are local variables 
(including this).  Inside a static method, it won't show the static 
variables for the class.  I'm not aware of a method to display static 
variables from other classes (e.g., BorderLayout.CENTER) unless you have an 
instance of that class.


Troy


Regards,
John



Troy Daniels
[EMAIL PROTECTED]
781-273-3388 x218



JDEbug and static variables

2005-09-15 Thread John
Hi,

I recently installed JDEE 2.3.5 in a GNU Emacs 21.3 environment running on 
Windows XP Pro. I'm using Java J2SE 1.5.0_04. The debugger works fine, 
however, I can't seem to view static variables. Am I missing something obvious 
or does JDEbug not work with static variables. Thanks in advance.

Regards,
John