Package de.plushnikov.intellij.plugin.processor.clazz

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


import de.plushnikov.intellij.plugin.processor.clazz.ValueExperimentalProcessor;
import de.plushnikov.intellij.plugin.processor.clazz.ValueProcessor;

public class DelombokValueAction extends BaseDelombokAction {
  public DelombokValueAction() {
    super(new BaseDelombokHandler(new ValueProcessor(), new ValueExperimentalProcessor()));
  }
View Full Code Here


  }

  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

Related Classes of de.plushnikov.intellij.plugin.processor.clazz.ValueProcessor

Copyright © 2018 www.massapicom. 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.