public class org.apache.dubbo.rpc.protocol.rest.ViolationReport extends java.lang.Object implements java.io.Serializable
{
private static final long serialVersionUID;
private java.util.List constraintViolations;
public void <init>()
{
org.apache.dubbo.rpc.protocol.rest.ViolationReport v;
v := @this: org.apache.dubbo.rpc.protocol.rest.ViolationReport;
specialinvoke v.<java.lang.Object: void <init>()>();
return;
}
public java.util.List getConstraintViolations()
{
java.util.List v;
org.apache.dubbo.rpc.protocol.rest.ViolationReport v;
v := @this: org.apache.dubbo.rpc.protocol.rest.ViolationReport;
v = v.<org.apache.dubbo.rpc.protocol.rest.ViolationReport: java.util.List constraintViolations>;
return v;
}
public void setConstraintViolations(java.util.List)
{
java.util.List v;
org.apache.dubbo.rpc.protocol.rest.ViolationReport v;
v := @this: org.apache.dubbo.rpc.protocol.rest.ViolationReport;
v := @parameter: java.util.List;
v.<org.apache.dubbo.rpc.protocol.rest.ViolationReport: java.util.List constraintViolations> = v;
return;
}
public void addConstraintViolation(org.apache.dubbo.rpc.protocol.rest.RestConstraintViolation)
{
org.apache.dubbo.rpc.protocol.rest.RestConstraintViolation v;
java.util.List v, v;
org.apache.dubbo.rpc.protocol.rest.ViolationReport v;
java.util.LinkedList v;
v := @this: org.apache.dubbo.rpc.protocol.rest.ViolationReport;
v := @parameter: org.apache.dubbo.rpc.protocol.rest.RestConstraintViolation;
v = v.<org.apache.dubbo.rpc.protocol.rest.ViolationReport: java.util.List constraintViolations>;
if v != null goto label;
v = new java.util.LinkedList;
specialinvoke v.<java.util.LinkedList: void <init>()>();
v.<org.apache.dubbo.rpc.protocol.rest.ViolationReport: java.util.List constraintViolations> = v;
label:
v = v.<org.apache.dubbo.rpc.protocol.rest.ViolationReport: java.util.List constraintViolations>;
interfaceinvoke v.<java.util.List: boolean add(java.lang.Object)>(v);
return;
}
}