org.immutables.fixture.style.NonPublicInitializers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-fixture Show documentation
Show all versions of value-fixture Show documentation
Module that contains all tests for the code generation capability
package org.immutables.fixture.style;
import org.immutables.value.Value;
@Value.Immutable
@Value.Style(alwaysPublicInitializers = false)
public abstract class NonPublicInitializers {
public abstract int a();
protected abstract String b();
abstract boolean c();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy