Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

a simple question about Java keywords

Status
Not open for further replies.

OhioSteve

MIS
Mar 12, 2002
1,352
US
I often write several commands using the same object. Here is an example:
fileJMenu.add(importPhoto);
fileJMenu.add(importPhotos);
fileJMenu.add(deletePhoto);

I love the vb.net keyword "with". In vb.net I could write this:

with myObject
.methodName(parameter)
.methodName()
end with

Does anything like "with" exist in Java??
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top