Lines Matching defs:scopes

76 	private Vector scopes = null;
78 ParserBVCollector(Vector scopes) {
79 this.scopes = scopes;
94 DATable.filterScopes(s, scopes, false);
163 * collector for the collecting records if scopes match.
173 private Vector scopes = null; // the scopes we're looking for
175 ScopeBVCollector(Vector records, Vector scopes) {
177 this.scopes = scopes;
188 if (scopes == null) {
193 // Check scopes.
197 int len = scopes.size();
200 if (rscopes.contains(scopes.elementAt(i))) {
919 private Vector inScopes; // Input scopes.
1099 private Vector scopes = null; // the scopes
1121 scopes = nscopes;
1165 * Return the Vector of scopes in which the record is registered.
1171 return scopes;
1220 scopes = newScopes;
1240 scopes + ", " + locale + ", " + urlSig + ", " + attrSig;
1292 // particular URL, set of scopes, and locale is the same object
1451 Vector scopes = rec.getScopes();
1459 scopes,
1478 deregisterInternal(url, scopes, lang);
1511 * @param scopes Vector of scopes in which this record is registered.
1524 Vector scopes, Locale locale,
1532 // Find an existing record, in any set of scopes having this language.
1536 // Deregister from existing scopes, if there is an existing record.
1571 rec = new ServiceRecordInMemory(url, attrs, scopes,
1585 * and locale deregistered, regardless of the number of scopes in
1590 * @param scopes Vector of scopes.
1600 deregister(ServiceURL url, Vector scopes, Hashtable urlSig)
1606 findExistingRecord(url, scopes, null);
1647 deregisterInternal(oldRec.getServiceURL(), scopes, null);
1658 * @param scopes Vector of scopes in which this record is registered.
1667 Vector scopes, Locale locale)
1672 findExistingRecord(url, scopes, lang);
1691 checkForExistingUnderOtherServiceType(url, scopes);
1697 deregisterInternal(url, scopes, lang);
1702 new ServiceRecordInMemory(url, attrs, scopes,
1721 * @param scopes Vector of scopes.
1735 Vector scopes,
1758 // Check existing records to be sure that the scopes
1760 // scopes.
1763 scopes,
1861 * @param scopes The scope names.
1871 findServiceTypes(String namingAuthority, Vector scopes)
1897 if (scopes.contains(keyScope)) {
1935 * of their scopes as value, and the key FS_SIGTABLE
1950 * of their scopes as value, and the key FS_SIGTABLE
1964 Vector scopes,
1973 int i, n = scopes.size();
1990 int regStatus = languageSupported(serviceType, scopes, lang);
2004 String scope = (String)scopes.elementAt(i);
2023 new ParserBVCollector(scopes);
2041 scopes);
2076 * @param scopes The scope names for which to search.
2090 * and any of the scopes are protected.
2095 Vector scopes,
2110 languageSupported(url.getServiceType().toString(), scopes, lang);
2142 int i, n = scopes.size();
2145 String scope = (String)scopes.elementAt(i);
2214 * @param scopes The scope names for which to search.
2226 * signalled if any of the scopes are protected.
2231 Vector scopes,
2243 int regStatus = languageSupported(serviceType, scopes, lang);
2266 int i, n = scopes.size();
2269 String scope = (String)scopes.elementAt(i);
2327 // Search in all scopes.
2336 * Obtains service records with scopes matching from vector scopes.
2337 * If scopes is null, then returns all records.
2339 * @param scopes Vector of scopes to match.
2342 synchronized public Enumeration getServiceRecordsByScope(Vector scopes) {
2348 new ScopeBVCollector(records, scopes);
2433 Vector scopes = rec.getScopes();
2436 // all scopes, but that's OK.
2440 // Go through all scopes.
2442 int i, n = scopes.size();
2445 String scope = (String)scopes.elementAt(i);
2697 deregisterInternal(ServiceURL url, Vector scopes, String lang) {
2721 int i, n = scopes.size();
2724 String scope = (String)scopes.elementAt(i);
2825 // Find an existing record matching the URL by searching in all scopes.
2826 // The record will be the same for all scopes in the same language.
2830 findExistingRecord(ServiceURL surl, Vector scopes, String lang) {
2841 // If scopes is null, then perform the search for all
2842 // scopes in the table. Otherwise perform it for
2843 // all scopes incoming.
2847 if (scopes == null) {
2851 en = scopes.elements();
2987 // Check whether the incoming scopes are the same as existing
2988 // scopes.
2992 Vector scopes,
3006 // We need to have exactly the same scopes as in
3009 int i, n = scopes.size();
3018 if (scopeLevel.get(scopes.elementAt(i)) == null) {
3039 Vector scopes)
3052 // Get hashtable of locale records under scopes. Any scope
3055 Object scope = scopes.elementAt(0);
3135 // Merge old scopes into new.
3256 Vector scopes = rec.getScopes();
3270 scopes,
3403 languageSupported(String type, Vector scopes, String lang) {
3409 int i, n = scopes.size();
3412 String scope = (String)scopes.elementAt(i);