NameValuePair.java
437 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.document.xmlform;
import org.omg.CORBA.portable.IDLEntity;
public final class NameValuePair
implements IDLEntity {
private static final long serialVersionUID = 1;
public String name = "";
public String value = "";
public NameValuePair() {
}
public NameValuePair(String name, String value) {
this.name = name;
this.value = value;
}
}