cox.jmatt.java.MathTools.graphing.noop
Class NOAxis

java.lang.Object
  extended by cox.jmatt.java.MathTools.graphing.noop.NORenderable
      extended by cox.jmatt.java.MathTools.graphing.noop.NOAxis
All Implemented Interfaces:
Axis, Renderable

public class NOAxis
extends NORenderable
implements Axis


Constructor Summary
NOAxis()
           
 
Method Summary
 boolean setScale(java.lang.Object pScale)
          The scale of an axis determines how measurements and comparisons are made.
 boolean setTickMarks(java.lang.Object pMarks)
          Tick marks are small marks placed on an axis at appropriate intervals.
 
Methods inherited from class cox.jmatt.java.MathTools.graphing.noop.NORenderable
render, setParameter, setType, testCondition
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface cox.jmatt.java.MathTools.graphing.Renderable
render, setParameter, setType, testCondition
 

Constructor Detail

NOAxis

public NOAxis()
Method Detail

setScale

public boolean setScale(java.lang.Object pScale)
Description copied from interface: Axis
The scale of an axis determines how measurements and comparisons are made. How, or if, that is used depends on the implementation but this method provides the framework for it.

Specified by:
setScale in interface Axis
Parameters:
pScale - The Object representing the scale used for this Axis.
Returns:
true if the pScale makes sense and is set, false otherwise.

setTickMarks

public boolean setTickMarks(java.lang.Object pMarks)
Description copied from interface: Axis
Tick marks are small marks placed on an axis at appropriate intervals. Use this method to configure them for this Axis.

Specified by:
setTickMarks in interface Axis
Parameters:
pMarks - The Object representing the tick-mark configuration to be used for this Axis.
Returns:
true if pMarks makes sense, false otherwise.