You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.2 KiB
60 lines
1.2 KiB
/*
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
package codetoanalyze.java.checkers;
|
|
|
|
import com.facebook.infer.annotation.ReturnsOwnership;
|
|
import javax.annotation.concurrent.ThreadSafe;
|
|
|
|
// no races should be reported here
|
|
// abstract getThis should get a default summary returning conditional ownership
|
|
|
|
@ThreadSafe
|
|
abstract class Component {
|
|
abstract static class Builder<T extends Builder<T>> {
|
|
abstract T getThis();
|
|
|
|
private int i;
|
|
|
|
public T set(int i) {
|
|
this.i = i;
|
|
return getThis();
|
|
}
|
|
|
|
public T background() {
|
|
return getThis();
|
|
}
|
|
|
|
@ReturnsOwnership
|
|
abstract Component build();
|
|
}
|
|
}
|
|
|
|
@ThreadSafe
|
|
class Column extends Component {
|
|
static Component onCreateLayoutOk() {
|
|
Component.Builder<?> builder = ColumnBuilder.create().background();
|
|
return builder.set(0).build();
|
|
}
|
|
|
|
static class ColumnBuilder extends Component.Builder<ColumnBuilder> {
|
|
static ColumnBuilder create() {
|
|
return new ColumnBuilder();
|
|
}
|
|
|
|
@Override
|
|
ColumnBuilder getThis() {
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
Column build() {
|
|
return new Column();
|
|
}
|
|
}
|
|
}
|