mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 12:20:21 +00:00
9 lines
169 B
Java
9 lines
169 B
Java
package lombok.eclipse.agent;
|
|
|
|
public interface EclipseTransformer {
|
|
/** slash and not dot separated */
|
|
String getTargetClassName();
|
|
|
|
byte[] transform(byte[] in);
|
|
}
|