Fielding a request to make some stuff public. The things made public are already part of things we'll change even if public (because, not part of lombok.X or lombok.experimental.X or lombok.experimental.**), nor is it particularly volatile.

See issue #389.
This commit is contained in:
Reinier Zwitserloot
2012-07-11 00:59:36 +02:00
parent 71e0d53bc3
commit d2d9687a5c
4 changed files with 4 additions and 4 deletions
@@ -838,7 +838,7 @@ public class EclipseHandlerUtil {
return null;
}
enum FieldAccess {
public enum FieldAccess {
GETTER, PREFER_FIELD, ALWAYS_FIELD;
}
@@ -119,7 +119,7 @@ public class HandleEqualsAndHashCode extends JavacAnnotationHandler<EqualsAndHas
generateMethods(typeNode, source, null, null, null, false, FieldAccess.GETTER);
}
private void generateMethods(JavacNode typeNode, JavacNode source, List<String> excludes, List<String> includes,
public void generateMethods(JavacNode typeNode, JavacNode source, List<String> excludes, List<String> includes,
Boolean callSuper, boolean whineIfExists, FieldAccess fieldAccess) {
boolean notAClass = true;
if (typeNode.get() instanceof JCClassDecl) {
@@ -111,7 +111,7 @@ public class HandleToString extends JavacAnnotationHandler<ToString> {
generateToString(typeNode, errorNode, null, null, includeFieldNames, null, false, FieldAccess.GETTER);
}
private void generateToString(JavacNode typeNode, JavacNode source, List<String> excludes, List<String> includes,
public void generateToString(JavacNode typeNode, JavacNode source, List<String> excludes, List<String> includes,
boolean includeFieldNames, Boolean callSuper, boolean whineIfExists, FieldAccess fieldAccess) {
boolean notAClass = true;
if (typeNode.get() instanceof JCClassDecl) {
@@ -566,7 +566,7 @@ public class JavacHandlerUtil {
return null;
}
enum FieldAccess {
public enum FieldAccess {
GETTER, PREFER_FIELD, ALWAYS_FIELD;
}