You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2010/01/14 09:18:44 UTC

svn commit: r899103 - /commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java

Author: simonetripodi
Date: Thu Jan 14 08:18:44 2010
New Revision: 899103

URL: http://svn.apache.org/viewvc?rev=899103&view=rev
Log:
first checkin of Image class

Added:
    commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java   (with props)

Added: commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java
URL: http://svn.apache.org/viewvc/commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java?rev=899103&view=auto
==============================================================================
--- commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java (added)
+++ commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java Thu Jan 14 08:18:44 2010
@@ -0,0 +1,149 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.annotations.rss;
+
+import org.apache.commons.digester.annotations.BeanPropertySetter;
+import org.apache.commons.digester.annotations.ObjectCreate;
+
+/**
+ * 
+ *
+ * @version $Id$
+ * @since 2.1
+ */
+@ObjectCreate(pattern = "rss/channel/image")
+public final class Image {
+
+    @BeanPropertySetter(pattern = "rss/channel/image/description")
+    private String description;
+
+    @BeanPropertySetter(pattern = "rss/channel/image/width")
+    private int width;
+
+    @BeanPropertySetter(pattern = "rss/channel/image/height")
+    private int height;
+
+    @BeanPropertySetter(pattern = "rss/channel/image/link")
+    private String link;
+
+    @BeanPropertySetter(pattern = "rss/channel/image/title")
+    private String title;
+
+    @BeanPropertySetter(pattern = "rss/channel/image/url")
+    private String url;
+
+    public String getDescription() {
+        return description;
+    }
+
+    public void setDescription(String description) {
+        this.description = description;
+    }
+
+    public int getWidth() {
+        return width;
+    }
+
+    public void setWidth(int width) {
+        this.width = width;
+    }
+
+    public int getHeight() {
+        return height;
+    }
+
+    public void setHeight(int height) {
+        this.height = height;
+    }
+
+    public String getLink() {
+        return link;
+    }
+
+    public void setLink(String link) {
+        this.link = link;
+    }
+
+    public String getTitle() {
+        return title;
+    }
+
+    public void setTitle(String title) {
+        this.title = title;
+    }
+
+    public String getUrl() {
+        return url;
+    }
+
+    public void setUrl(String url) {
+        this.url = url;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj)
+            return true;
+        if (obj == null)
+            return false;
+        if (getClass() != obj.getClass())
+            return false;
+        Image other = (Image) obj;
+        if (description == null) {
+            if (other.description != null)
+                return false;
+        } else if (!description.equals(other.description))
+            return false;
+        if (height != other.height)
+            return false;
+        if (link == null) {
+            if (other.link != null)
+                return false;
+        } else if (!link.equals(other.link))
+            return false;
+        if (title == null) {
+            if (other.title != null)
+                return false;
+        } else if (!title.equals(other.title))
+            return false;
+        if (url == null) {
+            if (other.url != null)
+                return false;
+        } else if (!url.equals(other.url))
+            return false;
+        if (width != other.width)
+            return false;
+        return true;
+    }
+
+    @Override
+    public String toString() {
+        return "Image [description="
+                + description
+                + ", height="
+                + height
+                + ", link="
+                + link
+                + ", title="
+                + title
+                + ", url="
+                + url
+                + ", width="
+                + width + "]";
+    }
+
+}

Propchange: commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/rss/Image.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain