package org.richfaces.sandbox.chart.component; import org.richfaces.cdk.annotations.*; /** * The <s:point< tag defines the value of point. It is * supposed to be used inside the <s:series< tag. * @author Lukas Macko */ @JsfComponent( type = "org.richfaces.sandbox.chart.component.point", family = "org.richfaces.sandbox.ChartFamily", tag = @Tag(name="point")) abstract public class AbstractPoint extends javax.faces.component.UIComponentBase implements AxisAttributes{ /** * Value plotted on x-axis. */ @Attribute(required = true) public abstract Object getX(); /** * Value plotted on y-axis. */ @Attribute(required = true) public abstract Object getY(); }