Searched defs:fErrorCode (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/docs/examples/src/
H A DSwingDomainListener.java52 { fListener = listener; fErrorCode = 0; }
58 fErrorCode = errorCode;
88 if ( fErrorCode != 0)
89 fListener.operationFailed( fEnumerator, fErrorCode);
113 protected int fErrorCode; field in class:SwingDomainListener
H A DSwingResolveListener.java60 fErrorCode = errorCode;
81 if ( fErrorCode != 0)
82 fListener.operationFailed( fResolver, fErrorCode);
103 protected int fErrorCode; field in class:SwingResolveListener
H A DSwingBrowseListener.java52 { fListener = listener; fErrorCode = 0; }
58 fErrorCode = errorCode;
94 if ( fErrorCode != 0)
95 fListener.operationFailed( fBrowser, fErrorCode);
119 protected int fErrorCode; field in class:SwingBrowseListener
H A DSwingQueryListener.java57 fErrorCode = errorCode;
79 if ( fErrorCode != 0)
80 fListener.operationFailed( fQuery, fErrorCode);
101 protected int fErrorCode; field in class:SwingQueryListener
/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DDNSSD.java490 public AppleDNSSDException( int errorCode) { fErrorCode = errorCode; }
492 public int getErrorCode() { return fErrorCode; }
528 if (fErrorCode <= UNKNOWN && fErrorCode > ( UNKNOWN - kMessages.length))
530 return "DNS-SD Error " + String.valueOf( fErrorCode) + ": " + kMessages[ UNKNOWN - fErrorCode];
533 return super.getMessage() + "(" + String.valueOf( fErrorCode) + ")";
536 protected int fErrorCode; field in class:AppleDNSSDException

Completed in 499 milliseconds