Package de.plushnikov.intellij.plugin.action.delombok

Source Code of de.plushnikov.intellij.plugin.action.delombok.DelombokSetterAction

package de.plushnikov.intellij.plugin.action.delombok;

import de.plushnikov.intellij.plugin.processor.clazz.SetterProcessor;
import de.plushnikov.intellij.plugin.processor.field.SetterFieldProcessor;

public class DelombokSetterAction extends BaseDelombokAction {
  public DelombokSetterAction() {
    super(new BaseDelombokHandler(new SetterProcessor(), new SetterFieldProcessor()));
  }
}
TOP

Related Classes of de.plushnikov.intellij.plugin.action.delombok.DelombokSetterAction

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.