Package org.sonar.api.batch.sensor.dependency.internal

Examples of org.sonar.api.batch.sensor.dependency.internal.DefaultDependency.weight()


    DefaultDependency dep = (DefaultDependency) object;
    value.putUTF(((DefaultInputFile) dep.from()).moduleKey());
    value.putUTF(((DefaultInputFile) dep.from()).relativePath());
    value.putUTF(((DefaultInputFile) dep.to()).moduleKey());
    value.putUTF(((DefaultInputFile) dep.to()).relativePath());
    value.put(dep.weight());
  }

  @Override
  public Object get(Value value, Class clazz, CoderContext context) {
    String fromModuleKey = value.getString();
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.