/openjdk7/jdk/src/share/classes/javax/print/ |
H A D | MultiDocPrintJob.java | 34 * job attributes. 41 * Print a MultiDoc with the specified job attributes. 52 * @param attributes The job attributes to be applied to this print job. 53 * If this parameter is null then the default attributes are used. 61 * If one or more of the attributes are not valid for this print job. 64 public void print(MultiDoc multiDoc, PrintRequestAttributeSet attributes) argument
|
H A D | DocPrintJob.java | 37 * document with a set of job attributes. An object implementing 54 * Obtains this Print Job's set of printing attributes. 65 * @return the print job attributes 95 * Registers a listener for changes in the specified attributes. 106 * recommended to listen on only that subset of attributes which 111 * dynamic attributes that the job supports. This may result in no 118 * @param attributes The attributes to listen on, or null to mean 119 * all attributes that can change, as determined by the job. 123 PrintJobAttributeSet attributes); 121 addPrintJobAttributeListener( PrintJobAttributeListener listener, PrintJobAttributeSet attributes) argument 173 print(Doc doc, PrintRequestAttributeSet attributes) argument [all...] |
H A D | ServiceUI.java | 112 * service are ignored. As the user browses print services, attributes 117 * If the user cancels the dialog, the returned attributes will not reflect 124 * PrintRequestAttributeSet attributes = new HashPrintRequestAttributeSet(); 129 * attributes); 143 * @param attributes on input is the initial application supplied 145 * On output the attributes reflect changes made by the user. 151 * or attributes is null, or the initial PrintService is not in the 159 PrintRequestAttributeSet attributes) 169 } else if (attributes == null) { 170 throw new IllegalArgumentException("attributes mus 154 printDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, PrintService defaultService, DocFlavor flavor, PrintRequestAttributeSet attributes) argument [all...] |
H A D | SimpleDoc.java | 66 private DocAttributeSet attributes; field in class:SimpleDoc 76 * @param attributes a <code>DocAttributeSet</code>, which can 86 DocFlavor flavor, DocAttributeSet attributes) { 104 if (attributes != null) { 105 this.attributes = AttributeSetUtilities.unmodifiableView(attributes); 121 * Obtains the set of printing attributes for this doc object. If the 132 * @return Unmodifiable set of printing attributes for this doc, or null 137 return attributes; 85 SimpleDoc(Object printData, DocFlavor flavor, DocAttributeSet attributes) argument
|
/openjdk7/jdk/src/share/classes/javax/print/attribute/ |
H A D | HashDocAttributeSet.java | 69 * adding the elements of <CODE>attributes</CODE> array to the set in 74 * @param attributes Array of attribute values to add to the set. 79 * Thrown if any element of <CODE>attributes</CODE> is null. 81 public HashDocAttributeSet(DocAttribute[] attributes) { argument 82 super (attributes, DocAttribute.class); 90 * @param attributes set of attribute values to initialise the set. If 95 * <CODE>attributes</CODE> is not an instance of 98 public HashDocAttributeSet(DocAttributeSet attributes) { argument 99 super(attributes, DocAttribute.class);
|
H A D | HashPrintJobAttributeSet.java | 69 * by adding the elements of <CODE>attributes</CODE> array to the set in 74 * @param attributes Array of attribute values to add to the set. 78 * Thrown if any element of <CODE>attributes</CODE> is null. 80 public HashPrintJobAttributeSet(PrintJobAttribute[] attributes) { argument 81 super (attributes, PrintJobAttribute.class); 89 * @param attributes set of attribute values to initialise the set. If 94 * <CODE>attributes</CODE> is not an instance of 97 public HashPrintJobAttributeSet(PrintJobAttributeSet attributes) { argument 98 super(attributes, PrintJobAttribute.class);
|
H A D | HashPrintRequestAttributeSet.java | 68 * by adding the elements of <CODE>attributes</CODE> array to the set in 73 * @param attributes Array of attribute values to add to the set. 78 * Thrown if any element of <CODE>attributes</CODE> is null. 80 public HashPrintRequestAttributeSet(PrintRequestAttribute[] attributes) { argument 81 super (attributes, PrintRequestAttribute.class); 90 * @param attributes set of attribute values to initialise the set. If 95 * <CODE>attributes</CODE> is not an instance of 98 public HashPrintRequestAttributeSet(PrintRequestAttributeSet attributes) argument 100 super(attributes, PrintRequestAttribute.class);
|
H A D | HashPrintServiceAttributeSet.java | 68 * by adding the elements of <CODE>attributes</CODE> array to the set in 73 * @param attributes Array of attribute values to add to the set. 78 * Thrown if any element of <CODE>attributes</CODE> is null. 80 public HashPrintServiceAttributeSet(PrintServiceAttribute[] attributes) { argument 81 super (attributes, PrintServiceAttribute.class); 90 * @param attributes set of attribute values to initialise the set. If 95 * <CODE>attributes</CODE> is not an instance of 98 public HashPrintServiceAttributeSet(PrintServiceAttributeSet attributes) argument 100 super(attributes, PrintServiceAttribute.class);
|
H A D | DocAttributeSet.java | 31 * attributes, i.e. printing attributes that implement interface {@link 92 * @param attributes whose elements are to be added to this attribute 110 public boolean addAll(AttributeSet attributes); argument
|
H A D | PrintJobAttributeSet.java | 31 * job attributes, i.e. printing attributes that implement interface {@link 90 * @param attributes whose elements are to be added to this attribute 108 public boolean addAll(AttributeSet attributes); argument
|
H A D | PrintRequestAttributeSet.java | 31 * print request attributes, i.e. printing attributes that implement interface 91 * @param attributes whose elements are to be added to this attribute 109 public boolean addAll(AttributeSet attributes); argument
|
H A D | PrintServiceAttributeSet.java | 31 * print job attributes, i.e. printing attributes that implement interface 95 * @param attributes whose elements are to be added to this attribute 113 public boolean addAll(AttributeSet attributes); argument
|
/openjdk7/jdk/src/macosx/native/sun/font/ |
H A D | CoreTextSupport.h | 63 CFMutableDictionaryRef attributes; member in struct:CTS_ProviderStruct
|
/openjdk7/jdk/src/share/classes/javax/print/event/ |
H A D | PrintJobAttributeEvent.java | 34 * reports to let the client know that one or more printing attributes for a 42 private PrintJobAttributeSet attributes; field in class:PrintJobAttributeEvent 47 * @param attributes the attribute changes being reported 52 PrintJobAttributeSet attributes) { 55 this.attributes = AttributeSetUtilities.unmodifiableView(attributes); 71 * Determine the printing attributes that changed and their new values. 74 * attributes that changed. The returned set may not be modifiable. 78 return attributes; 51 PrintJobAttributeEvent(DocPrintJob source, PrintJobAttributeSet attributes) argument
|
H A D | PrintServiceAttributeEvent.java | 43 private PrintServiceAttributeSet attributes; field in class:PrintServiceAttributeEvent 49 * @param attributes the attribute changes being reported 54 PrintServiceAttributeSet attributes) { 57 this.attributes = AttributeSetUtilities.unmodifiableView(attributes); 73 * Determine the printing service attributes that changed and their new 77 * attributes that changed. The returned set may be unmodifiable. 81 return attributes; 53 PrintServiceAttributeEvent(PrintService source, PrintServiceAttributeSet attributes) argument
|
/openjdk7/jdk/src/share/classes/javax/accessibility/ |
H A D | AccessibleAttributeSequence.java | 32 * a contiguous sequence of text attributes 45 * contiguous set of attributes, along with that set of attributes. It 59 /** The text attributes */ 60 public AttributeSet attributes; field in class:AccessibleAttributeSequence 75 attributes = attr;
|
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ |
H A D | LdapEntry.java | 40 Attributes attributes; field in class:LdapEntry 45 this.attributes = attrs; 50 this.attributes = attrs;
|
/openjdk7/jdk/test/javax/print/applet/applet1/ |
H A D | Applet1PrintServiceLookup.java | 37 AttributeSet attributes) { 44 AttributeSet attributes) { 36 getPrintServices(DocFlavor flavor, AttributeSet attributes) argument 43 getMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes) argument
|
/openjdk7/jdk/test/javax/print/applet/applet2/ |
H A D | Applet2PrintServiceLookup.java | 37 AttributeSet attributes) { 44 AttributeSet attributes) { 36 getPrintServices(DocFlavor flavor, AttributeSet attributes) argument 43 getMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes) argument
|
/openjdk7/jdk/test/javax/print/applet/applet4/ |
H A D | Applet4PrintServiceLookup.java | 37 AttributeSet attributes) { 44 AttributeSet attributes) { 36 getPrintServices(DocFlavor flavor, AttributeSet attributes) argument 43 getMultiDocPrintServices(DocFlavor[] flavors, AttributeSet attributes) argument
|
/openjdk7/jdk/src/share/classes/sun/nio/fs/ |
H A D | DynamicFileAttributeView.java | 33 * attributes by names. 43 * Reads a set of file attributes as a bulk operation. 45 Map<String,Object> readAttributes(String[] attributes) throws IOException; argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/ |
H A D | XML11NSDTDValidator.java | 110 protected final void startNamespaceScope(QName element, XMLAttributes attributes, Augmentations augs) argument 125 int length = attributes.getLength(); 127 String localpart = attributes.getLocalName(i); 128 String prefix = attributes.getPrefix(i); 135 String uri = fSymbolTable.addSymbol(attributes.getValue(i)); 142 new Object[] { attributes.getQName(i)}, 151 new Object[] { attributes.getQName(i)}, 161 new Object[] { attributes.getQName(i)}, 171 new Object[] { attributes.getQName(i)}, 199 // bind the attributes [all...] |
H A D | XMLNSDTDValidator.java | 112 protected final void startNamespaceScope (QName element, XMLAttributes attributes, argument 126 int length = attributes.getLength(); 128 String localpart = attributes.getLocalName(i); 129 String prefix = attributes.getPrefix(i); 136 String uri = fSymbolTable.addSymbol(attributes.getValue(i)); 142 new Object[]{attributes.getQName(i)}, 150 new Object[]{attributes.getQName(i)}, 159 new Object[]{attributes.getQName(i)}, 168 new Object[]{attributes.getQName(i)}, 181 new Object[]{attributes [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | DateFormatter.java | 110 Object getAdjustField(int start, Map attributes) { argument 111 Iterator attrs = attributes.keySet().iterator(); 129 Object adjustValue(Object value, Map attributes, Object key, argument
|
H A D | MutableAttributeSet.java | 30 * A generic interface for a mutable collection of unique attributes. 51 * the given attributes and values. 53 * @param attributes the set of attributes 55 public void addAttributes(AttributeSet attributes); argument 72 * Removes a set of attributes with the given <code>name</code>. 74 * @param attributes the set of attributes 76 public void removeAttributes(AttributeSet attributes); argument 80 * of attributes t [all...] |