Examples of EqualsAndHashCodeProcessor


Examples of de.plushnikov.intellij.plugin.processor.clazz.EqualsAndHashCodeProcessor

import de.plushnikov.intellij.plugin.processor.clazz.EqualsAndHashCodeProcessor;

public class DelombokEqualsAndHashCodeAction extends BaseDelombokAction {
  public DelombokEqualsAndHashCodeAction() {
    super(new BaseDelombokHandler(new EqualsAndHashCodeProcessor()));
  }
View Full Code Here

Examples of de.plushnikov.intellij.plugin.processor.clazz.EqualsAndHashCodeProcessor

  private static BaseDelombokHandler createHandler() {
    return new BaseDelombokHandler(
        new RequiredArgsConstructorProcessor(), new AllArgsConstructorProcessor(), new NoArgsConstructorProcessor(),
        new DataProcessor(), new GetterProcessor(), new ValueProcessor(), new WitherProcessor(),
        new SetterProcessor(), new EqualsAndHashCodeProcessor(), new ToStringProcessor(),
        new CommonsLogProcessor(), new Log4jProcessor(), new Log4j2Processor(), new LogProcessor(), new Slf4jProcessor(), new XSlf4jProcessor(),
        new GetterFieldProcessor(), new SetterFieldProcessor(), new WitherFieldProcessor(), new DelegateFieldProcessor(),
        new DelegateMethodProcessor()
    );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.