Searched defs:Attribute (Results 1 - 25 of 34) sorted by relevance

12

/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/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.
/openjdk7/jaxp/src/javax/xml/stream/events/
H A DAttribute.java43 public interface Attribute extends XMLEvent { interface in inherits:XMLEvent
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DAttribute.java21 * $Id: Attribute.java,v 1.2.4.1 2005/09/01 10:20:59 pvedula Exp $
32 final class Attribute extends Instruction { class in inherits:Instruction
37 Util.println("Attribute " + _name);
/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/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/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...]
H A DAttributedString.java29 import java.text.AttributedCharacterIterator.Attribute;
143 Map<? extends Attribute, ?> attributes)
233 Attribute[] attributes) {
271 Attribute attributeKey = (Attribute)itr.next();
316 public void addAttribute(Attribute attribute, Object value) {
341 public void addAttribute(Attribute attribute, Object value,
368 public void addAttributes(Map<? extends Attribute, ?> attributes, argument
396 addAttributeRunData((Attribute) entry.getKey(), entry.getValue(), beginRunIndex, endRunIndex);
400 private synchronized void addAttributeImpl(Attribute attribut
142 AttributedString(String text, Map<? extends Attribute, ?> attributes) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttribute.java40 * attributes. The <tt>Attribute</tt> interface represents an attribute associated
64 * Note that updates to <tt>Attribute</tt> (such as adding or removing a
75 public interface Attribute extends Cloneable, java.io.Serializable { interface in inherits:Cloneable,java.io.Serializable
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDAnnotation.java73 final Map<QName,Attribute> attributes = new HashMap<QName,Attribute>();
81 * Attribute.
83 public static class Attribute { class in class:DAnnotation
91 public Attribute(String ns, String localName, String prefix) { method in class:DAnnotation.Attribute
97 public Attribute(String ns, String localName, String prefix, String value, Locator loc) { method in class:DAnnotation.Attribute
164 public Attribute getAttribute( String nsUri, String localName ) {
168 public Attribute getAttribute( QName n ) {
179 public Map<QName,Attribute> getAttributes() {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DOutboundReferenceParameterHeader.java75 private FinalArrayList<Attribute> attributes;
95 Attribute a = attributes.get(i);
113 attributes = new FinalArrayList<Attribute>();
121 attributes.add(new Attribute(namespaceURI,localName,value));
125 attributes.add(new Attribute(AddressingVersion.W3C.nsUri,IS_REFERENCE_PARAMETER,TRUE_VALUE));
326 static final class Attribute { class in class:OutboundReferenceParameterHeader
334 public Attribute(String nsUri, String localName, String value) { method in class:OutboundReferenceParameterHeader.Attribute
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DOutboundStreamHeader.java64 private FinalArrayList<Attribute> attributes;
84 Attribute a = attributes.get(i);
101 attributes = new FinalArrayList<Attribute>();
108 attributes.add(new Attribute(namespaceURI,localName,value));
142 static final class Attribute { class in class:OutboundStreamHeader
150 public Attribute(String nsUri, String localName, String value) { method in class:OutboundStreamHeader.Attribute
H A DStreamHeader.java80 protected static final class Attribute { class in class:StreamHeader
88 public Attribute(String nsUri, String localName, String value) { method in class:StreamHeader.Attribute
102 private final FinalArrayList<Attribute> attributes;
169 Attribute a = attributes.get(i);
229 protected abstract FinalArrayList<Attribute> processHeaderAttributes(XMLStreamReader reader);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DRef.java78 public static interface Attribute { interface in class:Ref
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DAttribute.java66 * Abstract super class for <em>Attribute</em> objects. Currently the
86 public abstract class Attribute implements Cloneable, Node, Serializable { class in inherits:Cloneable,Node,Serializable
92 protected Attribute(byte tag, int name_index, int length, method in class:Attribute
123 /** Add an Attribute reader capable of parsing (user-defined) attributes
150 * @return Attribute
154 public static final Attribute readAttribute(DataInputStream file,
241 * @param Attribute length in bytes.
300 public abstract Attribute copy(ConstantPool constant_pool);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFonts.java30 import java.text.AttributedCharacterIterator.Attribute;
153 public Font deriveFont(final Map<? extends Attribute, ?> attributes) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAttribute.java68 public class Attribute { class
83 Attribute next;
90 protected Attribute(final String type) { method in class:Attribute
125 * {@link Attribute} object, of type {@link #type type}, corresponding to
146 * @return a <i>new</i> {@link Attribute} object corresponding to the given
149 protected Attribute read(
157 Attribute attr = new Attribute(type);
203 Attribute attr = this;
238 Attribute att
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DDelayedRef.java223 public static class Attribute extends DelayedRef implements Ref.Attribute { class in class:DelayedRef
224 public Attribute( PatcherManager manager, Locator loc, SchemaImpl schema, UName name ) { method in class:DelayedRef.Attribute
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DAttribute.java46 public abstract class Attribute implements AnnotationValue { class in inherits:AnnotationValue
51 public Attribute(Type type) { method in class:Attribute
67 public static class Constant extends Attribute {
105 public static class Class extends Attribute {
134 public static class Compound extends Attribute implements AnnotationMirror {
140 public final List<Pair<MethodSymbol,Attribute>> values;
142 List<Pair<MethodSymbol,Attribute>> values) {
164 for (Pair<MethodSymbol, Attribute> value : values) {
180 public Attribute member(Name member) {
181 for (Pair<MethodSymbol,Attribute> pai
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DType.java53 public static final Type Attribute = new NodeType(NodeTest.ATTRIBUTE); field in class:Type
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesImpl.java122 /** Attribute count. */
125 /** Attribute information. */
126 protected Attribute[] fAttributes = new Attribute[4];
132 protected Attribute[] fAttributeTableView;
167 fAttributes[i] = new Attribute();
233 Attribute[] attributes = new Attribute[fAttributes.length + 4];
236 attributes[i] = new Attribute();
266 Attribute[] attribute
1149 static class Attribute { class in class:XMLAttributesImpl
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttribute.java40 public abstract class Attribute { class
75 public Attribute createAttribute(ClassReader cr, int name_index, byte[] data)
83 Class<? extends Attribute> attrClass = standardAttributes.get(name);
87 Constructor<? extends Attribute> constr = attrClass.getDeclaredConstructor(constrArgTypes);
101 standardAttributes = new HashMap<String,Class<? extends Attribute>>();
132 private Map<String,Class<? extends Attribute>> standardAttributes;
136 public static Attribute read(ClassReader cr) throws IOException {
140 protected Attribute(int name_index, int length) { method in class:Attribute
149 public abstract <R,D> R accept(Attribute.Visitor<R,D> visitor, D data);
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataFormatImpl.java110 // Attr name (String) -> Attribute
116 class Attribute { class in class:IIOMetadataFormatImpl
288 private Attribute getAttribute(String elementName, String attrName) {
290 Attribute attr = (Attribute)element.attrMap.get(attrName);
456 Attribute attr = new Attribute();
530 Attribute attr = new Attribute();
589 Attribute att
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLStreamWriterImpl.java533 "Attribute not associated with any element");
537 Attribute attr = new Attribute(value); // Revisit:Dont create new one's. Reuse.-Venu
562 "Attribute not associated with any element");
580 Attribute attr = new Attribute(value);
611 "Attribute not associated with any element");
657 Attribute attr = new Attribute(value);
767 "Namespace Attribute no
2027 class Attribute extends QName { class in class:XMLStreamWriterImpl
2030 Attribute(String value) { method in class:XMLStreamWriterImpl.Attribute
[all...]

Completed in 99 milliseconds

12