> But it's simple to replace the 
> framework.database.ExampleTableItem with a wrapper or 
> extended class that controls the access to the properties.

This could be something like this:

public class ExampleTableItemWrapper extends ExampleTableItem {
  /** public write access */
  public void setName(String name) {
    ...
  }

  /** public read access */
  public String getName() {
    ...
  }

  /** private write access (deny access) */
  private void setDeleted(boolean deleted) {
    ...
  }

  /** public read access */
  public boolean getDeleted() {
    ...
  }
}




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to