Searched defs:docflavor (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/javax/print/attribute/
H A DServiceDialogTest.java177 public boolean isDocFlavorSupported(DocFlavor docflavor) argument
180 if (docflavor.equals(supportedDocFlavors[i])) {
233 public Object getSupportedAttributeValues(Class category, DocFlavor docflavor, AttributeSet attributeset) argument
239 if (docflavor != null) {
240 if (!isDocFlavorSupported(docflavor)) {
241 throw new IllegalArgumentException(docflavor + " is an unsupported flavor");
258 public AttributeSet getUnsupportedAttributes(DocFlavor docflavor, AttributeSet attributeset) { argument
260 if (docflavor != null && !isDocFlavorSupported(docflavor)) {
261 throw new IllegalArgumentException("flavor " + docflavor
[all...]

Completed in 30 milliseconds