Rectangle$.java 1.23 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.runtime.AbstractFunction2
 */
package com.adobe.forms.layout;

import com.adobe.forms.layout.Border;
import com.adobe.forms.layout.Extent;
import com.adobe.forms.layout.Rectangle;
import scala.None;
import scala.Option;
import scala.ScalaObject;
import scala.Serializable;
import scala.Some;
import scala.Tuple2;
import scala.runtime.AbstractFunction2;

public final class Rectangle$
extends AbstractFunction2
implements ScalaObject,
Serializable {
    public static final Rectangle$ MODULE$;

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

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

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

    public Rectangle apply(Extent extent, Border border) {
        return new Rectangle(extent, border);
    }

    public Object readResolve() {
        return MODULE$;
    }

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