Searched defs:another (Results 1 - 6 of 6) sorted by relevance

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/security/
H A DGenericCredential.java130 boolean equals(Object another); argument
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/packaging/
H A DDeweyDecimal.java71 public boolean isCompatible(DeweyDecimal another) { argument
72 if (another == null) return false;
73 if (major < another.major) {
75 } else if (major == another.major) {
76 if (minor < another.minor) {
78 } else if (minor == another.minor) {
79 return micro >= another.micro;
81 //this.minor> another.minor && this.major==another.major, hence return true
84 //this.major> another
88 isCompatible(String another) argument
[all...]
H A DExtensionRef.java108 * @param another Archive whose specifications will be used for matching.
112 public boolean isSatisfiedBy(Archive another) throws IOException { argument
113 logger.entering(myClassName, "isSatisfiedBy", another); // NOI18N
114 Attributes attrs = another.getManifest().getMainAttributes();
121 logger.log(Level.WARNING, getClass().getName() + ".warning1", new Object[]{e.getMessage(), another.toString()});
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/security/common/
H A DPrincipalImpl.java68 * @param another the Principal to compare with.
72 public boolean equals(Object another) { argument
76 if (another instanceof Group) {
78 } else if (another instanceof PrincipalImpl) {
79 Principal p = (Principal) another;
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/util/
H A DClassPathElement.java122 void append(ClassPathElement another) { argument
126 e.next = another;
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/web/integration/
H A DWebPrincipal.java74 //Copy the password to another reference before storing it to the
98 //Copy the password to another reference and return the reference
124 public boolean equals(Object another) { argument
127 return super.equals(another);
129 return customPrincipal.equals(another);

Completed in 55 milliseconds