XFAPasswordFieldNode.java 2.21 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  scala.ScalaObject
 *  scala.reflect.ScalaSignature
 *  scala.xml.Node
 */
package com.adobe.forms.layout;

import com.adobe.forms.layout.XFAFieldNode;
import com.adobe.forms.layout.XFANode;
import scala.ScalaObject;
import scala.reflect.ScalaSignature;
import scala.xml.Node;

@ScalaSignature(bytes="\u0006\u0001Q2A!\u0001\u0002\u0001\u0017\t!\u0002LR!QCN\u001cxo\u001c:e\r&,G\u000e\u001a(pI\u0016T!a\u0001\u0003\u0002\r1\f\u0017p\\;u\u0015\t)a!A\u0003g_Jl7O\u0003\u0002\b\u0011\u0005)\u0011\rZ8cK*\t\u0011\"A\u0002d_6\u001c\u0001aE\u0002\u0001\u0019A\u0001\"!\u0004\b\u000e\u0003\tI!a\u0004\u0002\u0003\u0019a3\u0015IR5fY\u0012tu\u000eZ3\u0011\u0005E!R\"\u0001\n\u000b\u0003M\tQa]2bY\u0006L!!\u0006\n\u0003\u0017M\u001b\u0017\r\\1PE*,7\r\u001e\u0005\t/\u0001\u0011\t\u0011)A\u00051\u0005!an\u001c3f!\tIB$D\u0001\u001b\u0015\tY\"#A\u0002y[2L!!\b\u000e\u0003\t9{G-\u001a\u0005\u0006?\u0001!\t\u0001I\u0001\u0007y%t\u0017\u000e\u001e \u0015\u0005\u0005\u0012\u0003CA\u0007\u0001\u0011\u00159b\u00041\u0001\u0019\u0011\u001d!\u0003A1A\u0005\u0002\u0015\n\u0001B\\8eKRK\b/Z\u000b\u0002MA\u0011q\u0005L\u0007\u0002Q)\u0011\u0011FK\u0001\u0005Y\u0006twMC\u0001,\u0003\u0011Q\u0017M^1\n\u00055B#AB*ue&tw\r\u0003\u00040\u0001\u0001\u0006IAJ\u0001\n]>$W\rV=qK\u0002B\u0001\"\r\u0001\t\u0006\u0004%\t!J\u0001\u0005e>dW\r\u0003\u00054\u0001!\u0005\t\u0015)\u0003'\u0003\u0015\u0011x\u000e\\3!\u0001")
public class XFAPasswordFieldNode
extends XFAFieldNode
implements ScalaObject {
    private final String nodeType = "passwordfield";
    private String role;

    public String nodeType() {
        return this.nodeType;
    }

    /*
     * Enabled force condition propagation
     * Lifted jumps to return sites
     */
    public String role() {
        if ((this.bitmap$0 & 2048) != 0) return this.role;
        XFAPasswordFieldNode xFAPasswordFieldNode = this;
        synchronized (xFAPasswordFieldNode) {
            if ((this.bitmap$0 & 2048) == 0) {
                this.role = "textbox";
                this.bitmap$0 = this.bitmap$0 | 2048;
            }
            return this.role;
        }
    }

    public XFAPasswordFieldNode(Node node) {
        super(node);
    }
}