[jboss-cvs] jbossretro/src/main/org/jboss/lang ...

Paul Gier pgier at redhat.com
Tue May 1 18:16:39 EDT 2007


  User: pgier   
  Date: 07/05/01 18:16:39

  Added:       src/main/org/jboss/lang  Boolean.java
  Log:
  [JBBUILD-351] Adding Boolean class with jdk15 Boolean functionality
  
  Revision  Changes    Path
  1.1      date: 2007/05/01 22:16:39;  author: pgier;  state: Exp;jbossretro/src/main/org/jboss/lang/Boolean.java
  
  Index: Boolean.java
  ===================================================================
  /*
   * 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;
  
  /**
   * Contains methods added to java.lang.Boolean in 1.5.
   * 
   */
  public class Boolean
  {
     public static boolean parseBoolean(String s) {
        return (s != null) && s.equalsIgnoreCase("true");
     }
  
     public static int compareTo(java.lang.Boolean self, java.lang.Boolean other) {
        return self.booleanValue() == other.booleanValue() ? 0 : self.booleanValue() ? 1 : -1;
     }
  
  }
  
  
  



More information about the jboss-cvs-commits mailing list