Searched refs:attributes (Results 1 - 25 of 377) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DHashDocAttributeSet.java69 * 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 DHashPrintJobAttributeSet.java69 * 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 DHashPrintRequestAttributeSet.java68 * 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 DHashPrintServiceAttributeSet.java68 * 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 DDocAttributeSet.java31 * 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 DPrintJobAttributeSet.java31 * 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 DPrintRequestAttributeSet.java31 * 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 DPrintServiceAttributeSet.java31 * 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/share/classes/javax/print/event/
H A DPrintJobAttributeEvent.java34 * 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 DPrintServiceAttributeEvent.java43 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/instrument/
H A DJarFacade.h33 /* Returns a list of attributes */
37 void freeAttributes(jarAttribute* attributes);
40 char* getAttribute(const jarAttribute* attributes, const char* name);
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dhs_private.d35 #pragma D attributes Private/Private/Common provider hs_private provider
36 #pragma D attributes Private/Private/Unknown provider hs_private module
37 #pragma D attributes Private/Private/Unknown provider hs_private function
38 #pragma D attributes Private/Private/Common provider hs_private name
39 #pragma D attributes Private/Private/Common provider hs_private args
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dhs_private.d34 #pragma D attributes Private/Private/Common provider hs_private provider
35 #pragma D attributes Private/Private/Unknown provider hs_private module
36 #pragma D attributes Private/Private/Unknown provider hs_private function
37 #pragma D attributes Private/Private/Common provider hs_private name
38 #pragma D attributes Private/Private/Common provider hs_private args
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DField.java41 attributes = new Attributes(cr);
46 Attributes attributes) {
50 this.attributes = attributes;
54 return 6 + attributes.byteLength();
64 public final Attributes attributes; field in class:Field
44 Field(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
H A DMethod.java41 attributes = new Attributes(cr);
46 Attributes attributes) {
50 this.attributes = attributes;
54 return 6 + attributes.byteLength();
64 public final Attributes attributes; field in class:Method
44 Method(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
/openjdk7/jdk/test/java/awt/font/TextLayout/
H A DAttributeValuesCastTest.java42 Map attributes = new HashMap();
43 attributes.put("Something","Somethign Else");
44 Font f = new Font(attributes);
/openjdk7/jdk/src/share/classes/javax/print/
H A DMultiDocPrintJob.java34 * 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
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DAssertionData.java57 private final Map<QName, String> attributes; field in class:AssertionData
65 * contain any value nor any attributes.
79 * does not contain any value nor any attributes.
93 * contain a value or attributes.
97 * @param attributes map of model node's &lt;attribute name, attribute value&gt; pairs
105 public static AssertionData createAssertionData(final QName name, final String value, final Map<QName, String> attributes, boolean optional, boolean ignorable) throws IllegalArgumentException { argument
106 return new AssertionData(name, value, attributes, ModelNode.Type.ASSERTION, optional, ignorable);
111 * contains a value or attributes
115 * @param attributes map of model node's &lt;attribute name, attribute value&gt; pairs
121 public static AssertionData createAssertionParameterData(final QName name, final String value, final Map<QName, String> attributes) throw argument
142 AssertionData(QName name, String value, Map<QName, String> attributes, ModelNode.Type type, boolean optional, boolean ignorable) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DFieldOrMethod.java71 protected int attributes_count;// No. of attributes
72 protected Attribute[] attributes; // Collection of attributes field in class:FieldOrMethod
99 attributes = new Attribute[attributes_count];
101 attributes[i] = Attribute.readAttribute(file, constant_pool);
108 * @param attributes Collection of attributes
112 Attribute[] attributes, ConstantPool constant_pool)
119 setAttributes(attributes);
136 attributes[
111 FieldOrMethod(int access_flags, int name_index, int signature_index, Attribute[] attributes, ConstantPool constant_pool) argument
147 setAttributes(Attribute[] attributes) argument
[all...]
/openjdk7/jdk/test/javax/management/loading/
H A DMLetContentTest.java43 Map<String,String> attributes = new HashMap();
44 attributes.put("archive", archive);
45 attributes.put("Archive", "hahaha");
47 attributes.put("code", code);
48 attributes.put("codE", "hihi");
50 attributes.put("object", object);
51 attributes.put("obJect", "toto");
53 attributes.put("name", name);
54 attributes.put("NAME", "titi");
56 attributes
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DMutableAttributeSet.java30 * 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...]
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleAttributeSequence.java32 * 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/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DElementDefinitionImpl.java31 * attributes. In Level 2 it should enable the ChildRule support.
53 /** Default attributes. */
54 protected NamedNodeMapImpl attributes; field in class:ElementDefinitionImpl
64 attributes = new NamedNodeMapImpl(ownerDocument);
97 newnode.attributes = attributes.cloneMap(newnode);
103 * Query the attributes defined on this Element.
117 return attributes;
/openjdk7/jdk/src/share/classes/java/awt/im/
H A DInputMethodRequests.java131 * Gets an iterator providing access to the entire text and attributes
137 * The input method may provide a list of attributes that it is
138 * interested in. In that case, information about other attributes that
145 * @param attributes a list of attributes that the input method is
147 * @return an iterator providing access to the text and its attributes
150 Attribute[] attributes);
173 * The input method may provide a list of attributes that it is
174 * interested in. In that case, information about other attributes that
179 * @param attributes
149 getCommittedText(int beginIndex, int endIndex, Attribute[] attributes) argument
184 cancelLatestCommittedText(Attribute[] attributes) argument
207 getSelectedText(Attribute[] attributes) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapEntry.java40 Attributes attributes; field in class:LdapEntry
45 this.attributes = attrs;
50 this.attributes = attrs;

Completed in 131 milliseconds

1234567891011>>