Package org.jboss.deployers.structure.spi.classloading

Examples of org.jboss.deployers.structure.spi.classloading.ModuleCapability


   {
      if (obj == this)
         return true;
      if (obj == null || obj instanceof ModuleCapability == false)
         return false;
      ModuleCapability other = (ModuleCapability) obj;
      if (getName().equals(other.getName()) == false)
         return false;
      return getVersion().equals(other.getVersion());
   }
View Full Code Here


/*     */   {
/*  99 */     if (obj == this)
/* 100 */       return true;
/* 101 */     if ((obj == null) || (!(obj instanceof ModuleCapability)))
/* 102 */       return false;
/* 103 */     ModuleCapability other = (ModuleCapability)obj;
/* 104 */     if (!getName().equals(other.getName()))
/* 105 */       return false;
/* 106 */     return getVersion().equals(other.getVersion());
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.deployers.structure.spi.classloading.ModuleCapability

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.