Author: gbrown
Date: Tue May 18 12:42:47 2010
New Revision: 945624
URL: http://svn.apache.org/viewvc?rev=945624&view=rev
Log:
Remove @deprecated tags for text-related APIs.
Modified:
pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Block.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedList.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Document.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Element.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNode.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNodeListener.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/List.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Node.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedList.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Paragraph.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/PlainTextSerializer.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Span.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNode.java
pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNodeListener.java
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextArea.java Tue May 18 12:42:47
2010
@@ -258,10 +258,6 @@ public class TextArea extends Component
/**
* Returns the document that backs the text area.
- *
- * @deprecated
- * This method will be removed in a future release. Callers should use
- * {...@link #getText()} instead.
*/
public Document getDocument() {
return document;
@@ -271,10 +267,6 @@ public class TextArea extends Component
* Sets the document that backs the text area.
*
* @param document
- *
- * @deprecated
- * This method will be removed in a future release. Callers should use
- * {...@link #setText(String)} instead.
*/
public void setDocument(Document document) {
Document previousDocument = this.document;
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextAreaListener.java Tue May 18
12:42:47 2010
@@ -40,9 +40,6 @@ public interface TextAreaListener {
*
* @param textArea
* @param previousDocument
- *
- * @deprecated
- * This method will be removed in a future release.
*/
public void documentChanged(TextArea textArea, Document previousDocument);
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInput.java Tue May 18 12:42:47
2010
@@ -286,10 +286,6 @@ public class TextInput extends Component
/**
* Returns the text node that backs the text input's content.
- *
- * @deprecated
- * This method will be removed in a future release. Callers should use
- * {...@link #getText()} instead.
*/
public TextNode getTextNode() {
return textNode;
@@ -299,10 +295,6 @@ public class TextInput extends Component
* Sets the text node that backs the text input's content.
*
* @param textNode
- *
- * @deprecated
- * This method will be removed in a future release. Callers should use
- * {...@link #setText(String)} instead.
*/
public void setTextNode(TextNode textNode) {
if (textNode != null
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/TextInputListener.java Tue May 18
12:42:47 2010
@@ -65,9 +65,6 @@ public interface TextInputListener {
*
* @param textInput
* @param previousTextNode
- *
- * @deprecated
- * This method will be removed in a future release.
*/
public void textNodeChanged(TextInput textInput, TextNode
previousTextNode);
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Block.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Block.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Block.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Block.java Tue May 18
12:42:47 2010
@@ -20,9 +20,6 @@ package org.apache.pivot.wtk.text;
* Abstract base class for block elements.
* <p>
* TODO Add horizontal alignment, margin, and line spacing properties.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public abstract class Block extends Element {
public Block() {
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedList.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedList.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedList.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/BulletedList.java Tue May 18
12:42:47 2010
@@ -18,9 +18,6 @@ package org.apache.pivot.wtk.text;
/**
* Element representing a bulleted list.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public class BulletedList extends List {
/**
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Document.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Document.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Document.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Document.java Tue May 18
12:42:47 2010
@@ -18,9 +18,6 @@ package org.apache.pivot.wtk.text;
/**
* Node representing the root of an element hierarchy.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public class Document extends Block {
public Document() {
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Element.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Element.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Element.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Element.java Tue May 18
12:42:47 2010
@@ -29,9 +29,6 @@ import org.apache.pivot.util.ListenerLis
* TODO Add style properties.
* <p>
* TODO Add style class property.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public abstract class Element extends Node
implements Sequence<Node>, Iterable<Node> {
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ElementListener.java Tue May
18 12:42:47 2010
@@ -20,9 +20,6 @@ import org.apache.pivot.collections.Sequ
/**
* Element listener interface.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public interface ElementListener {
/**
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNode.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNode.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNode.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNode.java Tue May 18
12:42:47 2010
@@ -29,9 +29,6 @@ import org.apache.pivot.wtk.media.Image;
* Node representing an image.
* <p>
* TODO Add a URL setter for the image property.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public class ImageNode extends Node {
private static class ImageNodeListenerList extends
ListenerList<ImageNodeListener>
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNodeListener.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNodeListener.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNodeListener.java
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/ImageNodeListener.java Tue
May 18 12:42:47 2010
@@ -20,9 +20,6 @@ import org.apache.pivot.wtk.media.Image;
/**
* Image node listener interface.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public interface ImageNodeListener {
public void imageChanged(ImageNode imageNode, Image previousImage);
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/List.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/List.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/List.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/List.java Tue May 18 12:42:47
2010
@@ -20,9 +20,6 @@ package org.apache.pivot.wtk.text;
* Abstract base class for list elements.
* <p>
* TODO Add indent and item spacing properties.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public abstract class List extends Block {
/**
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Node.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Node.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Node.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Node.java Tue May 18 12:42:47
2010
@@ -20,9 +20,6 @@ import org.apache.pivot.util.ListenerLis
/**
* Abstract base class for document nodes.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public abstract class Node {
private static class NodeListenerList extends ListenerList<NodeListener>
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NodeListener.java Tue May 18
12:42:47 2010
@@ -18,9 +18,6 @@ package org.apache.pivot.wtk.text;
/**
* Node listener interface.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public interface NodeListener {
/**
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedList.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedList.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedList.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/NumberedList.java Tue May 18
12:42:47 2010
@@ -18,9 +18,6 @@ package org.apache.pivot.wtk.text;
/**
* Element representing a numbered list.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public class NumberedList extends List {
/**
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Paragraph.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Paragraph.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Paragraph.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Paragraph.java Tue May 18
12:42:47 2010
@@ -23,9 +23,6 @@ import org.apache.pivot.collections.Sequ
* Element representing a paragraph.
* <p>
* TODO Add indent property.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public class Paragraph extends Block {
public Paragraph() {
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/PlainTextSerializer.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/PlainTextSerializer.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/PlainTextSerializer.java
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/PlainTextSerializer.java Tue
May 18 12:42:47 2010
@@ -34,9 +34,6 @@ import org.apache.pivot.serialization.Se
/**
* Implementation of the {...@link Serializer} interface that reads and writes
* a plain text document.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public class PlainTextSerializer implements Serializer<Document> {
private Charset charset = null;
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Span.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Span.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Span.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/Span.java Tue May 18 12:42:47
2010
@@ -20,9 +20,6 @@ package org.apache.pivot.wtk.text;
* Element representing an inline range of styled characters.
* <p>
* TODO Add text alignment enum/property.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public class Span extends Element {
public Span() {
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNode.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNode.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNode.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNode.java Tue May 18
12:42:47 2010
@@ -22,9 +22,6 @@ import org.apache.pivot.util.ListenerLis
/**
* Node representing a sequence of characters.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public final class TextNode extends Node {
private class TextNodeCharacterIterator implements CharacterIterator {
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNodeListener.java
URL:
http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNodeListener.java?rev=945624&r1=945623&r2=945624&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNodeListener.java
(original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/text/TextNodeListener.java Tue May
18 12:42:47 2010
@@ -18,9 +18,6 @@ package org.apache.pivot.wtk.text;
/**
* Text node listener interface.
- *
- * @deprecated
- * This class will be removed in a future release.
*/
public interface TextNodeListener {
/**