< prev index next >

src/java.desktop/share/classes/javax/print/package-info.java

Print this page
rev 60127 : 8249205: Remove unnecessary trademark symbols


   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Provides the principal classes and interfaces for the Java&trade; Print
  28  * Service API. The Java Print Service API enables client and server
  29  * applications to:
  30  * <ul>
  31  *   <li>Discover and select print services based on their capabilities
  32  *   <li>Specify the format of print data
  33  *   <li>Submit print jobs to services that support the document type to be
  34  *   printed.
  35  * </ul>
  36  *
  37  * <h2>Print Service Discovery</h2>
  38  * An application invokes the static methods of the abstract class
  39  * {@link javax.print.PrintServiceLookup PrintServiceLookup} to locate print
  40  * services that have the capabilities to satisfy the application's print
  41  * request. For example, to print a double-sided document, the application first
  42  * needs to find printers that have the double-sided printing capability.
  43  * <p>
  44  * The JDK includes {@code PrintServiceLookup} implementations that can locate
  45  * the standard platform printers. To locate other types of printers, such as
  46  * IPP printers or JINI printers, a print-service provider can write
  47  * implementations of {@code PrintServiceLookup}. The print-service provider can




   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Provides the principal classes and interfaces for the Java Print
  28  * Service API. The Java Print Service API enables client and server
  29  * applications to:
  30  * <ul>
  31  *   <li>Discover and select print services based on their capabilities
  32  *   <li>Specify the format of print data
  33  *   <li>Submit print jobs to services that support the document type to be
  34  *   printed.
  35  * </ul>
  36  *
  37  * <h2>Print Service Discovery</h2>
  38  * An application invokes the static methods of the abstract class
  39  * {@link javax.print.PrintServiceLookup PrintServiceLookup} to locate print
  40  * services that have the capabilities to satisfy the application's print
  41  * request. For example, to print a double-sided document, the application first
  42  * needs to find printers that have the double-sided printing capability.
  43  * <p>
  44  * The JDK includes {@code PrintServiceLookup} implementations that can locate
  45  * the standard platform printers. To locate other types of printers, such as
  46  * IPP printers or JINI printers, a print-service provider can write
  47  * implementations of {@code PrintServiceLookup}. The print-service provider can


< prev index next >