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

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DDocAttribute.java43 public interface DocAttribute extends Attribute {
H A DSupportedValuesAttribute.java41 public interface SupportedValuesAttribute extends Attribute {
H A DPrintRequestAttribute.java46 public interface PrintRequestAttribute extends Attribute {
H A DPrintJobAttribute.java42 public interface PrintJobAttribute extends Attribute {
H A DPrintServiceAttribute.java38 public interface PrintServiceAttribute extends Attribute {
H A DAttribute.java31 * Interface {@code Attribute} is the base interface implemented by any and
38 public interface Attribute extends Serializable { interface in inherits:Serializable
47 public Class<? extends Attribute> getCategory();
H A DAttributeSet.java31 * interface {@link Attribute Attribute}.
37 * are {@link Attribute Attribute} objects, and the categories are
43 * {@link Attribute#getCategory() getCategory()} method defined in interface
44 * {@link Attribute Attribute}.
49 * {@code Attribute}.
51 * Attribute sets are used in several places in the Print Service API. In each
110 * interface {@link Attribute Attribut
[all...]
H A DDocAttributeSet.java39 * {@link #add(Attribute) add(Attribute)}, and
62 public boolean add(Attribute attribute);
66 * outcome is the same as if the {@link #add(Attribute) add(Attribute)}
89 * @see #add(Attribute)
H A DPrintRequestAttributeSet.java40 * {@link #add(Attribute) add(Attribute)}, and
63 public boolean add(Attribute attribute);
67 * outcome is the same as if the {@link #add(Attribute) add(Attribute)}
91 * @see #add(Attribute)
H A DPrintServiceAttributeSet.java40 * {@link #add(Attribute) add(Attribute)}, and
63 public boolean add(Attribute attribute);
67 * outcome is the same as if the {@link #add(Attribute) add(Attribute)}
91 * @see #add(Attribute)
H A DPrintJobAttributeSet.java39 * {@link #add(Attribute) add(Attribute)}, and
62 public boolean add(Attribute attribute);
66 * outcome is the same as if the {@link #add(Attribute) add(Attribute)}
89 * @see #add(Attribute)
/openjdk10/jdk/src/java.base/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}
100 private static final Map<String, Attribute> instanceMap = new HashMap<>(7);
103 * Constructs an {@code Attribute} with the given name.
105 * @param name the name of {@code Attribute}
107 protected Attribute(String name) { method in class:AttributedCharacterIterator.Attribute
109 if (this.getClass() == Attribute
[all...]
/openjdk10/langtools/test/tools/javac/generics/rawOverride/
H A DWarn1.java12 interface Attribute<T> { } interface
15 <T> Attribute<T> get(Class<T> category);
19 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...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/
H A DAttributeException.java28 import javax.print.attribute.Attribute;
46 * classes that extend the base interface {@link Attribute Attribute}.
60 public Attribute[] getUnsupportedValues();
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DHTML.java639 public static final class Attribute { class in class:HTML
642 * Creates a new <code>Attribute</code> with the specified
645 * @param id the id of the new <code>Attribute</code>
647 Attribute(String id) { method in class:HTML.Attribute
663 * Attribute "size"
665 public static final Attribute SIZE = new Attribute("size");
668 * Attribute "color"
670 public static final Attribute COLOR = new Attribute("colo
[all...]
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/directory/
H A DAttributes.java98 Attribute get(String attrID);
106 * Each element of the enumeration is of class {@code Attribute}.
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.java47 * When the BasicAttributes class needs to create an Attribute, it
82 transient Hashtable<String,Attribute> attrs = new Hashtable<>(11);
150 attrset.attrs = (Hashtable<String,Attribute>)attrs.clone();
162 public Attribute get(String attrID) {
163 Attribute attr = attrs.get(
168 public NamingEnumeration<Attribute> getAll() {
176 public Attribute put(String attrID, Object val) {
180 public Attribute put(Attribute attr) {
188 public Attribute remov
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DAttributes.java40 public class Attributes implements Iterable<Attribute> {
42 public final Attribute[] attrs;
43 public final Map<String, Attribute> map;
48 attrs = new Attribute[attrs_count];
50 Attribute attr = Attribute.read(cr);
60 public Attributes(ConstantPool constant_pool, Attribute[] attrs) {
63 for (Attribute attr : attrs) {
72 public Attributes(Map<String, Attribute> attributes) {
73 this.attrs = attributes.values().toArray(new Attribute[attribute
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/print/
H A DPrintJobAttributeException.java30 import javax.print.attribute.Attribute;
36 private Attribute attr;
39 PrintJobAttributeException(String s, Class<?> cat, Attribute attrval) {
54 public Attribute[] getUnsupportedValues() {
58 Attribute [] attrs = { attr};
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DAnnotationValueImpl.java30 import com.sun.tools.javac.code.Attribute;
50 private final Attribute attr;
53 AnnotationValueImpl(DocEnv env, Attribute attr) {
75 private class ValueVisitor implements Attribute.Visitor {
78 public void visitConstant(Attribute.Constant c) {
88 public void visitClass(Attribute.Class c) {
93 public void visitEnum(Attribute.Enum e) {
97 public void visitCompound(Attribute.Compound c) {
101 public void visitArray(Attribute.Array a) {
109 public void visitError(Attribute
[all...]
/openjdk10/jdk/test/java/text/AttributedCharacterIterator/Attribute/
H A DReadResolve.java26 @summary Make sure that Attribute & subclasses are serialized and deserialized correctly
30 import java.text.AttributedCharacterIterator.Attribute;
37 testSerializationCycle(Attribute.LANGUAGE);
41 Attribute result = null;
48 throw new RuntimeException("Attribute should throw an exception when given a fake \"language\" attribute. Deserialized object: " + result);
52 static Attribute doSerializationCycle(Attribute attribute) throws Exception {
63 Attribute result = (Attribute) ois.readObject();
68 static void testSerializationCycle(Attribute attribut
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/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
/openjdk10/jdk/src/java.desktop/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);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DSymbolMetadata.java29 import com.sun.tools.javac.code.Attribute.TypeCompound;
63 private static final List<Attribute.Compound> DECL_NOT_STARTED = List.of(null);
64 private static final List<Attribute.Compound> DECL_IN_PROGRESS = List.of(null);
69 private List<Attribute.Compound> attributes = DECL_NOT_STARTED;
75 private List<Attribute.TypeCompound> type_attributes = List.nil();
81 private List<Attribute.TypeCompound> init_type_attributes = List.nil();
87 private List<Attribute.TypeCompound> clinit_type_attributes = List.nil();
98 public List<Attribute.Compound> getDeclarationAttributes() {
102 public List<Attribute.TypeCompound> getTypeAttributes() {
106 public List<Attribute
[all...]

Completed in 187 milliseconds

1234567891011>>