< prev index next >
src/java.desktop/share/classes/javax/print/attribute/AttributeSetUtilities.java
Print this page
@@ -204,14 +204,14 @@
/**
* Creates an unmodifiable view of the given attribute set.
*
* @param attributeSet Underlying attribute set.
*
- * @return Unmodifiable view of <CODE>attributeSet</CODE>.
+ * @return Unmodifiable view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null. Null is never a
+ * Thrown if {@code attributeSet} is null. Null is never a
*/
public static AttributeSet unmodifiableView(AttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
}
@@ -222,14 +222,14 @@
/**
* Creates an unmodifiable view of the given doc attribute set.
*
* @param attributeSet Underlying doc attribute set.
*
- * @return Unmodifiable view of <CODE>attributeSet</CODE>.
+ * @return Unmodifiable view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static DocAttributeSet unmodifiableView
(DocAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -240,14 +240,14 @@
/**
* Creates an unmodifiable view of the given print request attribute set.
*
* @param attributeSet Underlying print request attribute set.
*
- * @return Unmodifiable view of <CODE>attributeSet</CODE>.
+ * @return Unmodifiable view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static PrintRequestAttributeSet
unmodifiableView(PrintRequestAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -258,14 +258,14 @@
/**
* Creates an unmodifiable view of the given print job attribute set.
*
* @param attributeSet Underlying print job attribute set.
*
- * @return Unmodifiable view of <CODE>attributeSet</CODE>.
+ * @return Unmodifiable view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static PrintJobAttributeSet
unmodifiableView(PrintJobAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -276,14 +276,14 @@
/**
* Creates an unmodifiable view of the given print service attribute set.
*
* @param attributeSet Underlying print service attribute set.
*
- * @return Unmodifiable view of <CODE>attributeSet</CODE>.
+ * @return Unmodifiable view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static PrintServiceAttributeSet
unmodifiableView(PrintServiceAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -415,14 +415,14 @@
/**
* Creates a synchronized view of the given attribute set.
*
* @param attributeSet Underlying attribute set.
*
- * @return Synchronized view of <CODE>attributeSet</CODE>.
+ * @return Synchronized view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static AttributeSet synchronizedView
(AttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -433,14 +433,14 @@
/**
* Creates a synchronized view of the given doc attribute set.
*
* @param attributeSet Underlying doc attribute set.
*
- * @return Synchronized view of <CODE>attributeSet</CODE>.
+ * @return Synchronized view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static DocAttributeSet
synchronizedView(DocAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -451,14 +451,14 @@
/**
* Creates a synchronized view of the given print request attribute set.
*
* @param attributeSet Underlying print request attribute set.
*
- * @return Synchronized view of <CODE>attributeSet</CODE>.
+ * @return Synchronized view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static PrintRequestAttributeSet
synchronizedView(PrintRequestAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -469,14 +469,14 @@
/**
* Creates a synchronized view of the given print job attribute set.
*
* @param attributeSet Underlying print job attribute set.
*
- * @return Synchronized view of <CODE>attributeSet</CODE>.
+ * @return Synchronized view of {@code attributeSet}.
*
* @exception NullPointerException
- * Thrown if <CODE>attributeSet</CODE> is null.
+ * Thrown if {@code attributeSet} is null.
*/
public static PrintJobAttributeSet
synchronizedView(PrintJobAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -487,11 +487,11 @@
/**
* Creates a synchronized view of the given print service attribute set.
*
* @param attributeSet Underlying print service attribute set.
*
- * @return Synchronized view of <CODE>attributeSet</CODE>.
+ * @return Synchronized view of {@code attributeSet}.
*/
public static PrintServiceAttributeSet
synchronizedView(PrintServiceAttributeSet attributeSet) {
if (attributeSet == null) {
throw new NullPointerException();
@@ -506,21 +506,21 @@
* Attribute Attribute} or a subinterface thereof.
*
* @param object Object to test.
* @param interfaceName Interface the object must implement.
*
- * @return If <CODE>object</CODE> is a {@link java.lang.Class Class}
- * that implements <CODE>interfaceName</CODE>,
- * <CODE>object</CODE> is returned downcast to type {@link
+ * @return If {@code object} is a {@link java.lang.Class Class}
+ * that implements {@code interfaceName},
+ * {@code object} is returned downcast to type {@link
* java.lang.Class Class}; otherwise an exception is thrown.
*
* @exception NullPointerException
- * (unchecked exception) Thrown if <CODE>object</CODE> is null.
+ * (unchecked exception) Thrown if {@code object} is null.
* @exception ClassCastException
- * (unchecked exception) Thrown if <CODE>object</CODE> is not a
+ * (unchecked exception) Thrown if {@code object} is not a
* {@link java.lang.Class Class} that implements
- * <CODE>interfaceName</CODE>.
+ * {@code interfaceName}.
*/
public static Class<?>
verifyAttributeCategory(Object object, Class<?> interfaceName) {
Class<?> result = (Class<?>) object;
@@ -538,20 +538,20 @@
* thereof.
*
* @param object Object to test.
* @param interfaceName Interface of which the object must be an instance.
*
- * @return If <CODE>object</CODE> is an instance of
- * <CODE>interfaceName</CODE>, <CODE>object</CODE> is returned
+ * @return If {@code object} is an instance of
+ * {@code interfaceName}, {@code object} is returned
* downcast to type {@link Attribute Attribute}; otherwise an
* exception is thrown.
*
* @exception NullPointerException
- * (unchecked exception) Thrown if <CODE>object</CODE> is null.
+ * (unchecked exception) Thrown if {@code object} is null.
* @exception ClassCastException
- * (unchecked exception) Thrown if <CODE>object</CODE> is not an
- * instance of <CODE>interfaceName</CODE>.
+ * (unchecked exception) Thrown if {@code object} is not an
+ * instance of {@code interfaceName}.
*/
public static Attribute
verifyAttributeValue(Object object, Class<?> interfaceName) {
if (object == null) {
@@ -571,15 +571,15 @@
*
* @param category Attribute category to test.
* @param attribute Attribute value to test.
*
* @exception NullPointerException
- * (unchecked exception) Thrown if the <CODE>category</CODE> is
- * null or if the <CODE>attribute</CODE> is null.
+ * (unchecked exception) Thrown if the {@code category} is
+ * null or if the {@code attribute} is null.
* @exception IllegalArgumentException
- * (unchecked exception) Thrown if the <CODE>category</CODE> is not
- * equal to the category of the <CODE>attribute</CODE>.
+ * (unchecked exception) Thrown if the {@code category} is not
+ * equal to the category of the {@code attribute}.
*/
public static void
verifyCategoryForValue(Class<?> category, Attribute attribute) {
if (!category.equals (attribute.getCategory())) {
< prev index next >