Tree$.java 1.06 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.Tuple2
 *  scala.collection.Seq
 */
package com.adobe.forms.layout;

import com.adobe.forms.layout.Tree;
import scala.None;
import scala.Option;
import scala.ScalaObject;
import scala.Serializable;
import scala.Some;
import scala.Tuple2;
import scala.collection.Seq;

public final class Tree$
implements ScalaObject,
Serializable {
    public static final Tree$ MODULE$;

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

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

    public Option unapply(Tree x$0) {
        return x$0 == null ? None..MODULE$ : new Some((Object)new Tuple2(x$0.value(), x$0.children()));
    }

    public Tree apply(Object value, Seq children) {
        return new Tree<Object>(value, children);
    }

    public Object readResolve() {
        return MODULE$;
    }

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