8037511: Tidy warnings cleanup for java.awt - 2d part
Reviewed-by: prr
This commit is contained in:
parent
f429e5b86c
commit
a3d9307fb9
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -50,7 +50,7 @@ import java.awt.color.ColorSpace;
|
||||
* see <A href="http://www.w3.org/pub/WWW/Graphics/Color/sRGB.html">
|
||||
* http://www.w3.org/pub/WWW/Graphics/Color/sRGB.html
|
||||
* </A>.
|
||||
* <p>
|
||||
*
|
||||
* @version 10 Feb 1997
|
||||
* @author Sami Shaio
|
||||
* @author Arthur van Hoff
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -542,7 +542,6 @@ public class Font implements java.io.Serializable
|
||||
* compatible alternative, then the font system will map the Font
|
||||
* instance to "Dialog", such that for example, the family as reported
|
||||
* by {@link #getFamily() getFamily} will be "Dialog".
|
||||
* <p>
|
||||
*
|
||||
* @param name the font name. This can be a font face name or a font
|
||||
* family name, and may represent either a logical font or a physical
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -151,7 +151,7 @@ public abstract class Graphics {
|
||||
* is specified by the <code>width</code> and <code>height</code>
|
||||
* arguments.
|
||||
* </ul>
|
||||
* <p>
|
||||
*
|
||||
* @param x the <i>x</i> coordinate.
|
||||
* @param y the <i>y</i> coordinate.
|
||||
* @param width the width of the clipping rectangle.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -351,7 +351,7 @@ public class Polygon implements Shape, java.io.Serializable {
|
||||
/**
|
||||
* Determines whether the specified coordinates are inside this
|
||||
* <code>Polygon</code>.
|
||||
* <p>
|
||||
*
|
||||
* @param x the specified X coordinate to be tested
|
||||
* @param y the specified Y coordinate to be tested
|
||||
* @return {@code true} if this {@code Polygon} contains
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -41,14 +41,13 @@ import java.beans.Transient;
|
||||
* <p>
|
||||
* <a name="Empty">
|
||||
* A {@code Rectangle} whose width or height is exactly zero has location
|
||||
* along those axes with zero dimension, but is otherwise considered empty.
|
||||
* along those axes with zero dimension, but is otherwise considered empty.</a>
|
||||
* The {@link #isEmpty} method will return true for such a {@code Rectangle}.
|
||||
* Methods which test if an empty {@code Rectangle} contains or intersects
|
||||
* a point or rectangle will always return false if either dimension is zero.
|
||||
* Methods which combine such a {@code Rectangle} with a point or rectangle
|
||||
* will include the location of the {@code Rectangle} on that axis in the
|
||||
* result as if the {@link #add(Point)} method were being called.
|
||||
* </a>
|
||||
* <p>
|
||||
* <a name="NonExistant">
|
||||
* A {@code Rectangle} whose width or height is negative has neither
|
||||
@ -422,7 +421,7 @@ public class Rectangle extends Rectangle2D
|
||||
* <code>Rectangle</code> to the specified
|
||||
* <code>x</code>, <code>y</code>, <code>width</code>,
|
||||
* and <code>height</code>.
|
||||
* <p>
|
||||
*
|
||||
* @param x the new X coordinate for the upper-left
|
||||
* corner of this <code>Rectangle</code>
|
||||
* @param y the new Y coordinate for the upper-left
|
||||
@ -488,7 +487,7 @@ public class Rectangle extends Rectangle2D
|
||||
|
||||
/**
|
||||
* Moves this <code>Rectangle</code> to the specified location.
|
||||
* <p>
|
||||
*
|
||||
* @param x the X coordinate of the new location
|
||||
* @param y the Y coordinate of the new location
|
||||
* @deprecated As of JDK version 1.1,
|
||||
@ -629,7 +628,7 @@ public class Rectangle extends Rectangle2D
|
||||
/**
|
||||
* Sets the size of this <code>Rectangle</code> to the specified
|
||||
* width and height.
|
||||
* <p>
|
||||
*
|
||||
* @param width the new width for this <code>Rectangle</code>
|
||||
* @param height the new height for this <code>Rectangle</code>
|
||||
* @deprecated As of JDK version 1.1,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -388,7 +388,7 @@ public abstract class ColorSpace implements java.io.Serializable {
|
||||
* convert from CS_CIEXYZ to the output color space.
|
||||
* See {@link #toCIEXYZ(float[]) toCIEXYZ} and
|
||||
* {@link #fromCIEXYZ(float[]) fromCIEXYZ} for further information.
|
||||
* <p>
|
||||
*
|
||||
* @param colorvalue a float array with length of at least the number
|
||||
* of components in this ColorSpace
|
||||
* @return a float array of length 3
|
||||
@ -412,7 +412,7 @@ public abstract class ColorSpace implements java.io.Serializable {
|
||||
* convert from CS_CIEXYZ to the output color space.
|
||||
* See {@link #toCIEXYZ(float[]) toCIEXYZ} and
|
||||
* {@link #fromCIEXYZ(float[]) fromCIEXYZ} for further information.
|
||||
* <p>
|
||||
*
|
||||
* @param rgbvalue a float array with length of at least 3
|
||||
* @return a float array with length equal to the number of
|
||||
* components in this ColorSpace
|
||||
@ -439,7 +439,7 @@ public abstract class ColorSpace implements java.io.Serializable {
|
||||
* that would be measured using current CIE recommended practices.
|
||||
* See the {@link ICC_ColorSpace#toCIEXYZ(float[]) toCIEXYZ} method of
|
||||
* <code>ICC_ColorSpace</code> for further information.
|
||||
* <p>
|
||||
*
|
||||
* @param colorvalue a float array with length of at least the number
|
||||
* of components in this ColorSpace
|
||||
* @return a float array of length 3
|
||||
@ -467,7 +467,7 @@ public abstract class ColorSpace implements java.io.Serializable {
|
||||
* relative values before being passed to this method.
|
||||
* See the {@link ICC_ColorSpace#fromCIEXYZ(float[]) fromCIEXYZ} method of
|
||||
* <code>ICC_ColorSpace</code> for further information.
|
||||
* <p>
|
||||
*
|
||||
* @param colorvalue a float array with length of at least 3
|
||||
* @return a float array with length equal to the number of
|
||||
* components in this ColorSpace
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -149,7 +149,7 @@ public class ICC_ColorSpace extends ColorSpace {
|
||||
* convert from CS_CIEXYZ to the output color space.
|
||||
* See {@link #toCIEXYZ(float[]) toCIEXYZ} and
|
||||
* {@link #fromCIEXYZ(float[]) fromCIEXYZ} for further information.
|
||||
* <p>
|
||||
*
|
||||
* @param colorvalue a float array with length of at least the number
|
||||
* of components in this ColorSpace.
|
||||
* @return a float array of length 3.
|
||||
@ -201,7 +201,7 @@ public class ICC_ColorSpace extends ColorSpace {
|
||||
* convert from CS_CIEXYZ to the output color space.
|
||||
* See {@link #toCIEXYZ(float[]) toCIEXYZ} and
|
||||
* {@link #fromCIEXYZ(float[]) fromCIEXYZ} for further information.
|
||||
* <p>
|
||||
*
|
||||
* @param rgbvalue a float array with length of at least 3.
|
||||
* @return a float array with length equal to the number of
|
||||
* components in this ColorSpace.
|
||||
@ -336,7 +336,7 @@ public class ICC_ColorSpace extends ColorSpace {
|
||||
* will result in a measured device XYZ value of D65. This will not
|
||||
* be the same as the media white point tag XYZ value in the ICC
|
||||
* profile for an sRGB device.
|
||||
* <p>
|
||||
*
|
||||
* @param colorvalue a float array with length of at least the number
|
||||
* of components in this ColorSpace.
|
||||
* @return a float array of length 3.
|
||||
@ -480,7 +480,7 @@ public class ICC_ColorSpace extends ColorSpace {
|
||||
* will result in a measured device XYZ value of D65. This will not
|
||||
* be the same as the media white point tag XYZ value in the ICC
|
||||
* profile for an sRGB device.
|
||||
* <p>
|
||||
*
|
||||
* @param colorvalue a float array with length of at least 3.
|
||||
* @return a float array with length equal to the number of
|
||||
* components in this ColorSpace.
|
||||
|
@ -96,7 +96,7 @@ import sun.misc.SharedSecrets;
|
||||
* </UL>
|
||||
*
|
||||
* <h4>Summary of attributes</h4>
|
||||
* <table style="float:center" border="0" cellspacing="0" cellpadding="2" width="%95"
|
||||
* <table style="float:center" border="0" cellspacing="0" cellpadding="2" width="95%"
|
||||
* summary="Key, value type, principal constants, and default value
|
||||
* behavior of all TextAttributes">
|
||||
* <tr style="background-color:#ccccff">
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -35,8 +35,8 @@ import java.io.Serializable;
|
||||
* <p>
|
||||
* <a name="inscribes">
|
||||
* The arc is a partial section of a full ellipse which
|
||||
* inscribes the framing rectangle of its parent {@link RectangularShape}.
|
||||
* </a>
|
||||
* inscribes the framing rectangle of its parent</a> {@link RectangularShape}.
|
||||
*
|
||||
* <a name="angles">
|
||||
* The angles are specified relative to the non-square
|
||||
* framing rectangle such that 45 degrees always falls on the line from
|
||||
|
@ -324,7 +324,7 @@ public class AffineTransformOp implements BufferedImageOp, RasterOp {
|
||||
* this part of the rectangle is not drawn. If the coordinates
|
||||
* of the rectangle are positive then the filtered image is drawn at
|
||||
* that position in the destination <code>Raster</code>.
|
||||
* <p>
|
||||
*
|
||||
* @param src The <CODE>Raster</CODE> to transform.
|
||||
* @param dst The <CODE>Raster</CODE> in which to store the results of the
|
||||
* transformation.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -85,7 +85,7 @@ public class BufferedImageFilter extends ImageFilter implements Cloneable {
|
||||
* an image should avoid calling this method directly since that
|
||||
* operation could result in problems with retrieving the requested
|
||||
* pixels.
|
||||
* <p>
|
||||
*
|
||||
* @param width the width to which to set the width of this
|
||||
* <code>BufferedImageFilter</code>
|
||||
* @param height the height to which to set the height of this
|
||||
|
@ -225,7 +225,7 @@ public class ImageFilter implements ImageConsumer, Cloneable {
|
||||
*
|
||||
* <li>
|
||||
* Override the method to simply send the data.
|
||||
* This is appropriate if the filter can handle the request itself —
|
||||
* This is appropriate if the filter can handle the request itself —
|
||||
* for example,
|
||||
* if the generated pixels have been saved in some sort of buffer.
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -394,7 +394,7 @@ public class WritableRaster extends Raster {
|
||||
* is first converted to a 32-bit int (if necessary), using the above
|
||||
* rules for integral types, and then the int is cast to float or
|
||||
* double.
|
||||
* <p>
|
||||
*
|
||||
* @param srcRaster The Raster from which to copy pixels.
|
||||
*
|
||||
* @throws NullPointerException if srcRaster is null.
|
||||
|
@ -546,7 +546,6 @@ public abstract class PrinterJob {
|
||||
* user settings returned from
|
||||
* <code>printDialog(PrintRequestAttributeSet attributes</code> to
|
||||
* this print() method.
|
||||
* <p>
|
||||
*
|
||||
* @param attributes a set of attributes for the job
|
||||
* @exception PrinterException an error in the print system
|
||||
|
@ -131,8 +131,8 @@ standard plug-ins.
|
||||
<li>the number of bands is 1;
|
||||
<li>the number of bits per sample is not greater than 8;
|
||||
<li>the size of a color component is not greater than 8;
|
||||
</ul> </p>
|
||||
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
By default the GIF writer plug-in creates version "89a" images. This can be
|
||||
changed to "87a" by explicitly setting the version in the
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -168,7 +168,7 @@ public interface Doc {
|
||||
* from the print data representation object.
|
||||
* However, if the print data representation object is itself a Reader,
|
||||
* then the print data representation object is simply returned.
|
||||
* <P>
|
||||
*
|
||||
* @return Reader for reading the print data characters from this doc.
|
||||
* If a reader cannot be provided because this doc does not meet
|
||||
* the criteria stated above, null is returned.
|
||||
@ -192,7 +192,7 @@ public interface Doc {
|
||||
* object as a stream of bytes is created and returned. However, if the
|
||||
* print data representation object is itself an input stream, then the
|
||||
* print data representation object is simply returned.
|
||||
* <P>
|
||||
*
|
||||
* @return Input stream for reading the print data bytes from this doc. If
|
||||
* an input stream cannot be provided because this doc does not
|
||||
* meet the criteria stated above, null is returned.
|
||||
|
@ -381,7 +381,6 @@ import java.io.Serializable;
|
||||
* <LI>
|
||||
* A line feed (LF) character standing by itself means
|
||||
* "go to column 1 of the next line."
|
||||
* <LI>
|
||||
* </UL>
|
||||
* <P>
|
||||
* The client must itself perform all plain text print data formatting not
|
||||
@ -436,7 +435,6 @@ import java.io.Serializable;
|
||||
* Java Print Service instance supports without having
|
||||
* to load the representation classes, which may be problematic for
|
||||
* limited-resource clients.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
@ -536,7 +534,7 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* The charset for text types is a commonly useful example.
|
||||
* This convenience method will return the value of the specified
|
||||
* parameter if one was specified in the mime type for this flavor.
|
||||
* <p>
|
||||
*
|
||||
* @param paramName the name of the paramater. This name is internally
|
||||
* converted to the canonical lower case format before performing
|
||||
* the match.
|
||||
@ -638,7 +636,6 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* Class DocFlavor.BYTE_ARRAY provides predefined static constant
|
||||
* DocFlavor objects for example doc flavors using a byte array
|
||||
* (<CODE>byte[]</CODE>) as the print data representation class.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
@ -836,7 +833,6 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* DocFlavor objects for example doc flavors using a byte stream ({@link
|
||||
* java.io.InputStream java.io.InputStream}) as the print
|
||||
* data representation class.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
@ -1038,8 +1034,7 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* objects.
|
||||
* For example doc flavors using a Uniform Resource Locator ({@link
|
||||
* java.net.URL java.net.URL}) as the print data
|
||||
* representation class.
|
||||
* <P>
|
||||
* representation class.
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
@ -1229,7 +1224,6 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* DocFlavor objects for example doc flavors using a character array
|
||||
* (<CODE>char[]</CODE>) as the print data representation class. As such,
|
||||
* the character set is Unicode.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
@ -1279,7 +1273,6 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* objects for example doc flavors using a string ({@link java.lang.String
|
||||
* java.lang.String}) as the print data representation class.
|
||||
* As such, the character set is Unicode.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
@ -1327,7 +1320,6 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* objects for example doc flavors using a character stream ({@link
|
||||
* java.io.Reader java.io.Reader}) as the print data
|
||||
* representation class. As such, the character set is Unicode.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
@ -1376,7 +1368,6 @@ public class DocFlavor implements Serializable, Cloneable {
|
||||
* Class DocFlavor.SERVICE_FORMATTED provides predefined static constant
|
||||
* DocFlavor objects for example doc flavors for service formatted print
|
||||
* data.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -327,7 +327,6 @@ public interface PrintService {
|
||||
* that indicates bounds on the legal values -- used, for example, by an
|
||||
* integer-valued attribute that must lie within a certain range.
|
||||
* </UL>
|
||||
* <P>
|
||||
*
|
||||
* @param category Printing attribute category to test. It must be a
|
||||
* {@link java.lang.Class Class} that implements
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -199,7 +199,6 @@ public abstract class PrintServiceLookup {
|
||||
* available that is not part of the installation.
|
||||
* If the lookup service is already registered, or cannot be registered,
|
||||
* the method returns false.
|
||||
* <p>
|
||||
*
|
||||
* @param sp an implementation of a lookup service.
|
||||
* @return <code>true</code> if the new lookup service is newly
|
||||
@ -305,7 +304,6 @@ public abstract class PrintServiceLookup {
|
||||
* <p>
|
||||
* Locates MultiDoc print services which can be positively confirmed
|
||||
* to support the combination of attributes and DocFlavors specified.
|
||||
* <p>
|
||||
*
|
||||
* @param flavors of documents required. If null or empty it is ignored.
|
||||
* @param attributes required to be supported. If null this
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -131,8 +131,7 @@ public class ServiceUI {
|
||||
* }
|
||||
* }
|
||||
* }</pre>
|
||||
* <p>
|
||||
|
||||
*
|
||||
* @param gc used to select screen. null means primary or default screen.
|
||||
* @param x location of dialog including border in screen coordinates
|
||||
* @param y location of dialog including border in screen coordinates
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -111,7 +111,7 @@ public abstract class ServiceUIFactory {
|
||||
/**
|
||||
* Get a UI object which may be cast to the requested UI type
|
||||
* by the application and used in its user interface.
|
||||
* <P>
|
||||
*
|
||||
* @param role requested. Must be one of the standard roles or
|
||||
* a private role supported by this factory.
|
||||
* @param ui type in which the role is requested.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -176,7 +176,7 @@ public final class SimpleDoc implements Doc {
|
||||
* However, if the print data representation object is itself a
|
||||
* <code>Reader</code> then the print data representation object is
|
||||
* simply returned.
|
||||
* <P>
|
||||
*
|
||||
* @return a <code>Reader</code> for reading the print data
|
||||
* characters from this doc.
|
||||
* If a reader cannot be provided because this doc does not meet
|
||||
@ -224,7 +224,7 @@ public final class SimpleDoc implements Doc {
|
||||
* However, if the print data representation object is itself an
|
||||
* input stream then the print data representation object is simply
|
||||
* returned.
|
||||
* <P>
|
||||
*
|
||||
* @return an <code>InputStream</code> for reading the print data
|
||||
* bytes from this doc. If an input stream cannot be
|
||||
* provided because this doc does not meet
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -95,7 +95,7 @@ public abstract class StreamPrintServiceFactory {
|
||||
* Although null is an acceptable value to use in the lookup of stream
|
||||
* printing services, it's typical to search for a particular
|
||||
* desired format, such as Postscript(TM).
|
||||
* <p>
|
||||
*
|
||||
* @param flavor of the input document type - null means match all
|
||||
* types.
|
||||
* @param outputMimeType representing the required output format, used to
|
||||
@ -153,7 +153,7 @@ public abstract class StreamPrintServiceFactory {
|
||||
* Implementations which allocate resources on construction should examine
|
||||
* the stream and may wish to only allocate resources if the stream is
|
||||
* non-null.
|
||||
* <p>
|
||||
*
|
||||
* @param out destination stream for generated output.
|
||||
* @return a PrintService which will generate the format specified by the
|
||||
* DocFlavor supported by this Factory.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -31,7 +31,6 @@ import java.io.Serializable;
|
||||
* Interface Attribute is the base interface implemented by any and every
|
||||
* printing attribute class to indicate that the class represents a
|
||||
* printing attribute. All printing attributes are serializable.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -54,7 +54,6 @@ import java.util.Date;
|
||||
* rather than a <code>java.util.Calendar</code> because it typically takes
|
||||
* less memory to store and less time to compare a <code>java.util.Date</code>
|
||||
* than a <code>java.util.Calendar</code>.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -36,7 +36,6 @@ package javax.print.attribute;
|
||||
* PrintRequestAttribute} as well as DocAttribute, the client may include the
|
||||
* attribute in a attribute set which specifies a print job
|
||||
* to specify a characteristic for all the docs in that job.
|
||||
* <P>
|
||||
*
|
||||
* @see DocAttributeSet
|
||||
* @see PrintRequestAttributeSet
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -40,7 +40,6 @@ package javax.print.attribute;
|
||||
* The {@link #add(Attribute) add(Attribute)}, and
|
||||
* {@link #addAll(AttributeSet) addAll(AttributeSet)} operations
|
||||
* are respecified below to guarantee this additional invariant.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -102,7 +102,6 @@ import java.io.Serializable;
|
||||
* uses some of the same integer values as the superclass. However, the
|
||||
* application in which the enumeration class and subclass are used may need to
|
||||
* have distinct integer values in the superclass and subclass.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -34,7 +34,6 @@ import java.util.HashMap;
|
||||
/**
|
||||
* Class HashAttributeSet provides an <code>AttributeSet</code>
|
||||
* implementation with characteristics of a hash map.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -33,7 +33,6 @@ import java.io.Serializable;
|
||||
* inherits its implementation from class {@link HashAttributeSet
|
||||
* HashAttributeSet} and enforces the semantic restrictions of interface {@link
|
||||
* DocAttributeSet DocAttributeSet}.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -33,7 +33,6 @@ import java.io.Serializable;
|
||||
* which inherits its implementation from class {@link HashAttributeSet
|
||||
* HashAttributeSet} and enforces the semantic restrictions of interface
|
||||
* {@link PrintJobAttributeSet PrintJobAttributeSet}.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -33,7 +33,6 @@ import java.io.Serializable;
|
||||
* class {@link HashAttributeSet HashAttributeSet} and enforces the
|
||||
* semantic restrictions of interface
|
||||
* {@link PrintRequestAttributeSet PrintRequestAttributeSet}.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -32,7 +32,6 @@ import java.io.Serializable;
|
||||
* which inherits its implementation from class {@link HashAttributeSet
|
||||
* HashAttributeSet} and enforces the semantic restrictions of interface
|
||||
* {@link PrintServiceAttributeSet PrintServiceAttributeSet}.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -37,7 +37,6 @@ import java.io.Serializable;
|
||||
* established when it is constructed (see {@link #IntegerSyntax(int)
|
||||
* IntegerSyntax(int)}). Once constructed, an integer attribute's
|
||||
* value is immutable.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -34,7 +34,6 @@ package javax.print.attribute;
|
||||
* PrintRequestAttribute PrintRequestAttribute} as well as PrintJobAttribute,
|
||||
* the client may include the attribute in a attribute set to
|
||||
* specify the attribute's value for the Print Job.
|
||||
* <P>
|
||||
*
|
||||
* @see PrintRequestAttributeSet
|
||||
* @see PrintJobAttributeSet
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -39,7 +39,6 @@ package javax.print.attribute;
|
||||
* The {@link #add(Attribute) add(Attribute)}, and
|
||||
* {@link #addAll(AttributeSet) >addAll(AttributeSet)} operations
|
||||
* are respecified below to guarantee this additional invariant.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -39,7 +39,6 @@ package javax.print.attribute;
|
||||
* as well as PrintRequestAttribute, the client may include the
|
||||
* attribute in a <code>Doc</code>}'s attribute set to specify
|
||||
* a job setting which pertains just to that doc.
|
||||
* <P>
|
||||
*
|
||||
* @see DocAttributeSet
|
||||
* @see PrintRequestAttributeSet
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -40,7 +40,6 @@ package javax.print.attribute;
|
||||
* The {@link #add(Attribute) add(Attribute)}, and
|
||||
* {@link #addAll(AttributeSet) addAll(AttributeSet)} operations
|
||||
* are respecified below to guarantee this additional invariant.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -31,7 +31,6 @@ package javax.print.attribute;
|
||||
* of a Print Service or some other characteristic of a Print Service. A Print
|
||||
* Service instance adds a number of PrintServiceAttributes to a Print
|
||||
* service's attribute set to report the Print Service's status.
|
||||
* <P>
|
||||
*
|
||||
* @see PrintServiceAttributeSet
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -42,7 +42,6 @@ package javax.print.attribute;
|
||||
* The {@link #add(Attribute) add(Attribute)}, and
|
||||
* {@link #addAll(AttributeSet) addAll(AttributeSet)} operations
|
||||
* are respecified below to guarantee this additional invariant.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -78,7 +78,6 @@ import java.io.Serializable;
|
||||
* mind, there is no guarantee that the conversion factor for the client's units
|
||||
* will be an exact integer. If the conversion factor isn't an exact integer,
|
||||
* resolution values in the client's units won't be stored precisely.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -75,7 +75,6 @@ import java.util.Vector;
|
||||
* Class SetOfIntegerSyntax has operations to return the set's members in
|
||||
* canonical array form, to test whether a given integer is a member of the
|
||||
* set, and to iterate through the members of the set.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -77,7 +77,6 @@ import java.io.Serializable;
|
||||
* client's units will be an exact integer. If the conversion factor isn't an
|
||||
* exact integer, resolution values in the client's units won't be stored
|
||||
* precisely.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -36,7 +36,6 @@ package javax.print.attribute;
|
||||
* which is a SupportedValuesAttribute giving the legal values a client may
|
||||
* specify for the {@link javax.print.attribute.standard.Copies Copies}
|
||||
* attribute.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -35,7 +35,6 @@ import java.util.Locale;
|
||||
* includes a locale to indicate the natural language. Thus, a text attribute
|
||||
* always represents a localized string. Once constructed, a text attribute's
|
||||
* value is immutable.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -33,7 +33,6 @@ import java.net.URI;
|
||||
* Class URISyntax is an abstract base class providing the common
|
||||
* implementation of all attributes whose value is a Uniform Resource
|
||||
* Identifier (URI). Once constructed, a URI attribute's value is immutable.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<title>javax.print.attribute package</title>
|
||||
<!--
|
||||
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
|
||||
This code is free software; you can redistribute it and/or modify it
|
||||
@ -398,7 +398,7 @@ interpretation. Usage to the contrary is incorrect coding and may result
|
||||
in a run time exception either immediately or at some later time.
|
||||
IllegalArgumentException and NullPointerException are examples of
|
||||
typical and acceptable run time exceptions for such cases.
|
||||
<P>
|
||||
|
||||
@since 1.4
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -52,7 +52,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -40,7 +40,6 @@ import javax.print.attribute.DocAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -40,7 +40,6 @@ import javax.print.attribute.SupportedValuesAttribute;
|
||||
* javax.print.attribute.SetOfIntegerSyntax SetOfIntegerSyntax} for an
|
||||
* explanation of canonical array form. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -47,7 +47,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* "date-time-at-completed" attribute can be obtained as described above. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -47,7 +47,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* "date-time-at-creation" attribute can be obtained as described above. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -47,7 +47,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* "date-time-at-processing" attribute can be obtained as described above. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -50,7 +50,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* cause.
|
||||
* <P>
|
||||
* <B>IPP Compatibility:</B> Destination is not an IPP attribute.
|
||||
* <P>
|
||||
*
|
||||
* @author Phil Race.
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -46,9 +46,8 @@ import javax.print.attribute.PrintRequestAttribute;
|
||||
* or even printer specific options.
|
||||
* <P>
|
||||
* <B>IPP Compatibility:</B> This is not an IPP attribute.
|
||||
* <P>
|
||||
* @since 1.7
|
||||
*
|
||||
* @since 1.7
|
||||
*/
|
||||
public final class DialogTypeSelection extends EnumSyntax
|
||||
implements PrintRequestAttribute {
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -43,7 +43,6 @@ import javax.print.attribute.DocAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -78,7 +78,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* for example, a JobHoldUntil value with today's date and 9:00pm local time
|
||||
* might be converted to the standard IPP keyword "night". The category name
|
||||
* returned by <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -65,7 +65,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @see JobImpressionsSupported
|
||||
* @see JobImpressionsCompleted
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -47,7 +47,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @see JobImpressions
|
||||
* @see JobImpressionsSupported
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -42,7 +42,6 @@ import javax.print.attribute.SupportedValuesAttribute;
|
||||
* javax.print.attribute.SetOfIntegerSyntax SetOfIntegerSyntax} for an
|
||||
* explanation of canonical array form. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -117,7 +117,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @see JobKOctetsSupported
|
||||
* @see JobKOctetsProcessed
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -59,7 +59,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @see JobKOctets
|
||||
* @see JobKOctetsSupported
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -42,7 +42,6 @@ import javax.print.attribute.SupportedValuesAttribute;
|
||||
* javax.print.attribute.SetOfIntegerSyntax SetOfIntegerSyntax} for an
|
||||
* explanation of canonical array form. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -57,7 +57,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @see JobMediaSheetsSupported
|
||||
* @see JobMediaSheetsCompleted
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -47,7 +47,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @see JobMediaSheets
|
||||
* @see JobMediaSheetsSupported
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -42,7 +42,6 @@ import javax.print.attribute.SupportedValuesAttribute;
|
||||
* javax.print.attribute.SetOfIntegerSyntax SetOfIntegerSyntax} for an
|
||||
* explanation of canonical array form. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -47,7 +47,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -48,7 +48,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -47,7 +47,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -54,7 +54,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -44,7 +44,6 @@ import javax.print.attribute.SupportedValuesAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value.
|
||||
* The category name returned by <CODE>getName()</CODE> gives the IPP
|
||||
* attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -49,7 +49,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <code>toString()</code> method returns the IPP string representation of
|
||||
* the attribute value. For a subclass, the attribute value must be
|
||||
* localized to give the IPP name and natural language values.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -42,7 +42,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -51,7 +51,6 @@ import javax.print.attribute.Attribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -62,7 +62,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* JobStateReason JobStateReason} object's <CODE>toString()</CODE> method gives
|
||||
* the IPP keyword value. The category name returned by <CODE>getName()</CODE>
|
||||
* gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -52,7 +52,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Phil Race
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -46,7 +46,6 @@ import javax.print.attribute.Attribute;
|
||||
* to find the physical dimensions of the MediaSizeName instances
|
||||
* enumerated in this API. This is useful for clients which need this
|
||||
* information to format {@literal &} paginate printing.
|
||||
* <P>
|
||||
*
|
||||
* @author Phil Race, Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -37,7 +37,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -37,7 +37,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value.
|
||||
* The category name returned by <CODE>getName()</CODE> gives the IPP
|
||||
* attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -38,7 +38,6 @@ import javax.print.attribute.SupportedValuesAttribute;
|
||||
* javax.print.attribute.SetOfIntegerSyntax SetOfIntegerSyntax} for an
|
||||
* explanation of canonical array form. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -58,7 +58,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -43,7 +43,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -38,7 +38,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -39,7 +39,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -50,7 +50,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <B>IPP Compatibility:</B> The integer value gives the IPP integer value. The
|
||||
* category name returned by <CODE>getName()</CODE> gives the IPP attribute
|
||||
* name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -45,7 +45,6 @@ import javax.print.attribute.PrintRequestAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Phil Race.
|
||||
*/
|
||||
|
@ -38,7 +38,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -42,7 +42,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -43,7 +43,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -38,7 +38,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -36,7 +36,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -51,7 +51,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -49,7 +49,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <CODE>toString()</CODE> gives the IPP uri value.
|
||||
* The category name returned by <CODE>getName()</CODE>
|
||||
* gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -49,7 +49,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <CODE>toString()</CODE> gives the IPP uri value.
|
||||
* The category name returned by <CODE>getName()</CODE>
|
||||
* gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -41,7 +41,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <B>IPP Compatibility:</B> The string value gives the IPP name value. The
|
||||
* locale gives the IPP natural language. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -64,7 +64,6 @@ import javax.print.attribute.PrintJobAttribute;
|
||||
* <CODE>"printer-resolution"</CODE> attribute can be obtained by calling
|
||||
* methods on the PrinterResolution object. The category name returned by
|
||||
* <CODE>getName()</CODE> gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author David Mendenhall
|
||||
* @author Alan Kaminsky
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -42,7 +42,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <CODE>getName()</CODE> is the IPP attribute name. The enumeration's
|
||||
* integer value is the IPP enum value. The <code>toString()</code> method
|
||||
* returns the IPP string representation of the attribute value.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -61,7 +61,6 @@ import javax.print.attribute.Attribute;
|
||||
* between, gives the IPP keyword value for a {@link PrinterStateReasons}.
|
||||
* The category name returned by <CODE>getName()</CODE> gives the IPP
|
||||
* attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -77,7 +77,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* together with a hyphen (<CODE>"-"</CODE>) in between, gives the IPP keyword
|
||||
* value. The category name returned by <CODE>getName()</CODE> gives the IPP
|
||||
* attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Alan Kaminsky
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2001, 2004, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -41,7 +41,6 @@ import javax.print.attribute.PrintServiceAttribute;
|
||||
* <CODE>toString()</CODE> gives the IPP printer-uri value.
|
||||
* The category name returned by <CODE>getName()</CODE>
|
||||
* gives the IPP attribute name.
|
||||
* <P>
|
||||
*
|
||||
* @author Robert Herriot
|
||||
*/
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user