com.jidesoft.range.Positionable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)Positionable.java
*
* 2002 - 2012 JIDE Software Incorporated. All rights reserved.
* Copyright (c) 2005 - 2012 Catalysoft Limited. All rights reserved.
*/
package com.jidesoft.range;
/**
* The idea of being positionable is to place a point somewhere along a one-dimensional axis
* This is very natural for numerical data, but can be applied to categorical data too.
* @author Simon White ([email protected])
*/
public interface Positionable extends Comparable {
/**
* Map the Positionable
object to a numeric value (a double) so that it can be positioned on an axis.
* @return the position of the object
*/
double position();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy