[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools] Getters, Setters help

i uses eclipse 2.1.1

example 
public class testing {
	private String password;

	public String getPassword() {
		return password;
	}

	public void setPassword(String string) {
		password = string;
	}
}


i want to Generation this format how to set?
this layout work on eclipse 2.0
public class testing {
	private String password;

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}
}