package com.yahoo.abicheck.signature; import java.util.List; public class JavaMethodSignature { public final List attributes; public final String returnType; public JavaMethodSignature(List attributes, String returnType) { this.attributes = attributes; this.returnType = returnType; } }