I can probably answer your first question. Lets say I have the following setup:
File : someclass.java which is packaged as "package dir2.dir3;"
Location of someclass.java : on drive c under directory structure dir1->dir2->dir3
Your CLASSPATH needs to have "c:\dir1"
Let's say you are going to use 'someclass' in test.java which can be something like;
1) import dir2.dir3.someclass;
....
x) someclass sc = new someclass();
y) sc.somefunction()
You can get the statement (line 1) by using jde-wiz-find-and-import. Once you have
imported the class then doing
jde-complete-at-point (line y) works fine.
Hope this helps.
-rohit
-----Original Message-----
From: Kevin_D'[EMAIL PROTECTED] [mailto:Kevin_D'[EMAIL PROTECTED]]
Sent: Thursday, June 29, 2000 2:40 PM
To: [EMAIL PROTECTED]
Subject: Two questions
Hello,
I would like to ask the following questions:
1. How do I get jde-complete-at-point to work properly? Currently, if I do
the following:
String a;
a.<jde-complete-at-point>
I get a list of methods for String; however, if I do:
Vector a;
a.<jde-complete-at-point>
I get the message "No completions at point"
How must I have my environment set up to (a) pick up the JDK stuff (b) pick
up my local code?
2. Is there any support for debugging Web applications which run under
WebLogic 4.5.1?
Thanks in advance to all who respond...