[jboss-cvs] JBossAS SVN: r64851 - projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Aug 24 11:22:45 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-08-24 11:22:45 -0400 (Fri, 24 Aug 2007)
New Revision: 64851

Added:
   projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/AnnotationDefaults.java
Removed:
   projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/Defaults.java
Log:
Rename Defaults to AnnotationDefaults to avoid too many name conflicts.

Copied: projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/AnnotationDefaults.java (from rev 64837, projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/Defaults.java)
===================================================================
--- projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/AnnotationDefaults.java	                        (rev 0)
+++ projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/AnnotationDefaults.java	2007-08-24 15:22:45 UTC (rev 64851)
@@ -0,0 +1,42 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.managed.api.annotation;
+
+/**
+ * Defaults for annotations to test whether object annotations
+ * are at their default value and unitialized.
+ * 
+ * @author Scott.Stark at jboss.org
+ * @version $Revision$
+ */
+public class AnnotationDefaults
+{
+   @ManagementComponent(type="", subtype="")
+   private static class COMP_TYPE_CLASS {}
+   /** The ManagementComponent uninitialized default */
+   public static final ManagementComponent COMP_TYPE = defaultCompType();
+
+   public static synchronized ManagementComponent defaultCompType()
+   {
+      return COMP_TYPE_CLASS.class.getAnnotation(ManagementComponent.class);
+   }
+}

Deleted: projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/Defaults.java
===================================================================
--- projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/Defaults.java	2007-08-24 15:16:26 UTC (rev 64850)
+++ projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/annotation/Defaults.java	2007-08-24 15:22:45 UTC (rev 64851)
@@ -1,41 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2007, Red Hat Middleware LLC, and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.managed.api.annotation;
-
-/**
- * Defaults for annotations
- * 
- * @author Scott.Stark at jboss.org
- * @version $Revision$
- */
-public class Defaults
-{
-   @ManagementComponent(type="", subtype="")
-   private static class COMP_TYPE_CLASS {}
-   /** The ManagementComponent uninitialized default */
-   public static final ManagementComponent COMP_TYPE = defaultCompType();
-
-   public static synchronized ManagementComponent defaultCompType()
-   {
-      return COMP_TYPE_CLASS.class.getAnnotation(ManagementComponent.class);
-   }
-}




More information about the jboss-cvs-commits mailing list