org.randombits.confluence.metadata.reference.AbstractReference Maven / Gradle / Ivy
package org.randombits.confluence.metadata.reference;
/**
* The common parent class for all {@link Reference}s. This allows
* implementations to specify a Value (V
) type the reference
* will return, as well as a Sort (S
) type for sorting.
*
* @param
* The value type returned by the reference.
*/
public abstract class AbstractReference implements Reference {
}