public class org.apache.hc.client.http.entity.mime.FormBodyPart extends org.apache.hc.client.http.entity.mime.MultipartPart
{
private final java.lang.String name;
void <init>(java.lang.String, org.apache.hc.client.http.entity.mime.ContentBody, org.apache.hc.client.http.entity.mime.Header)
{
org.apache.hc.client.http.entity.mime.FormBodyPart v;
org.apache.hc.client.http.entity.mime.Header v;
org.apache.hc.client.http.entity.mime.ContentBody v;
java.lang.String v;
v := @this: org.apache.hc.client.http.entity.mime.FormBodyPart;
v := @parameter: java.lang.String;
v := @parameter: org.apache.hc.client.http.entity.mime.ContentBody;
v := @parameter: org.apache.hc.client.http.entity.mime.Header;
specialinvoke v.<org.apache.hc.client.http.entity.mime.MultipartPart: void <init>(org.apache.hc.client.http.entity.mime.ContentBody,org.apache.hc.client.http.entity.mime.Header)>(v, v);
staticinvoke <org.apache.hc.core.util.Args: java.lang.Object notNull(java.lang.Object,java.lang.String)>(v, "Name");
staticinvoke <org.apache.hc.core.util.Args: java.lang.Object notNull(java.lang.Object,java.lang.String)>(v, "Body");
v.<org.apache.hc.client.http.entity.mime.FormBodyPart: java.lang.String name> = v;
return;
}
public java.lang.String getName()
{
org.apache.hc.client.http.entity.mime.FormBodyPart v;
java.lang.String v;
v := @this: org.apache.hc.client.http.entity.mime.FormBodyPart;
v = v.<org.apache.hc.client.http.entity.mime.FormBodyPart: java.lang.String name>;
return v;
}
public void addField(java.lang.String, java.lang.String)
{
org.apache.hc.client.http.entity.mime.FormBodyPart v;
java.lang.String v, v;
v := @this: org.apache.hc.client.http.entity.mime.FormBodyPart;
v := @parameter: java.lang.String;
v := @parameter: java.lang.String;
staticinvoke <org.apache.hc.core.util.Args: java.lang.Object notNull(java.lang.Object,java.lang.String)>(v, "Field name");
specialinvoke v.<org.apache.hc.client.http.entity.mime.MultipartPart: void addField(java.lang.String,java.lang.String)>(v, v);
return;
}
}