Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public class MyAction implements IAction { \\
private List<Object> attachments = new ArrayList<Object>(); \\
public List<Object> getAttachments()
{     return attachments;   }\\
public void execute() throws Exception {} \\
}
Code Block

|
These two behaviors are employed by BeanUtils to implement what they called indexed properties. In summary,

...