Searched defs:element (Results 1 - 25 of 263) sorted by relevance

1234567891011

/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A Dpackage-info.java29 * The term "element" in this package is used to refer to program
40 * model of the element being represented must be returned. As this
45 * element. However, the process of translating source code to
52 * javax.lang.model.element.Modifier modifiers} on an element may
98 package javax.lang.model.element;
H A DAnnotationMirror.java26 package javax.lang.model.element;
33 * each element of an annotation type.
H A DParameterizable.java26 package javax.lang.model.element;
31 * A mixin interface for an element that has type parameters.
38 * Returns the formal type parameters of the type element in
H A DQualifiedNameable.java26 package javax.lang.model.element;
29 * A mixin interface for an element that has a qualified name.
36 * Returns the fully qualified name of an element.
38 * @return the fully qualified name of an element
H A DVariableElement.java26 package javax.lang.model.element;
H A DUnknownElementException.java26 package javax.lang.model.element;
31 * Indicates that an unknown kind of element was encountered. This
34 * {@linkplain ElementVisitor element visitor} to indicate that the
47 private transient Element element; field in class:UnknownElementException
53 * information about the context in which the unknown element was
57 * @param e the unknown element, may be {@code null}
61 super("Unknown element: " + e);
62 element = e;
67 * Returns the unknown element.
71 * @return the unknown element, o
[all...]
H A DAnnotationValue.java26 package javax.lang.model.element;
33 * Represents a value of an annotation type element.
H A DName.java26 package javax.lang.model.element;
62 * @param obj the object to be compared with this element
H A DNestingKind.java26 package javax.lang.model.element;
29 * The <i>nesting kind</i> of a type element.
43 * import javax.lang.model.element.*;
44 * import static javax.lang.model.element.NestingKind.*;
91 * Does this constant correspond to a nested type element?
92 * A <i>nested</i> type element is any that is not top-level.
93 * An <i>inner</i> type element is any nested type element that
H A DPackageElement.java26 package javax.lang.model.element;
29 * Represents a package program element. Provides access to information
72 * element.
H A DTypeParameterElement.java26 package javax.lang.model.element;
34 * or constructor element.
67 * Returns the {@linkplain TypeParameterElement#getGenericElement generic element} of this type parameter.
69 * @return the generic element of this type parameter
/openjdk7/jdk/src/share/classes/java/lang/annotation/
H A DAnnotationTypeMismatchException.java30 * Thrown to indicate that a program has attempted to access an element of
45 * The <tt>Method</tt> object for the annotation element.
47 private final Method element; field in class:AnnotationTypeMismatchException
58 * annotation type element and found data type.
60 * @param element the <tt>Method</tt> object for the annotation element
65 public AnnotationTypeMismatchException(Method element, String foundType) { argument
66 super("Incorrectly typed data found for annotation element " + element
68 this.element
77 public Method element() { method in class:AnnotationTypeMismatchException
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractQueue.java43 * {@link #element element} are based on {@link #offer offer}, {@link
75 * Inserts the specified element into this queue if it is possible to do so
83 * @param e the element to add
85 * @throws IllegalStateException if the element cannot be added at this
87 * @throws ClassCastException if the class of the specified element
89 * @throws NullPointerException if the specified element is null and
91 * @throws IllegalArgumentException if some property of this element
131 public E element() { method in class:AbstractQueue
159 * and adds each element returne
[all...]
H A DQueue.java69 * <td>{@link #element element()}</td>
80 * element which would be removed by a call to {@link #remove() } or
86 * <p>The {@link #offer offer} method inserts an element if possible,
89 * add an element only by throwing an unchecked exception. The
96 * Exactly which element is removed from the queue is a
103 * <p>The {@link #element()} and {@link #peek()} methods return, but do
121 * element-based versions of methods <tt>equals</tt> and
123 * from class <tt>Object</tt>, because element-based equality is not
146 * Inserts the specified element int
209 E element(); method in interface:Queue
[all...]
H A DAbstractSequentialList.java37 * <tt>set(int index, E element)</tt>, <tt>add(int index, E element)</tt> and
78 * Returns the element at the specified position in this list.
81 * indexed element (with <tt>listIterator(index)</tt>). Then, it gets
82 * the element using <tt>ListIterator.next</tt> and returns it.
95 * Replaces the element at the specified position in this list with the
96 * specified element (optional operation).
99 * indexed element (with <tt>listIterator(index)</tt>). Then, it gets
100 * the current element using <tt>ListIterator.next</tt> and replaces it
113 public E set(int index, E element) { argument
144 add(int index, E element) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DElementWrapper.java55 final Element element; field in class:ElementWrapper
58 this.element = e;
/openjdk7/jdk/test/java/lang/annotation/Missing/
H A DMissingTest.java48 * For the annotated element argument, get all its annotations and
53 private static void testAnnotation(AnnotatedElement element, argument
57 annotations = element.getAnnotations();
60 + element);
66 System.err.println("Error: no annotations found on " + element);
72 + element);
79 * For the annotated element argument, get all its annotations and
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DAnnotationDesc.java31 * An annotation associates a value with each element of an annotation type.
57 * Represents an association between an annotation type element
66 * Returns the annotation type element.
68 * @return the annotation type element.
70 AnnotationTypeElementDoc element(); method in interface:AnnotationDesc.ElementValuePair
73 * Returns the value associated with the annotation type element.
75 * @return the value associated with the annotation type element.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXML11NSDTDValidator.java110 protected final void startNamespaceScope(QName element, XMLAttributes attributes, Augmentations augs) argument
116 if (element.prefix == XMLSymbols.PREFIX_XMLNS) {
120 new Object[] { element.rawname },
185 // bind the element
186 String prefix = element.prefix != null ? element.prefix : XMLSymbols.EMPTY_STRING;
187 element.uri = fNamespaceContext.getURI(prefix);
188 if (element.prefix == null && element.uri != null) {
189 element
245 endNamespaceScope(QName element, Augmentations augs, boolean isEmpty) argument
[all...]
H A DXMLNSDTDValidator.java112 protected final void startNamespaceScope (QName element, XMLAttributes attributes, argument
118 if (element.prefix == XMLSymbols.PREFIX_XMLNS) {
121 new Object[]{element.rawname},
191 // bind the element
192 String prefix = element.prefix != null
193 ? element.prefix : XMLSymbols.EMPTY_STRING;
194 element.uri = fNamespaceContext.getURI(prefix);
195 if (element.prefix == null && element.uri != null) {
196 element
253 endNamespaceScope(QName element, Augmentations augs, boolean isEmpty) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/
H A DNamespaces.java43 * @param element The QName of an element.
44 * @return The prefix part of the element name.
46 public static String getPrefix(Element element) { argument
47 String name = element.getTagName();
61 * @param element The QName of an element.
64 public static String getLocalName(Element element) { argument
65 String name = element.getTagName();
104 * element belong
110 getNamespaceURI(Element element) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/
H A DAlgorithm.java53 * @param element
57 public Algorithm(Element element, String BaseURI) argument
59 super(element, BaseURI);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/
H A DKeyName.java38 * @param element
42 public KeyName(Element element, String BaseURI) throws XMLSecurityException { argument
43 super(element, BaseURI);
H A DMgmtData.java38 * @param element
42 public MgmtData(Element element, String BaseURI) argument
44 super(element, BaseURI);
H A DPGPData.java38 * @param element
42 public PGPData(Element element, String BaseURI) throws XMLSecurityException { argument
43 super(element, BaseURI);

Completed in 123 milliseconds

1234567891011