/**
* method to access fonts values in the standard configuration
*
- * @param key a string containing the key for the configuration value
* @return HashMap a HashMap containing the values
* null if the key is not defined.
*/
}
/**
- * @param <tt>int</tt> unit as per constants defined in this class
+ * @param unit type of unit as per constants defined in this class
* @return <tt>double</tt> degrees value
*/
public double getAngle(int unit) {
}
/**
- * @param <tt>int</tt> unit as per constants defined in this class
- * @param <tt>double</tt> angle in specified units
+ * @param unit type of unit as per constants defined in this class
+ * @param value angle in specified units
*/
public void setAngle(int unit, double value) {
units = unit;
}
/**
- * @param <tt>double</tt> angle in degrees
+ * @param degrees angle in degrees
*/
public void setAngle(double degrees) {
units = DEG;
* @param node - the <tt>FONode</tt> with reference to which this
* <i>EM</i> value is being consructed. A null value imples the
* construction of an <i>initial value</i>.
- * @param property the index of the property with which this value
* @param propertyName the name of the property with which this value
* is associated.
* @param value the number of units.
}
/**
- * @param <tt>int</tt> unit as per constants defined in this class
+ * @param unit type of unit as per constants defined in this class
* @return <tt>double</tt> frequency value
*/
public double getFrequency(int unit) {
}
/**
- * @param <tt>int</tt> unit as per constants defined in this class
- * @param <tt>double</tt> frequency in specified units
+ * @param unit type of unit as per constants defined in this class
+ * @param value frequency in specified units
*/
public void setFrequency(int unit, double value) {
units = unit;
}
/**
- * @param <tt>double</tt> frequency in hertz
+ * @param frequency in hertz
*/
public void setFrequency(double frequency) {
units = HZ;
* Append a PropertyValue to the end of the list.
* @param o a <tt>PropertyValue</tt>; the element to add. Defined as an
* <tt>Object</tt> to override the definition in <tt>LinkedList</tt>.
- * @return a <tt>boolean</tt> success or failure(?).
* @exception IllegalArgumentException if the object is not a
* <tt>PropertyValue</tt>.
*/
/**
* Set the color associated with this set of decorations.
- * @param the color.
+ * @param color the color.
*/
public void setColor(ColorType color) {
this.color = color;
/**
* Apply the decoration masks of a <tt>TextDecorator</tt> object to
* these decorations.
- * @param the <tt>TextDecorator</tt>.
+ * @param decorator the <tt>TextDecorator</tt>.
*/
public byte maskDecorations(TextDecorator decorator) {
decorations |= decorator.onMask;
}
/**
- * @param <tt>int</tt> unit as per constants defined in this class
+ * @param unit type of unit as per constants defined in this class
* @return <tt>double</tt> time value
*/
public double getTime(int unit) {
}
/**
- * @param <tt>int</tt> unit as per constants defined in this class
- * @param <tt>double</tt> time in specified units
+ * @param unit type of unit as per constants defined in this class
+ * @param value time in specified units
*/
public void setTime(int unit, double value) {
units = unit;
}
/**
- * @param <tt>double</tt> time in millisecs
+ * @param time in millisecs
*/
public void setTime(double time) {
units = MSEC;