Skip to content
peichhorn edited this page Jun 30, 2012 · 3 revisions

@FluentSetter

Overview

(Documentation pending)

Example

With Lombok

import lombok.FluentSetter;

public class FluentSetterExample<T> {
  @FluentSetter
  private T value;
}

Vanilla Java

public class FluentSetterExample<T> {
  private T value;
  
  public FluentSetterExample<T> s(final T value) {
    this.value = value;
    return this;
  }
}

Behind the Scenes

(Documentation pending)

Configuration

Nothing to configure yet.


Clone this wiki locally