-
aQute.bnd.osgi.Annotation
-
com.android.dx.rop.annotation.Annotation
An annotation on an element of a class. Annotations have an associated type and additionally consist of a set of (name, value) pairs, where the names are unique.
-
com.asakusafw.utils.java.model.syntax.Annotation
注釈を表現する基底インターフェース。
- Specified In:
- {@code [JLS3:9.7] Annotations}
-
com.bacoder.parser.java.api.Annotation
-
com.digitalpebble.behemoth.Annotation
Implementation of an Annotation. Has a type , metadata and start and end offsets referring to the position in the text of a @class BehemothDocument.
-
com.dubture.doctrine.annotation.model.Annotation
-
com.dyuproject.protostuff.parser.Annotation
Annotation for messages, enums, services, rpc, fields
@author David Yu
@created Dec 30, 2010
-
com.google.dart.engine.ast.Annotation
Instances of the class {@code Annotation} represent an annotation that can be associated with anAST node.
metadata ::= annotation annotation ::= '@' {@link Identifier qualified} ('.' {@link SimpleIdentifier identifier})? {@link ArgumentList arguments}?
@coverage dart.engine.ast
-
com.google.javascript.jscomp.graph.Annotation
Information that can be annotated to a {@link GraphNode} or{@link Graph.GraphEdge}.
-
com.google.wave.api.Annotation
-
com.intellij.javascript.testFramework.Annotation
-
com.intellij.lang.annotation.Annotation
Defines an annotation, which is displayed as a gutter bar mark or an extra highlight in the editor.
@author max
@see Annotator
@see AnnotationHolder
@see com.intellij.openapi.editor.markup.RangeHighlighter
-
com.lowagie.text.Annotation
An Annotation
is a little note that can be added to a page on a document.
@see Element
@see Anchor
-
com.redhat.ceylon.compiler.typechecker.model.Annotation
-
com.redhat.ceylon.compiler.typechecker.tree.Tree.Annotation
-
com.strobel.decompiler.languages.java.ast.Annotation
-
com.thoughtworks.qdox.model.Annotation
@author Eric Redmond
-
com.twitter.zipkin.gen.Annotation
-
de.pdf_scrutinizer.API.app.doc.Annotation
-
edu.pitt.dbmi.nlp.noble.terminology.Annotation
concept annotation
@author tseytlin
-
edu.pitt.dbmi.nlp.noble.uima.Annotation
-
edu.pitt.dbmi.nobletools.uima.Annotation
-
edu.pitt.terminology.lexicon.Annotation
concept annotation
@author tseytlin
-
edu.stanford.nlp.pipeline.Annotation
An annotation representing a span of text in a document. Basically just an implementation of CoreMap that knows about text. You're meant to use the annotation keys in CoreAnnotations for common cases, but can define bespoke ones for unusual annotations.
@author Jenny Finkel
@author Anna Rafferty
@author bethard
-
eu.admire.dispel.classifiers.Annotation
A representation of the model object 'Annotation'.
@see eu.admire.dispel.classifiers.ClassifiersPackage#getAnnotation()
@model
@generated
-
gate.Annotation
-
gnu.xml.validation.datatype.Annotation
-
jadx.core.dex.attributes.annotations.Annotation
-
java.lang.annotation.Annotation
The common interface extended by all annotation types. Note that an interface that manually extends this one does not define an annotation type. Also note that this interface does not itself define an annotation type.
@author Josh Bloch
@since 1.5
-
java.text.Annotation
An Annotation object is used as a wrapper for a text attribute value if the attribute has annotation characteristics. These characteristics are:
- The text range that the attribute is applied to is critical to the semantics of the range. That means, the attribute cannot be applied to subranges of the text range that it applies to, and, if two adjacent text ranges have the same value for this attribute, the attribute still cannot be applied to the combined range as a whole with this value.
- The attribute or its value usually do no longer apply if the underlying text is changed.
An example is grammatical information attached to a sentence: For the previous sentence, you can say that "an example" is the subject, but you cannot say the same about "an", "example", or "exam". When the text is changed, the grammatical information typically becomes invalid. Another example is Japanese reading information (yomi).
Wrapping the attribute value into an Annotation object guarantees that adjacent text runs don't get merged even if the attribute values are equal, and indicates to text containers that the attribute should be discarded if the underlying text is modified.
@see AttributedCharacterIterator
@since 1.2
-
javassist.bytecode.annotation.Annotation
The
annotation
structure.
An instance of this class is returned by getAnnotations()
in AnnotationsAttribute
or in ParameterAnnotationsAttribute
.
@see javassist.bytecode.AnnotationsAttribute#getAnnotations()
@see javassist.bytecode.ParameterAnnotationsAttribute#getAnnotations()
@see MemberValue
@see MemberValueVisitor
@see AnnotationsWriter
@author Bill Burke
@author Shigeru Chiba
@author Adrian Brock
-
lombok.ast.Annotation
-
net.opentsdb.meta.Annotation
Annotations are used to record time-based notes about timeseries events. Every note must have an associated start_time as that determines where the note is stored.
Annotations may be associated with a specific timeseries, in which case the tsuid must be configured with a valid TSUID. If no TSUID is provided, the annotation is considered a "global" note that applies to everything stored in OpenTSDB. Global annotations are stored in the rows [ 0, 0, 0, <timestamp>] in the same manner as local annotations and timeseries data.
The description field should store a very brief line of information about the event. GUIs can display the description in their "main" view where multiple annotations may appear. Users of the GUI could then click or hover over the description for more detail including the {@link #notes}field.
Custom data can be stored in the custom hash map for user specific information. For example, you could add a "reporter" key with the name of the person who recorded the note.
@since 2.0
-
net.sf.rej.java.attribute.annotations.Annotation
-
net.sourceforge.marathon.screencapture.ImagePanel.Annotation
-
objot.bytecode.Annotation
-
ome.xml.model.Annotation
-
oracle.toplink.libraries.asm.attrs.Annotation
.org/en/jsr/detail?id=175">JSR 175 : A Metadata
Facility for the Java Programming Language
@author Eugene Kuleshov
-
org.apache.harmony.pack200.bytecode.AnnotationsAttribute.Annotation
-
org.apache.harmony.unpack200.bytecode.AnnotationsAttribute.Annotation
A Pack200 archive consists of one or more segments. Each segment is stand-alone, in the sense that every segment has the magic number header; thus, every segment is also a valid archive. However, it is possible to combine (non-GZipped) archives into a single large archive by concatenation alone. Thus all the hard work in unpacking an archive falls to understanding a segment. The first component of a segment is the header; this contains (amongst other things) the expected counts of constant pool entries, which in turn defines how many values need to be read from the stream. Because values are variable width (see {@link Codec}), it is not possible to calculate the start of the next segment, although one of the header values does hint at the size of the segment if non-zero, which can be used for buffering purposes. Note that this does not perform any buffering of the input stream; each value will be read on a byte-by-byte basis. It does not perform GZip decompression automatically; both of these are expected to be done by the caller if the stream has the magic header for GZip streams ( {@link GZIPInputStream#GZIP_MAGIC}). In any case, if GZip decompression is being performed the input stream will be buffered at a higher level, and thus this can read on a byte-oriented basis.
-
org.apache.uima.annotator.regex.Annotation
-
org.apache.uima.jcas.tcas.Annotation
the JCas class model for the CAS type uima.cas.Annotation. It defines two integer valued features indicating the begin and end of the span being annotated. There is also a method to retrieve the spanned text as a string.
-
org.apache.xmlbeans.impl.store.Splay.Annotation
-
org.aspectj.apache.bcel.classfile.annotation.Annotation
An annotation is an immutable object (AnnotationGen is the mutable variant) - it basically contains a list of name-value pairs.
-
org.aspectj.org.eclipse.jdt.internal.compiler.ast.Annotation
Annotation
-
org.biojava.bio.Annotation
Arbitrary annotation associated with one or more objects.
Biological information often does not fit design patterns very well, and can be a jumble of facts and relationships. Annotation objects provide a standard way for you to store this mess as a property of an object.
Annotations may contain keys that have Annotations as values. In this way, annotations can be shared among multiple Annotatable objects, and you can represent semi-structured data.
It is perfectly possible to wrap up almost any tree-like or flat data structure as Annotation.
Other than when using the constructor, you should be able to interact with nearly all Annotation implementations via this API.
@author Matthew Pocock
@author Thomas Down
@see org.biojavax.RichAnnotation
@since 1.0
-
org.cipres.treebase.domain.Annotation
-
org.codehaus.backport175.reader.Annotation
Marker interface for all reader dynamic proxy implementations.
@author
Jonas Bon�r
-
org.dbpedia.spotlight.uima.response.Annotation
POJO for reading the spotlight annotation results from the REST server.
@author Mustafa Nural
-
org.dbpedia.spotlight.web.rest.output.Annotation
-
org.dbwiki.data.annotation.Annotation
A struct containing a date, id, annotaion text and user id.
@author jcheney
-
org.drools.definition.type.Annotation
-
org.eclipse.jdt.core.dom.Annotation
Abstract base class of AST nodes that represent annotations.
Annotation: NormalAnnotation MarkerAnnotation SingleMemberAnnotation
@since 3.1
-
org.eclipse.jdt.internal.compiler.ast.Annotation
Annotation
-
org.eclipse.jdt.internal.core.Annotation
-
org.eclipse.jface.text.source.Annotation
Annotation managed by an {@link org.eclipse.jface.text.source.IAnnotationModel}.
Annotations are typed, can have an associated text and can be marked as persistent and deleted. Annotations which are not explicitly initialized with an annotation type are of type "org.eclipse.text.annotation.unknown"
.
-
org.eclipse.persistence.internal.libraries.asm.attrs.Annotation
.org/en/jsr/detail?id=175">JSR 175 : A Metadata
Facility for the Java Programming Language
@author Eugene Kuleshov
-
org.eclipse.persistence.internal.oxm.schema.model.Annotation
-
org.eclipse.wst.xml.core.internal.contentmodel.annotation.Annotation
-
org.exist.xquery.Annotation
Represents an XQuery 3.0 Annotation
@author Adam Retter
-
org.exolab.castor.xml.schema.Annotation
A class representing the XML Schema Annotation.
@author
Keith Visco
@version $Revision: 7996 $ $Date: 2005-12-13 14:58:48 -0700 (Tue, 13 Dec 2005) $
-
org.exquery.xquery3.Annotation
Representation of an XQuery 3.0 Annotation
@author Adam Retter
-
org.gjt.jclasslib.structures.Annotation
-
org.jboss.jca.common.spi.annotations.repository.Annotation
-
org.jboss.papaki.Annotation
-
org.jf.dexlib2.iface.Annotation
This class represents a specific instance of an annotation applied to a class/field/method/parameter
-
org.jfree.chart.annotations.Annotation
The base interface for annotations. All annotations should support the {@link AnnotationChangeEvent} mechanism by allowing listeners to registerand receive notification of any changes to the annotation.
-
org.jruby.ast.java_signature.Annotation
-
org.kie.api.definition.type.Annotation
-
org.latexlab.docs.client.widgets.AnnotatedPanel.Annotation
-
org.mapstruct.ap.model.Annotation
Represents a Java 5 annotation.
@author Gunnar Morling
-
org.mitre.jcarafe.util.Annotation
-
org.mitre.medfacts.i2b2.annotation.Annotation
@author MCOARR
-
org.nexml.model.Annotation
-
org.objectweb.asm.attrs.Annotation
.org/en/jsr/detail?id=175">JSR 175 : A Metadata
Facility for the Java Programming Language
@author Eugene Kuleshov
-
org.openbel.framework.common.model.Annotation
An annotation applied to a BEL statement, referencing an annotation definition.
@author Anthony Bargnesi {@code
}
-
org.openbel.framework.ws.model.Annotation
3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="annotationType" type="{http://belframework.org/ws/schemas}AnnotationType"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> </restriction> </complexContent> </complexType>
-
org.pau.assetmanager.entities.Annotation
This class represents an annotation (both incomes and expenses) in a book This class contains the key information in the application as it is the basic component in a transaction for all the operations, including transfers and stock market operations.
@author Pau Carré Cardona
-
org.protege.notesapi.notes.Annotation
-
org.sbml.jsbml.Annotation
An Annotation represents the annotations of an {@link SBase} element. Itcontains the list of {@link CVTerm} objects, a {@link Map} containing an XMLname space and a {@link String} containing all the annotation elements ofthis name space.
@author Marine Dumousseau
@author Andreas Dräger
@since 0.8
@version $Rev: 1533 $
-
org.springframework.ide.eclipse.core.java.annotation.Annotation
Holder for annotation meta data.
@author Christian Dupuis
@author Martin Lippert
@since 2.0.5
-
org.teiid.client.plan.Annotation
Annotation describing a decision made during query execution.
-
org.zkoss.zk.ui.metainfo.Annotation
The common interface extended by all annotation types. An annotation consists of a name ( {@link #getName}) and a map of attributes {@link #getAttribute}.
To get the annotation associated with a component, use {@link org.zkoss.zk.ui.sys.ComponentCtrl#getAnnotation(String)}. To get the annotation associated with a component's property, use {@link org.zkoss.zk.ui.sys.ComponentCtrl#getAnnotation(String,String)}
@author tomyeh
@see org.zkoss.zk.ui.sys.ComponentCtrl#getAnnotation(String)
@see org.zkoss.zk.ui.sys.ComponentCtrl#getAnnotation(String,String)
@see org.zkoss.zk.ui.sys.ComponentCtrl#getAnnotations()
@see org.zkoss.zk.ui.sys.ComponentCtrl#getAnnotations(String)
-
pignlproc.markup.Annotation
-
rocks.xmpp.extensions.privatedata.rosternotes.model.Annotation
org/extensions/xep-0145.html">XEP-0145: Annotations
Many modern IM clients offer functionality that enables users to make notes about items in their roster. This comes in handy if users don't have meaningful information in their vCard or if you need to remember additional things related to a roster item.
This specification defines a protocol for storing annotations about a given set of entities. Its primary goal is to enable users to store some personal piece of information with their roster items.
Annotations are stored using server-side private XML storage (the 'jabber:iq:private' namespace).
@author Christian Schudt
@see
XEP-0145: Annotations
@see
XML Schema