@AutoValue不适用于Intellij 2016.1.3

时间:2016-06-22 12:50:13

标签: java intellij-idea auto-value

我尝试使用Google的@AutoValue。 但是,它没有在我的Intellij上工作。

Step.1 我在这个课上做了

import com.google.auto.value.AutoValue;

@AutoValue
public abstract class Example {
  public static Example create(String name, int integer) {
    return new AutoValue_Example(name, integer);
  }

  public abstract String name();
  public abstract int integer();
}

然后

Step.2 将此代码输入build.gradle

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.11'
    compile group: 'com.google.auto.value', name: 'auto-value', version: '1.2'
}

Step.3 我安装了AutoValue插件。

但Java编译器给我这个错误:

Error:(12, 20) java: cannot find symbol
  symbol:   class AutoValue_Animal
  location: class Animal

0 个答案:

没有答案