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

/openjdk7/jdk/src/share/classes/java/security/acl/
H A DPermission.java41 * @param another the Permission object to compare with.
45 public boolean equals(Object another); argument
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAllPermissionsImpl.java44 * @param another The Permission object to compare with.
47 public boolean equals(Permission another) { argument
H A DPermissionImpl.java51 * @param another The Permission object to compare with.
54 public boolean equals(Object another) { argument
55 if (another instanceof Permission) {
56 Permission p = (Permission) another;
H A DPrincipalImpl.java50 * @param another the Principal to compare with.
54 public boolean equals(Object another) { argument
55 if (another instanceof PrincipalImpl) {
56 PrincipalImpl p = (PrincipalImpl) another;
H A DGroupImpl.java86 * @param another The group to compare this group to.
95 Group another = (Group)obj;
96 return group.equals(another.toString());
100 public boolean equals(Group another) { argument
101 return equals((Object)another);
/openjdk7/jdk/src/share/classes/java/security/
H A DPrincipal.java44 * @param another principal to compare with.
50 public boolean equals(Object another); argument
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpPrincipal.java55 * if <i>another</i> is an instance of HttpPrincipal, and its
59 public boolean equals (Object another) { argument
60 if (!(another instanceof HttpPrincipal)) {
63 HttpPrincipal theother = (HttpPrincipal)another;
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSNameSpi.java56 * Compares this <code>GSSNameSpi</code> object to another Object
62 * @param another the object to be compared to
66 public boolean equals(Object another); argument
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSName.java170 * @param another the <code>GSSName</code> to compare this name with
180 public boolean equals(GSSName another) throws GSSException; argument
183 * Compares this <code>GSSName</code> object to another Object that might be a
190 * @param another the object to compare this name to
193 public boolean equals(Object another); argument
H A DGSSCredential.java359 * @param another another GSSCredential for comparison to this one
361 public boolean equals(Object another); argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DModalEventFilter.java84 int compareTo(ModalEventFilter another) { argument
85 Dialog anotherDialog = another.getModalDialog();
102 // check if one dialog blocks (directly or indirectly) another
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5NameElement.java221 * Compares this <code>GSSNameSpi</code> object to another Object
227 * @param another the object to be compared to
231 public boolean equals(Object another) { argument
232 if (this == another) {
237 if (another instanceof Krb5NameElement)
238 return equals((Krb5NameElement) another);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSCredentialImpl.java417 * mechanism, one that will have usage INITIATE_ONLY and another
420 * usage INITIATE_ONLY or ACCEPT_ONLY prompting it to make another
458 public boolean equals(Object another) { argument
465 if (this == another) {
469 if (!(another instanceof GSSCredentialImpl)) {
H A DGSSNameImpl.java359 public boolean equals(Object another) { argument
365 if (another instanceof GSSName)
366 return equals((GSSName) another);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java1257 * Compares this X509Serial with another and returns true if they
1296 public int compareTo(X509IssuerSerial another) { argument
1298 .compareTo(another.issuer.toString());
1300 return this.serial.compareTo(another.serial);

Completed in 54 milliseconds