Corner$.java 1.41 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.Tuple6
 *  scala.runtime.AbstractFunction6
 */
package com.adobe.forms.layout;

import com.adobe.forms.layout.Corner;
import com.adobe.forms.layout.Join;
import com.adobe.forms.layout.Presence;
import com.adobe.forms.layout.StrokeType;
import scala.None;
import scala.Option;
import scala.ScalaObject;
import scala.Serializable;
import scala.Some;
import scala.Tuple6;
import scala.runtime.AbstractFunction6;

public final class Corner$
extends AbstractFunction6
implements ScalaObject,
Serializable {
    public static final Corner$ MODULE$;

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

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

    public Option unapply(Corner x$0) {
        return x$0 == null ? None..MODULE$ : new Some((Object)new Tuple6(x$0.strokeType(), x$0.thickness(), x$0.color(), x$0.radius(), (Object)x$0.join(), (Object)x$0.presence()));
    }

    public Corner apply(Option strokeType, Option thickness, Option color, Option radius, Join join, Presence presence) {
        return new Corner(strokeType, thickness, color, radius, join, presence);
    }

    public Object readResolve() {
        return MODULE$;
    }

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