[jboss-cvs] JBossAS SVN: r75538 - projects/aop/trunk/aop/src/main/org/jboss/lang.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jul 9 06:24:52 EDT 2008


Author: kabir.khan at jboss.com
Date: 2008-07-09 06:24:51 -0400 (Wed, 09 Jul 2008)
New Revision: 75538

Removed:
   projects/aop/trunk/aop/src/main/org/jboss/lang/Enum.java
Log:
Get rid of this jdk 1.4 thingy

Deleted: projects/aop/trunk/aop/src/main/org/jboss/lang/Enum.java
===================================================================
--- projects/aop/trunk/aop/src/main/org/jboss/lang/Enum.java	2008-07-09 10:08:19 UTC (rev 75537)
+++ projects/aop/trunk/aop/src/main/org/jboss/lang/Enum.java	2008-07-09 10:24:51 UTC (rev 75538)
@@ -1,71 +0,0 @@
-/*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * 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.lang;
-
-/**
- * Base class for JDK 1.4 Enums
- *
- * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
- * @version $Revision$
- *
- **/
-public abstract class Enum implements java.io.Serializable
-{
-   protected final transient String name;
-   protected final int ordinal;
-
-   protected Enum(String name, int ordinal)
-   {
-      this.name = name;
-      this.ordinal = ordinal;
-   }
-   public String toString()
-   {
-      return name;
-   }
-
-   public String name()
-   {
-      return name;
-   }
-
-   public int ordinal()
-   {
-      return ordinal;
-   }
-
-   public boolean equals(Object o)
-   {
-      if (o == this) return true;
-      if (o == null) return false;
-      if (!(o instanceof Enum)) return false;
-      if (!o.getClass().equals(this.getClass())) return false;
-      Enum en = (Enum)o;
-      return en.ordinal == this.ordinal;
-   }
-
-   public int hashCode()
-   {
-      return name.hashCode();
-   }
-
-}




More information about the jboss-cvs-commits mailing list