Item$.java 1.27 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  scala.None
 *  scala.None$
 *  scala.Option
 *  scala.ScalaObject
 *  scala.Serializable
 *  scala.Some
 *  scala.Tuple3
 *  scala.runtime.AbstractFunction3
 *  scala.runtime.BoxesRunTime
 */
package com.adobe.forms.layout;

import com.adobe.forms.layout.Item;
import scala.None;
import scala.Option;
import scala.ScalaObject;
import scala.Serializable;
import scala.Some;
import scala.Tuple3;
import scala.runtime.AbstractFunction3;
import scala.runtime.BoxesRunTime;

public final class Item$
extends AbstractFunction3
implements ScalaObject,
Serializable {
    public static final Item$ MODULE$;

    public static {
        new com.adobe.forms.layout.Item$();
    }

    public final String toString() {
        return "Item";
    }

    public Option unapply(Item x$0) {
        return x$0 == null ? None..MODULE$ : new Some((Object)new Tuple3((Object)x$0.display(), (Object)x$0.save(), (Object)BoxesRunTime.boxToBoolean((boolean)x$0.isSelected())));
    }

    public Item apply(String display, String save, boolean isSelected) {
        return new Item(display, save, isSelected);
    }

    public Object readResolve() {
        return MODULE$;
    }

    private Item$() {
        MODULE$ = this;
    }
}