All Downloads are FREE. Search and download functionalities are using the official Maven repository.

autofixture.generators.objects.implementationdetails.PackagePrivateVisibility Maven / Gradle / Ivy

package autofixture.generators.objects.implementationdetails;

/**
 * Created by grzes on 04.07.2017.
 */
public class PackagePrivateVisibility implements ConstructorVisibility {
  @Override
  public boolean appliesTo(ConstructorCall constructor) {
    return constructor.isPackagePrivate();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy