Searched refs:Attribute (Results 1 - 25 of 426) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DDocAttribute.java46 public interface DocAttribute extends Attribute {
H A DPrintJobAttribute.java44 public interface PrintJobAttribute extends Attribute {
H A DPrintRequestAttribute.java50 public interface PrintRequestAttribute extends Attribute {
H A DPrintServiceAttribute.java40 public interface PrintServiceAttribute extends Attribute {
H A DSupportedValuesAttribute.java43 public interface SupportedValuesAttribute extends Attribute {
H A DAttribute.java31 * Interface Attribute is the base interface implemented by any and every
39 public interface Attribute extends Serializable { interface in inherits:Serializable
48 public Class<? extends Attribute> getCategory();
59 * @return Attribute category name.
H A DAttributeSet.java31 * interface {@link Attribute Attribute}.
38 * Attribute Attribute} objects, and the categories are {@link java.lang.Class
44 * category is determined by calling the {@link Attribute#getCategory()
45 * <CODE>getCategory()</CODE>} method defined in interface {@link Attribute
46 * Attribute}.
50 * it will accept, and combines keys and values into an Attribute.
52 * Attribute sets are used in several places in the Print Service API. In
118 * @param category Attribute categor
[all...]
H A DDocAttributeSet.java40 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
56 * @param attribute Attribute value to be added to this attribute set.
72 public boolean add(Attribute attribute);
77 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
108 * @see #add(Attribute)
H A DPrintJobAttributeSet.java39 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
54 * @param attribute Attribute value to be added to this attribute set.
70 public boolean add(Attribute attribute);
75 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
106 * @see #add(Attribute)
H A DPrintRequestAttributeSet.java40 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
55 * @param attribute Attribute value to be added to this attribute set.
71 public boolean add(Attribute attribute);
76 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
107 * @see #add(Attribute)
H A DPrintServiceAttributeSet.java42 * The {@link #add(Attribute) <CODE>add(Attribute)</CODE>}, and
59 * @param attribute Attribute value to be added to this attribute set.
75 public boolean add(Attribute attribute);
80 * {@link #add(Attribute) <CODE>add(Attribute)</CODE>}
111 * @see #add(Attribute)
H A DHashAttributeSet.java47 * instance. It is assumed to be interface {@link Attribute Attribute}
71 Attribute [] attrs = toArray();
87 Attribute attr;
89 attr = (Attribute)s.readObject();
98 this(Attribute.class);
105 * @param attribute Attribute value to add to the set.
110 public HashAttributeSet(Attribute attribute) {
111 this (attribute, Attribute.class);
130 public HashAttributeSet(Attribute[] attribute
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DAttributedCharacterIterator.java69 * Attribute keys are instances of {@link AttributedCharacterIterator.Attribute} and its
72 * @see AttributedCharacterIterator.Attribute
89 public static class Attribute implements Serializable { class in interface:AttributedCharacterIterator
92 * The name of this {@code Attribute}. The name is used primarily by {@code readResolve}
103 * Constructs an {@code Attribute} with the given name.
105 protected Attribute(String name) { method in class:AttributedCharacterIterator.Attribute
107 if (this.getClass() == Attribute.class) {
149 if (this.getClass() != Attribute.class) {
153 Attribute instanc
[all...]
/openjdk7/langtools/test/tools/javac/generics/rawOverride/
H A DWarn1.java35 interface Attribute<T> { } interface
38 <T> Attribute<T> get(Class<T> category);
42 public Attribute get(Class category) { return null; }
H A DAttributeSet.java34 interface Attribute<T> { } interface
37 <T> Attribute<?> get(Class<T> category);
41 public Attribute get(Class category) { return null; }
45 Attribute<?> get(Class<?> category);
49 public Attribute get(Class category) { return null; }
53 Attribute<?> get(Number category);
57 public Attribute get(Number category) { return null; }
61 Attribute<?> get(Attribute<Number> category);
65 public Attribute ge
[all...]
/openjdk7/jdk/src/share/classes/javax/print/
H A DAttributeException.java28 import javax.print.attribute.Attribute;
51 * {@link javax.print.attribute.Attribute Attribute}.
64 public Attribute[] getUnsupportedValues();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTML.java345 public static final class Attribute { class in class:HTML
348 * Creates a new <code>Attribute</code> with the specified
351 * @param id the id of the new <code>Attribute</code>
353 Attribute(String id) { method in class:HTML.Attribute
367 public static final Attribute SIZE = new Attribute("size");
368 public static final Attribute COLOR = new Attribute("color");
369 public static final Attribute CLEAR = new Attribute("clea
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttributes.java98 Attribute get(String attrID);
106 * Each element of the enumeration is of class <tt>Attribute</tt>.
110 NamingEnumeration<? extends Attribute> getAll();
135 * @return The Attribute with attrID that was previous in this attribute set;
139 Attribute put(String attrID, Object val);
148 * @return The Attribute with the same ID as attr that was previous
153 Attribute put(Attribute attr);
163 * @return The Attribute with the same ID as attrID that was previous
167 Attribute remov
[all...]
H A DBasicAttributes.java46 * When the BasicAttributes class needs to create an Attribute, it
160 public Attribute get(String attrID) {
161 Attribute attr = (Attribute) attrs.get(
166 public NamingEnumeration<Attribute> getAll() {
174 public Attribute put(String attrID, Object val) {
178 public Attribute put(Attribute attr) {
183 return (Attribute)attrs.put(id, attr);
186 public Attribute remov
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttributes.java40 public class Attributes implements Iterable<Attribute> {
42 map = new HashMap<String,Attribute>();
44 attrs = new Attribute[attrs_count];
46 Attribute attr = Attribute.read(cr);
56 public Attributes(ConstantPool constant_pool, Attribute[] attrs) {
58 map = new HashMap<String,Attribute>();
60 Attribute attr = attrs[i];
69 public Iterator<Attribute> iterator() {
73 public Attribute ge
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrintJobAttributeException.java30 import javax.print.attribute.Attribute;
35 private Attribute attr;
38 PrintJobAttributeException(String s, Class cat, Attribute attrval) {
53 public Attribute[] getUnsupportedValues() {
57 Attribute [] attrs = { attr};
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DAttribute.java31 final class Attribute { class
38 Attribute next;
41 * Attribute value that potentially contains dummy prefixes.
45 Attribute(String nsUri, String localName) { method in class:Attribute
/openjdk7/jdk/src/share/classes/java/awt/im/
H A DInputMethodRequests.java31 import java.text.AttributedCharacterIterator.Attribute;
150 Attribute[] attributes);
184 AttributedCharacterIterator cancelLatestCommittedText(Attribute[] attributes);
207 AttributedCharacterIterator getSelectedText(Attribute[] attributes);
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttribute.java39 public class Attribute implements Serializable { class in inherits:Serializable
45 * @serial Attribute name.
50 * @serial Attribute value
56 * Constructs an Attribute object which associates the given attribute name with the given value.
62 public Attribute(String name, Object value) { method in class:Attribute
65 throw new RuntimeOperationsException(new IllegalArgumentException("Attribute name cannot be null "));
92 * Compares the current Attribute Object with another Attribute Object.
94 * @param object The Attribute that the current Attribute i
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAnnotationValueImpl.java31 import com.sun.tools.javac.code.Attribute;
46 private final Attribute attr;
49 AnnotationValueImpl(DocEnv env, Attribute attr) {
71 private class ValueVisitor implements Attribute.Visitor {
74 public void visitConstant(Attribute.Constant c) {
84 public void visitClass(Attribute.Class c) {
89 public void visitEnum(Attribute.Enum e) {
93 public void visitCompound(Attribute.Compound c) {
97 public void visitArray(Attribute.Array a) {
105 public void visitError(Attribute
[all...]

Completed in 94 milliseconds

1234567891011>>