-
Ocarina2D.TextEngine.Text
@author majora
-
ag.ion.bion.officelayer.internal.text.Text
Text of a text document.
@author Andreas Br�ker
@version $Revision: 11550 $
-
br.eti.kinoshita.tap4j.model.Text
oshita.eti.br
@since 1.0
-
ca.nengo.ui.lib.world.piccolo.primitives.Text
-
civquest.util.swing.Text
Utility class for writing a text using a Graphics object taking the FontMetrics properties into account.
-
com.alibaba.citrus.util.templatelite.Template.Text
-
com.caucho.xmpp.im.Text
language-encoded text value
element subject { attribute xml:lang? & string }
-
com.cburch.draw.shapes.Text
-
com.codeborne.selenide.conditions.Text
-
com.eclipsesource.jshint.Text
Wrapper class for the text, used to read the content of a text file and to track line offsets.
-
com.extentech.formats.OOXML.Text
text (Comment Text) This element contains rich text which represents the text of a comment. The maximum length for this text is a spreadsheet application implementation detail. A recommended guideline is 32767 chars parent: comment children: t (text), r (Rich Text Run), rPh (phonetic run), phoneticPr (phonetic properties)
-
com.extjs.gxt.ui.client.widget.Text
A component that contains text. The text value is not treated as HTML. The HTML tag used can be configured using {@link #tagName}.
- Inherited Events:
- BoxComponent Move
- BoxComponent Resize
- Component Enable
- Component Disable
- Component BeforeHide
- Component Hide
- Component BeforeShow
- Component Show
- Component Attach
- Component Detach
- Component BeforeRender
- Component Render
- Component BrowserEvent
- Component BeforeStateRestore
- Component StateRestore
- Component BeforeStateSave
- Component SaveState
-
com.google.appengine.api.datastore.Text
-
com.google.gerrit.server.patch.Text
-
com.google.gwt.dom.client.Text
The Text interface represents textual content.
-
com.google.gwt.xml.client.Text
This interface describes text nodes, as might occur between tags. These may also be CDATASection nodes.
-
com.gtranslate.text.Text
-
com.jme.scene.Text
-
com.thoughtworks.selenium.condition.Text
Checks whether text exists either anywhere on the page, or inside a given locator.
-
com.volantis.map.sti.model.Text
Text element model class. All attributes covered by Media model class.
-
com.volantis.mcs.dom.Text
Warning: This is a facade provided for use by user code, not for implementation by user code. User implementations of this interface are highly likely to be incompatible with future releases of the product at both binary and source levels.
@mock.generate base="CharacterNode"
-
de.pdark.decentxml.Text
-
de.sebastianbenz.task.Text
A representation of the model object '
Text'.
The following features are supported:
- {@link de.sebastianbenz.task.Text#getValue Value}
@see de.sebastianbenz.task.TaskPackage#getText()
@model
@generated
-
dk.brics.xact.Text
Text node.
-
dk.i2m.drupal.field.Text
@author Raymond Wanyoike
-
electric.xml.Text
-
httl.ast.Text
Text. (SPI, Prototype, ThreadSafe)
@author @author Liang Fei (liangfei0201 AT gmail DOT com)
-
it.stefanobertini.zebra.cpcl.labelmode.Text
Implements the TEXT command
Description:
The TEXT command is used to place text on a label.
Example:
TEXT {font} {size} {x} {y} {data} {font} The name/number of the font
{size} The size of the font
{x} Horizontal starting position
{y} Vertical starting position
{data} The text to be printed
@author stefano.bertini[at]gmail.com
-
it.stefanobertini.zebra.cpcl.linemode.Text
-
javafx.scene.text.Text
-
javax.jmdns.impl.DNSRecord.Text
-
javax.xml.soap.Text
A representation of a node whose value is text. A Text object may represent text that is content or text that is a comment.
@author Scott.Stark@jboss.org
-
javolution.lang.Text
-
javolution.text.Text
sun.com/j2se/1.5.0/docs/api/java/lang/String.html"> Java String and
.NET String with the following benefits:
- No need for an intermediate {@link StringBuffer}/ {@link StringBuilder} in order to manipulate textual documents (insertion, deletion or concatenation).
- Bug free. They are not plagued by the {@link String#substring} memory leak bug (when small substrings prevent memory from larger string from being garbage collected).
- More flexible as they allows for search and comparison with any
java.lang.String or CharSequence. - Support custom allocation policies (instances allocated on the "stack" when executing in a {@link javolution.context.StackContext StackContext}).
{@link Text} literals should be explicitly {@link #intern interned}. Unlike strings literals and strings-value constant expressions, interning is not implicit. For example:[code] final static Text TRUE = Text.intern("true"); final static Text FALSE = Text.intern("false"); [/code] Interned texts are always allocated in ImmortalMemory (RTSJ VMs).
{@link Text} instances can be {@link #println printed out} directly (no intermediate String allocated). For example:[code] FastTable myTable ...; myTable.toText().println(); // Prints to System.out [/code]
Implementation Note: To avoid expensive copy operations , {@link Text} instances are broken down into smaller immutable sequences, they form a minimal-depth binary tree. The tree is maintained balanced automatically through tree rotations. Insertion/deletions are performed in O[Log(n)] instead of O[n] for StringBuffer/StringBuilder.
@author
Jean-Marie Dautelle
@author Wilfried Middleton
@version 5.3, January 10, 2007
-
jease.cms.domain.Text
Text-Content can be edited as HTML (via a WYSIWYG-Editor) or as plain text (via a simple Textarea). The object remembers which kind of editing mode was used in the plain attribute, so the appropriate editor can be used later on.
-
jodd.lagarto.dom.Text
-
jofc2.model.Text
Implemented by {@link Leaf}s that map to PCDATA in XML.
@author Kohsuke Kawaguchi
-
k8.text.Text
Represents a text layout.
-
kameleon.document.Text
Represents a text part of a text paragraph.
The properties of this instance are applied to the whole text.
Standard properties include : text body and formatting.
@author Fromentin Xavier, Schnell Michaël, Dervin Cyrielle, Brabant Quentin
@version 1.0
@see ElementPropertiesDefaultNames Formatting
-
ket.math.purpose.Text
This represents plain text, which is often written in quotes.
-
kpi.asoiu.model.Text
Created by IntelliJ IDEA. User: Dara Date: 20.11.11 Time: 16:24
-
mf.org.w3c.dom.Text
3.org/TR/2004/REC-xml-20040204#syntax'>character data in XML) of an
Element or
Attr. If there is no markup inside an element's content, the text is contained in a single object implementing the
Text interface that is the only child of the element. If there is markup, it is parsed into the information items (elements, comments, etc.) and
Text nodes that form the list of children of the element.
When a document is first made available via the DOM, there is only one Text node for each block of text. Users may create adjacent Text nodes that represent the contents of a given element without any intervening markup, but should be aware that there is no way to represent the separations between these nodes in XML or HTML, so they will not (in general) persist between DOM editing sessions. The Node.normalize() method merges any such adjacent Text objects into a single node for each block of text.
No lexical check is done on the content of a Text node and, depending on its position in the document, some characters must be escaped during serialization using character references; e.g. the characters "<&" if the textual content is part of an element or of an attribute, the character sequence "]]>" when part of an element, the quotation mark character " or the apostrophe character ' when part of an attribute.
See also the Document Object Model (DOM) Level 3 Core Specification.
-
net.edzard.kinetic.Text
A text shape. Used for writing text. Text formatting options are limited. There does not seem to be a wrap-around option for text boxes.
@author Ed
-
net.sf.laja.template.Text
-
net.sf.saxon.instruct.Text
Handler for xsl:text elements (and simple text nodes) in the stylesheet.
-
net.sourceforge.ganttproject.chart.GraphicPrimitiveContainer.Text
-
net.wigis.graph.dnv.geometry.Text
The Class Text.
@author Brynjar Gretarsson
-
nu.xom.Text
This class represents a run of text. CDATA sections are not treated differently than normal text. Text objects may be adjacent to other Text objects.
@author Elliotte Rusty Harold
@version 1.1b4 fat
-
ofc4j.model.Text
-
org.apache.abdera.ext.serializer.annotation.Text
-
org.apache.abdera.model.Text
3.org/1999/xhtml"><b>Title</b></div></title>.
Per RFC4287:
A Text construct contains human-readable text, usually in small quantities. The content of Text constructs is Language-Sensitive. atomPlainTextConstruct = atomCommonAttributes, attribute type { "text" | "html" }?, text atomXHTMLTextConstruct = atomCommonAttributes, attribute type { "xhtml" }, xhtmlDiv atomTextConstruct = atomPlainTextConstruct | atomXHTMLTextConstruct
-
org.apache.axis.message.Text
A representation of a node whose value is text. A Text object may represent text that is content or text that is a comment.
@author Davanum Srinivas (dims@yahoo.com)
-
org.apache.hadoop.io.Text
This class stores text using standard UTF8 encoding. It provides methods to serialize, deserialize, and compare texts at byte level. The type of length is integer and is serialized using zero-compressed format.
In addition, it provides methods for string traversal without converting the byte array to a string.
Also includes utilities for serializing/deserialing a string, coding/decoding a string, checking if a byte array contains valid UTF8 code, calculating the length of an encoded string.
-
org.apache.isis.viewer.dnd.drawing.Text
-
org.apache.lenya.notification.Text
A translatable text with optional i18n parameters.
-
org.apache.openejb.jee.Text
@version $Revision: 450758 $ $Date: 2006-09-28 03:40:18 -0500 (Thu, 28 Sep 2006) $
-
org.apache.pivot.wtk.media.drawing.Text
Shape representing a block of text.
-
org.apache.sqoop.schema.type.Text
String. JDBC Types: char, varchar, nchar, clob
-
org.apache.stanbol.entityhub.servicesapi.model.Text
Defines a natural language text in a given language.
The text MUST NOT be null nor an empty {@link String}. The language may be null (indicating the default language) or any kind of value. It is recommended to use ISO 639-1 codes (two Letter codes). By definition it is also allowed to use empty strings as language. However implementations of this interface are free to convert the empty language to null.
Implementations of that interface MUST BE immutable
@author Rupert Westenthaler
-
org.apache.struts2.components.Text
Render a I18n text message.
The message must be in a resource bundle with the same name as the action that it is associated with. In practice this means that you should create a properties file in the same package as your Java class with the same name as your class, but with .properties extension.
If the named message is not found in a property file, then the body of the tag will be used as default message. If no body is used, then the stack will be searched, and if a value is returned, it will written to the output. If no value is found on the stack, the key of the message will be written out.
- name* (String) - the i18n message key
Example:
Accessing messages from a given bundle (the i18n Shop example bundle in the first example) and using bundle defined through the framework in the second example.
<!-- First Example --> <s:i18n name="struts.action.test.i18n.Shop"> <s:text name="main.title"/> </s:i18n> <!-- Second Example --> <s:text name="main.title" /> <!-- Third Examlpe --> <s:text name="i18n.label.greetings"> <s:param >Mr Smith</s:param> </s:text>
<-- Fourth Example --> <s:text name="some.key" /> <-- Fifth Example --> <s:text name="some.invalid.key" > The Default Message That Will Be Displayed </s:text>
@see Param
-
org.atomojo.app.client.Text
@author alex
-
org.beangle.struts2.view.components.Text
-
org.boris.expr.function.excel.TEXT
-
org.castor.xmlctf.xmldiff.xml.nodes.Text
A class representing an XML Text node.
@author
Edward Kuns
@version $Revision: 0000 $ $Date: 2007-01-11 00:00:00 -0600 (Thu, 11 Jan 2007) $
@since Castor 1.1
-
org.dbpedia.spotlight.model.Text
-
org.docx4j.wml.Text
as.openxmlformats.org/wordprocessingml/2006/main>ST_String"> <attribute ref="{http://www.w3.org/XML/1998/namespace}space"/> </extension> </simpleContent> </complexType>
-
org.dom4j.Text
Text defines an XML Text node.
@author
James Strachan
@version $Revision: 1.7 $
-
org.drools.guvnor.server.files.Response.Text
-
org.drools.repository.remoteapi.Response.Text
-
org.dspace.app.xmlui.wing.element.Text
-
org.eclipse.graphiti.mm.algorithms.Text
-
org.eclipse.swt.widgets.Text
-
org.elasticsearch.common.text.Text
Text represents a (usually) long text data. We use this abstraction instead of {@link String}so we can represent it in a more optimized manner in memory as well as serializing it over the network as well as converting it to json format.
-
org.exist.xslt.expression.Text
-
org.exoplatform.commons.utils.Text
Represents text that can have several internal representations in order to minimize serialization when it is possible. The bytes returned by the byte oriented method must returned the data encoded with the UTF-8 encoding.
@author
Julien Viet
@version $Revision$
-
org.geomajas.gwt.client.gfx.paintable.Text
Paintable definition for drawing text onto a GraphicsWidget.
@author Pieter De Graef
-
org.geotools.xml.Text
Represents text encountered in the parse tree.
@author Justin Deoliveira, OpenGeo
@source $URL$
-
org.gwtbootstrap3.client.ui.html.Text
Simple text node.
UiBinder example
{@code ... }
@author Sven Jacobs
-
org.hibernate.search.annotations.Text
-
org.htmlparser.Text
This interface represents a piece of the content of the HTML document.
-
org.jdom.Text
Character-based XML content. Provides a modular, parentable method of representing text. Text makes no guarantees about the underlying textual representation of character data, but does expose that data as a Java String.
@version $Revision: 1.25 $, $Date: 2007/11/10 05:28:59 $
@author Brett McLaughlin
@author Jason Hunter
@author Bradley S. Huffman
-
org.jdom2.Text
The FeatureCacheGraphicList is an extended OMGraphicList that knows what types of VPF features it holds. This allows it to be able to use a VPFFeatureGraphicWarehouse to set the proper DrawingAttributes on its contents.
-
org.openhab.model.sitemap.Text
-
org.openqreg.bean.Text
This is the attributes class for the TEXT table.
-
org.pdfclown.documents.contents.objects.Text
fanochizzolini.it)
@since 0.0.4
@version 0.1.0
-
org.restlet.ext.atom.Text
A Text construct contains human-readable text, usually in small quantities. The content of Text constructs is Language-Sensitive.
@author Jerome Louvel
-
org.rometools.feed.module.mediarss.types.Text
<media:text> Allows the inclusion of a text transcript, closed captioning, or lyrics of the media content. Many of these elements are permitted to provide a time series of text. In such cases, it is encouraged, but not required, that the elements be grouped by language and appear in time sequence order based on the start time. Elements can have overlapping start and end times. It has 4 optional attributes.
<media:text type="plain" lang="en" start="00:00:03.000" end="00:00:10.000"> Oh, say, can you see</media:text> <media:text type="plain" lang="en" start="00:00:10.000" end="00:00:17.000">By the dawn's early light</media:text>
type specifies the type of text embedded. Possible values are either 'plain' or 'html'. Default value is 'plain'. All html must be entity-encoded. It is an optional attribute.
lang is the primary language encapsulated in the media object. Language codes possible are detailed in RFC 3066. This attribute is used similar to the xml:lang attribute detailed in the XML 1.0 Specification (Third Edition). It is an optional attribute.
start specifies the start time offset that the text starts being relevant to the media object. An example of this would be for closed captioning. It uses the NTP time code format (see: the time attribute used in <media:thumbnail>). It is an optional attribute.
end specifies the end time that the text is relevant. If this attribute is not provided, and a start time is used, it is expected that the end time is either the end of the clip or the start of the next <media:text> element.
@author cooper
-
org.thymeleaf.dom.Text
A Text node in a Thymeleaf DOM tree.
@author Daniel Fernández
@since 2.0.0
-
org.vaadin.gwtgraphics.client.shape.Text
Embed text into DrawingArea.
@author Henri Kerola / IT Mill Ltd
-
org.w3c.dom.Text
The
Text interface inherits from
CharacterData and represents the textual content (termed character data in XML) of an
Element or
Attr . If there is no markup inside an element's content, the text is contained in a single object implementing the
Text interface that is the only child of the element. If there is markup, it is parsed into the information items (elements, comments, etc.) and
Text nodes that form the list of children of the element.
When a document is first made available via the DOM, there is only one Text node for each block of text. Users may create adjacent Text nodes that represent the contents of a given element without any intervening markup, but should be aware that there is no way to represent the separations between these nodes in XML or HTML, so they will not (in general) persist between DOM editing sessions. The normalize() method on Element merges any such adjacent Text objects into a single node for each block of text.
-
org.waveprotocol.wave.model.document.raw.impl.Text
Mimics a DOM Text node.
-
org.zkoss.openlayers.layer.Text
@author jumperchen
-
palmed.edit.text.Text
This class handles the text.
@author Mathieu Champlon
@version $Revision$ $Date$
-
quickfix.field.Text
-
redis.seek.Text
-
rtype.entity.Text
-
seph.lang.Text
-
stephencarmody.k8.text.Text
-
yarfraw.core.datamodel.Text