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/21 10:30:03 UTC

svn commit: r901615 - /commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/catalog/Book.java

Author: simonetripodi
Date: Thu Jan 21 09:29:41 2010
New Revision: 901615

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

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

Added: commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/catalog/Book.java
URL: http://svn.apache.org/viewvc/commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/catalog/Book.java?rev=901615&view=auto
==============================================================================
--- commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/catalog/Book.java (added)
+++ commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/catalog/Book.java Thu Jan 21 09:29:41 2010
@@ -0,0 +1,126 @@
+/*
+ * 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.catalog;
+
+import org.apache.commons.digester.annotations.BeanPropertySetter;
+import org.apache.commons.digester.annotations.FactoryCreate;
+
+/**
+ * 
+ *
+ * @version $Id$
+ * @since 2.1
+ */
+@FactoryCreate(
+    pattern = "catalog/book",
+    factoryClass = BookFactory.class
+)
+public final class Book implements Item {
+
+    private final String isbn;
+
+    @BeanPropertySetter(pattern = "catalog/book/title")
+    private String title;
+
+    @BeanPropertySetter(pattern = "catalog/book/author")
+    private String author;
+
+    @BeanPropertySetter(pattern = "catalog/book/desc")
+    private String desc;
+
+    public Book(String isbn) {
+        this.isbn = isbn;
+    }
+
+    public String getTitle() {
+        return this.title;
+    }
+
+    public void setTitle(String title) {
+        this.title = title;
+    }
+
+    public String getAuthor() {
+        return this.author;
+    }
+
+    public void setAuthor(String author) {
+        this.author = author;
+    }
+
+    public String getDesc() {
+        return this.desc;
+    }
+
+    public void setDesc(String desc) {
+        this.desc = desc;
+    }
+
+    public String getIsbn() {
+        return this.isbn;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj)
+            return true;
+        if (obj == null)
+            return false;
+        if (getClass() != obj.getClass())
+            return false;
+        Book other = (Book) obj;
+        if (this.author == null) {
+            if (other.getAuthor() != null)
+                return false;
+        } else if (!this.author.equals(other.getAuthor()))
+            return false;
+        if (this.desc == null) {
+            if (other.getDesc() != null)
+                return false;
+        } else if (!this.desc.equals(other.getDesc()))
+            return false;
+        if (this.isbn == null) {
+            if (other.getIsbn() != null)
+                return false;
+        } else if (!this.isbn.equals(other.getIsbn()))
+            return false;
+        if (this.title == null) {
+            if (other.getTitle() != null)
+                return false;
+        } else if (!this.title.equals(other.getTitle()))
+            return false;
+        return true;
+    }
+
+    @Override
+    public String toString() {
+        return "Book [author="
+                + author
+                + ", desc="
+                + desc
+                + ", isbn="
+                + isbn
+                + ", title="
+                + title
+                + "]";
+    }
+
+    public void print() {
+        System.out.println(this.toString());
+    }
+
+}

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

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

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