Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 21045 invoked from network); 3 May 2004 08:25:47 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 3 May 2004 08:25:47 -0000 Received: (qmail 10283 invoked by uid 500); 3 May 2004 08:25:19 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 10166 invoked by uid 500); 3 May 2004 08:25:18 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 10152 invoked by uid 500); 3 May 2004 08:25:18 -0000 Received: (qmail 10148 invoked from network); 3 May 2004 08:25:18 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 3 May 2004 08:25:18 -0000 Received: (qmail 20974 invoked by uid 1289); 3 May 2004 08:25:42 -0000 Date: 3 May 2004 08:25:42 -0000 Message-ID: <20040503082542.20973.qmail@minotaur.apache.org> From: rdonkin@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/betwixt/src/test/org/apache/commons/digester/rss TextInput.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N rdonkin 2004/05/03 01:25:42 Added: betwixt/src/test/org/apache/commons/digester/rss TextInput.java Log: Added digester RSS example Revision Changes Path 1.1 jakarta-commons/betwixt/src/test/org/apache/commons/digester/rss/TextInput.java Index: TextInput.java =================================================================== /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.digester.rss; import java.io.PrintWriter; import java.io.Serializable; /** *

Implementation object representing a textinput in the * Rich Site Summary DTD, version 0.91. This class may be subclassed * to further specialize its behavior.

*/ public class TextInput implements Serializable { // ------------------------------------------------------------- Properties /** * The text input description (1-100 characters). */ protected String description = null; public String getDescription() { return (this.description); } public void setDescription(String description) { this.description = description; } /** * The text input link (1-500 characters). */ protected String link = null; public String getLink() { return (this.link); } public void setLink(String link) { this.link = link; } /** * The text input field name (1-100 characters). */ protected String name = null; public String getName() { return (this.name); } public void setName(String name) { this.name = name; } /** * The text input submit button label (1-100 characters). */ protected String title = null; public String getTitle() { return (this.title); } public void setTitle(String title) { this.title = title; } // -------------------------------------------------------- Package Methods /** * Render this channel as XML conforming to the RSS 0.91 specification, * to the specified writer. * * @param writer The writer to render output to */ void render(PrintWriter writer) { writer.println(" "); writer.print(" "); writer.print(title); writer.println(""); writer.print(" "); writer.print(description); writer.println(""); writer.print(" "); writer.print(name); writer.println(""); writer.print(" "); writer.print(link); writer.println(""); writer.println(" "); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org