org.jhotdraw8.draw.key.SymmetricPoint2DStyleableMapAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jhotdraw8.draw Show documentation
Show all versions of org.jhotdraw8.draw Show documentation
JHotDraw8 Drawing Framework
The newest version!
/*
* @(#)SymmetricPoint2DStyleableMapAccessor.java
* Copyright © 2023 The authors and contributors of JHotDraw. MIT License.
*/
package org.jhotdraw8.draw.key;
import javafx.geometry.Point2D;
import org.jhotdraw8.draw.css.converter.SymmetricPoint2DConverter;
import org.jhotdraw8.fxcollection.typesafekey.NonNullMapAccessor;
/**
* SymmetricPoint2DStyleableMapAccessor.
*
* @author Werner Randelshofer
*/
public class SymmetricPoint2DStyleableMapAccessor extends Point2DStyleableMapAccessor
implements NonNullMapAccessor {
public SymmetricPoint2DStyleableMapAccessor(String name,
NonNullMapAccessor xKey,
NonNullMapAccessor yKey) {
super(name, xKey, yKey, new SymmetricPoint2DConverter(false));
}
}