infer_clone/infer/tests/codetoanalyze/java/litho-required-props/RequiredPropsSection.java

30 lines
713 B

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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.litho;
import com.facebook.litho.sections.Section;
public class RequiredPropsSection {
public MySection mMySection;
public Section buildWithAllOk() {
return mMySection.create().prop1(new Object()).prop2(new Object()).build();
}
// prop 2 is optional
public Section buildWithout2Ok() {
return mMySection.create().prop1(new Object()).build();
}
// prop 1 is required
public Section buildWithout1Bad() {
return mMySection.create().prop2(new Object()).build();
}
}