-
- All Known Subinterfaces:
- MultiDocPrintService
- All Known Implementing Classes:
- StreamPrintService
public interface PrintService
Interface PrintService is the factory for a DocPrintJob. A PrintService describes the capabilities of a Printer and can be queried regarding a printer's supported attributes.Example:
DocFlavor flavor = DocFlavor.INPUT_STREAM.POSTSCRIPT; PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet(); aset.add(MediaSizeName.ISO_A4); PrintService[] pservices = PrintServiceLookup.lookupPrintServices(flavor, aset); if (pservices.length > 0) { DocPrintJob pj = pservices[0].createPrintJob(); try { FileInputStream fis = new FileInputStream("test.ps"); Doc doc = new SimpleDoc(fis, flavor, null); pj.print(doc, aset); } catch (FileNotFoundException fe) { } catch (PrintException e) { } }
-
-
Method Summary
Methods Modifier and Type Method and Description void
addPrintServiceAttributeListener(PrintServiceAttributeListener listener)
Registers a listener for events on this PrintService.DocPrintJob
createPrintJob()
Creates and returns a PrintJob capable of handling data from any of the supported document flavors.boolean
equals(Object obj)
Determines if two services are referring to the same underlying service.<T extends PrintServiceAttribute>
TgetAttribute(Class<T> category)
Gets the value of the single specified service attribute.PrintServiceAttributeSet
getAttributes()
Obtains this print service's set of printer description attributes giving this Print Service's status.Object
getDefaultAttributeValue(Class<? extends Attribute> category)
Determines this print service's default printing attribute value in the given category.String
getName()
Returns a String name for this print service which may be used by applications to request a particular print service.ServiceUIFactory
getServiceUIFactory()
Returns a factory for UI components which allow users to interact with the service in various roles.Class<?>[]
getSupportedAttributeCategories()
Determines the printing attribute categories a client can specify when setting up a job for this print service.Object
getSupportedAttributeValues(Class<? extends Attribute> category, DocFlavor flavor, AttributeSet attributes)
Determines the printing attribute values a client can specify in the given category when setting up a job for this print service.DocFlavor[]
getSupportedDocFlavors()
Determines the print data formats a client can specify when setting up a job for thisPrintService
.AttributeSet
getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes)
Identifies the attributes that are unsupported for a print request in the context of a particular DocFlavor.int
hashCode()
This method should be implemented consistently withequals(Object)
.boolean
isAttributeCategorySupported(Class<? extends Attribute> category)
Determines whether a client can specify the given printing attribute category when setting up a job for this print service.boolean
isAttributeValueSupported(Attribute attrval, DocFlavor flavor, AttributeSet attributes)
Determines whether a client can specify the given printing attribute value when setting up a job for this Print Service.boolean
isDocFlavorSupported(DocFlavor flavor)
Determines if this print service supports a specificDocFlavor
.void
removePrintServiceAttributeListener(PrintServiceAttributeListener listener)
Removes the print-service listener from this print service.
-
-
-
Method Detail
-
getName
String getName()
Returns a String name for this print service which may be used by applications to request a particular print service. In a suitable context, such as a name service, this name must be unique. In some environments this unique name may be the same as the user friendly printer name defined as thePrinterName
attribute.- Returns:
- name of the service.
-
createPrintJob
DocPrintJob createPrintJob()
Creates and returns a PrintJob capable of handling data from any of the supported document flavors.- Returns:
- a DocPrintJob object
-
addPrintServiceAttributeListener
void addPrintServiceAttributeListener(PrintServiceAttributeListener listener)
Registers a listener for events on this PrintService.- Parameters:
listener
- a PrintServiceAttributeListener, which monitors the status of a print service- See Also:
removePrintServiceAttributeListener(javax.print.event.PrintServiceAttributeListener)
-
removePrintServiceAttributeListener
void removePrintServiceAttributeListener(PrintServiceAttributeListener listener)
Removes the print-service listener from this print service. This means the listener is no longer interested inPrintService
events.- Parameters:
listener
- a PrintServiceAttributeListener object- See Also:
addPrintServiceAttributeListener(javax.print.event.PrintServiceAttributeListener)
-
getAttributes
PrintServiceAttributeSet getAttributes()
Obtains this print service's set of printer description attributes giving this Print Service's status. The returned attribute set object is unmodifiable. The returned attribute set object is a "snapshot" of this Print Service's attribute set at the time of thegetAttributes()
method call: that is, the returned attribute set's contents will not be updated if this print service's attribute set's contents change in the future. To detect changes in attribute values, callgetAttributes()
again and compare the new attribute set to the previous attribute set; alternatively, register a listener for print service events.- Returns:
- Unmodifiable snapshot of this Print Service's attribute set. May be empty, but not null.
-
getAttribute
<T extends PrintServiceAttribute> T getAttribute(Class<T> category)
Gets the value of the single specified service attribute. This may be useful to clients which only need the value of one attribute and want to minimise overhead.- Parameters:
category
- the category of a PrintServiceAttribute supported by this service - may not be null.- Returns:
- the value of the supported attribute or null if the attribute is not supported by this service.
- Throws:
NullPointerException
- if the category is null.IllegalArgumentException
- (unchecked exception) ifcategory
is not aClass
that implements interfacePrintServiceAttribute
.
-
getSupportedDocFlavors
DocFlavor[] getSupportedDocFlavors()
Determines the print data formats a client can specify when setting up a job for thisPrintService
. A print data format is designated by a "doc flavor" (classDocFlavor
) consisting of a MIME type plus a print data representation class.Note that some doc flavors may not be supported in combination with all attributes. Use
getUnsupportedAttributes(..)
to validate specific combinations.- Returns:
- Array of supported doc flavors, should have at least one element.
-
isDocFlavorSupported
boolean isDocFlavorSupported(DocFlavor flavor)
Determines if this print service supports a specificDocFlavor
. This is a convenience method to determine if theDocFlavor
would be a member of the result ofgetSupportedDocFlavors()
.Note that some doc flavors may not be supported in combination with all attributes. Use
getUnsupportedAttributes(..)
to validate specific combinations.- Parameters:
flavor
- theDocFlavor
to query for support.- Returns:
true
if this print service supports the specifiedDocFlavor
;false
otherwise.- Throws:
NullPointerException
- (unchecked exception) Thrown ifflavor
is null.
-
getSupportedAttributeCategories
Class<?>[] getSupportedAttributeCategories()
Determines the printing attribute categories a client can specify when setting up a job for this print service. A printing attribute category is designated by aClass
that implements interfaceAttribute
. This method returns just the attribute categories that are supported; it does not return the particular attribute values that are supported.This method returns all the printing attribute categories this print service supports for any possible job. Some categories may not be supported in a particular context (ie for a particular
DocFlavor
). Use one of the methods that include aDocFlavor
to validate the request before submitting it, such asgetSupportedAttributeValues(..)
.
-
isAttributeCategorySupported
boolean isAttributeCategorySupported(Class<? extends Attribute> category)
Determines whether a client can specify the given printing attribute category when setting up a job for this print service. A printing attribute category is designated by aClass
that implements interfaceAttribute
. This method tells whether the attribute category is supported; it does not tell whether a particular attribute value is supported.Some categories may not be supported in a particular context (ie for a particular
DocFlavor
). Use one of the methods which include aDocFlavor
to validate the request before submitting it, such asgetSupportedAttributeValues(..)
.This is a convenience method to determine if the category would be a member of the result of
getSupportedAttributeCategories()
.- Parameters:
category
- Printing attribute category to test. It must be aClass
that implements interfaceAttribute
.- Returns:
true
if this print service supports specifying a doc-level or job-level attribute incategory
in a Print Request;false
if it doesn't.- Throws:
NullPointerException
- (unchecked exception) Thrown ifcategory
is null.IllegalArgumentException
- (unchecked exception) Thrown ifcategory
is not aClass
that implements interfaceAttribute
.
-
getDefaultAttributeValue
Object getDefaultAttributeValue(Class<? extends Attribute> category)
Determines this print service's default printing attribute value in the given category. A printing attribute value is an instance of a class that implements interfaceAttribute
. If a client sets up a print job and does not specify any attribute value in the given category, this Print Service will use the default attribute value instead.Some attributes may not be supported in a particular context (ie for a particular
DocFlavor
). Use one of the methods that include aDocFlavor
to validate the request before submitting it, such asgetSupportedAttributeValues(..)
.Not all attributes have a default value. For example the service will not have a defaultvalue for
RequestingUser
i.e. a null return for a supported category means there is no service default value for that category. Use theisAttributeCategorySupported(Class)
method to distinguish these cases.- Parameters:
category
- Printing attribute category for which the default attribute value is requested. It must be aClass
that implements interfaceAttribute
.- Returns:
- Default attribute value for
category
, or null if this Print Service does not support specifying a doc-level or job-level attribute incategory
in a Print Request, or the service does not have a default value for this attribute. - Throws:
NullPointerException
- (unchecked exception) Thrown ifcategory
is null.IllegalArgumentException
- (unchecked exception) Thrown ifcategory
is not aClass
that implements interfaceAttribute
.
-
getSupportedAttributeValues
Object getSupportedAttributeValues(Class<? extends Attribute> category, DocFlavor flavor, AttributeSet attributes)
Determines the printing attribute values a client can specify in the given category when setting up a job for this print service. A printing attribute value is an instance of a class that implements interfaceAttribute
.If
flavor
is null andattributes
is null or is an empty set, this method returns all the printing attribute values this Print Service supports for any possible job. Ifflavor
is not null orattributes
is not an empty set, this method returns just the printing attribute values that are compatible with the given doc flavor and/or set of attributes. That is, a null return value may indicate that specifying this attribute is incompatible with the specified DocFlavor. Also if DocFlavor is not null it must be a flavor supported by this PrintService, else IllegalArgumentException will be thrown.If the
attributes
parameter contains an Attribute whose category is the same as thecategory
parameter, the service must ignore this attribute in the AttributeSet.DocAttribute
s which are to be specified on theDoc
must be included in this set to accurately represent the context.This method returns an Object because different printing attribute categories indicate the supported attribute values in different ways. The documentation for each printing attribute in package
javax.print.attribute.standard
describes how each attribute indicates its supported values. Possible ways of indicating support include:- Return a single instance of the attribute category to indicate that any value is legal -- used, for example, by an attribute whose value is an arbitrary text string. (The value of the returned attribute object is irrelevant.)
-
Return an array of one or more instances of the attribute category,
containing the legal values -- used, for example, by an attribute with
a list of enumerated values. The type of the array is an array of the
specified attribute category type as returned by its
getCategory(Class)
. - Return a single object (of some class other than the attribute category) that indicates bounds on the legal values -- used, for example, by an integer-valued attribute that must lie within a certain range.
- Parameters:
category
- Printing attribute category to test. It must be aClass
that implements interfaceAttribute
.flavor
- Doc flavor for a supposed job, or null.attributes
- Set of printing attributes for a supposed job (both job-level attributes and document-level attributes), or null.- Returns:
- Object indicating supported values for
category
, or null if this Print Service does not support specifying a doc-level or job-level attribute incategory
in a Print Request. - Throws:
NullPointerException
- (unchecked exception) Thrown ifcategory
is null.IllegalArgumentException
- (unchecked exception) Thrown ifcategory
is not aClass
that implements interfaceAttribute
, orDocFlavor
is not supported by this service.
-
isAttributeValueSupported
boolean isAttributeValueSupported(Attribute attrval, DocFlavor flavor, AttributeSet attributes)
Determines whether a client can specify the given printing attribute value when setting up a job for this Print Service. A printing attribute value is an instance of a class that implements interfaceAttribute
.If
flavor
is null andattributes
is null or is an empty set, this method tells whether this Print Service supports the given printing attribute value for some possible combination of doc flavor and set of attributes. Ifflavor
is not null orattributes
is not an empty set, this method tells whether this Print Service supports the given printing attribute value in combination with the given doc flavor and/or set of attributes.Also if DocFlavor is not null it must be a flavor supported by this PrintService, else IllegalArgumentException will be thrown.
DocAttribute
s which are to be specified on theDoc
must be included in this set to accurately represent the context.This is a convenience method to determine if the value would be a member of the result of
getSupportedAttributeValues(...)
.- Parameters:
attrval
- Printing attribute value to test.flavor
- Doc flavor for a supposed job, or null.attributes
- Set of printing attributes for a supposed job (both job-level attributes and document-level attributes), or null.- Returns:
- True if this Print Service supports specifying
attrval
as a doc-level or job-level attribute in a Print Request, false if it doesn't. - Throws:
NullPointerException
- (unchecked exception) ifattrval
is null.IllegalArgumentException
- if flavor is not supported by this PrintService.
-
getUnsupportedAttributes
AttributeSet getUnsupportedAttributes(DocFlavor flavor, AttributeSet attributes)
Identifies the attributes that are unsupported for a print request in the context of a particular DocFlavor. This method is useful for validating a potential print job and identifying the specific attributes which cannot be supported. It is important to supply only a supported DocFlavor or an IllegalArgumentException will be thrown. If the return value from this method is null, all attributes are supported.DocAttribute
s which are to be specified on theDoc
must be included in this set to accurately represent the context.If the return value is non-null, all attributes in the returned set are unsupported with this DocFlavor. The returned set does not distinguish attribute categories that are unsupported from unsupported attribute values.
A supported print request can then be created by removing all unsupported attributes from the original attribute set, except in the case that the DocFlavor is unsupported.
If any attributes are unsupported only because they are in conflict with other attributes then it is at the discretion of the service to select the attribute(s) to be identified as the cause of the conflict.
Use
isDocFlavorSupported()
to verify that a DocFlavor is supported before calling this method.- Parameters:
flavor
- Doc flavor to test, or nullattributes
- Set of printing attributes for a supposed job (both job-level attributes and document-level attributes), or null.- Returns:
- null if this Print Service supports the print request specification, else the unsupported attributes.
- Throws:
IllegalArgumentException
- ifflavor
is not supported by this PrintService.
-
getServiceUIFactory
ServiceUIFactory getServiceUIFactory()
Returns a factory for UI components which allow users to interact with the service in various roles. Services which do not provide any UI should return null. Print Services which do provide UI but want to be supported in an environment with no UI support should ensure that the factory is not initialised unless the application calls this method to obtain the factory. SeeServiceUIFactory
for more information.- Returns:
- null or a factory for UI components.
-
equals
boolean equals(Object obj)
Determines if two services are referring to the same underlying service. Objects encapsulating a print service may not exhibit equality of reference even though they refer to the same underlying service.Clients should call this method to determine if two services are referring to the same underlying service.
Services must implement this method and return true only if the service objects being compared may be used interchangeably by the client. Services are free to return the same object reference to an underlying service if that, but clients must not depend on equality of reference.
- Overrides:
equals
in classObject
- Parameters:
obj
- the reference object with which to compare.- Returns:
- true if this service is the same as the obj argument, false otherwise.
- See Also:
Object.hashCode()
,HashMap
-
hashCode
int hashCode()
This method should be implemented consistently withequals(Object)
.- Overrides:
hashCode
in classObject
- Returns:
- hash code of this object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/print/PrintService.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.