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 2011/05/23 22:47:05 UTC

svn commit: r1126739 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java

Author: simonetripodi
Date: Mon May 23 20:47:05 2011
New Revision: 1126739

URL: http://svn.apache.org/viewvc?rev=1126739&view=rev
Log:
first checkin of AnnotationHandlerFactory interface

Added:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java   (with props)

Added: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java?rev=1126739&view=auto
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java (added)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java Mon May 23 20:47:05 2011
@@ -0,0 +1,43 @@
+/* $Id$
+ *
+ * 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.digester3.annotations;
+
+import java.lang.annotation.Annotation;
+import java.lang.reflect.AnnotatedElement;
+
+/**
+ * An object capable of providing instances of {@link AnnotationHandler}.
+ *
+ * @since 3.0
+ */
+public interface AnnotationHandlerFactory
+{
+
+    /**
+     * Return an instance of the specified type.
+     *
+     * @param <H>
+     * @param type the class of the object to be returned.
+     * @return an instance of the specified class.
+     * @throws DigesterLoadingException if any error occurs while creating the
+     *         {@code type} instance.
+     */
+    <H extends AnnotationHandler<? extends Annotation, ? extends AnnotatedElement>> H newInstance( Class<H> type )
+        throws Exception;
+
+}

Propchange: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/AnnotationHandlerFactory.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain