Skip to content

Fluent setters are not recognised #190

@lrkwz

Description

@lrkwz

If your bean is something with a fluent setter like

class MyDataRow {
  String name;
  public String getName(){ return name; }
  public MyDataRow setName( String name ){
       this.name = name;
       return this;
  }
}

it won't be recognized as a valid field and SKIPPed by BeanProperties.parseBean(Class beanClass).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions