Skip to main content

developerWorks >  Autonomic computing  >  Forums  >  Eclipse tooling package support  >  developerWorks

About Eclipse Content assist.    Point your RSS reader here for a feed of the latest messages in this thread


     

 
 

My developerWorks
 Welcome, Guest
Sign in or register
Permlink Replies: 0 - Pages: 1 Threads: [ Previous | Next ]
a.t.aman

Posts: 1
Registered: Jul 10, 2008 08:36:45 AM
About Eclipse Content assist.
Posted: Jul 10, 2008 08:46:59 AM
Click to report abuse...   Click to reply to this thread Reply
Attachment contenAssist.JPG (11.9 KB)
This message is about the content assist.
The conten assist do not show a public method's name,but shows the variables in my class.
I create a managed bean named fileUpload:
<managed-bean>
<managed-bean-name>fileUpload</managed-bean-name>
<managed-bean-class>com.ptt.fileupload.FileUpload</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
It is intented to manage my FileUpload.java class.
FileUpload.java is a simple class like this:
package com.ptt.fileupload;
public class FileUpload {
private String importType = "Credit";
public void fileUploadListener()
{
System.out.println(this.importType);
}
public String getImportType() {
return importType;
}
public void setImportType(String importType) {
this.importType = importType;
}
}

And content assist in jpg:
http://pic1.resimupload.com/r8/resim_619570550.JPG

Point your RSS reader here for a feed of the latest messages in all forums