|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2000, 2010 IBM Corporation and others. |
2 |
* Copyright (c) 2000, 2011 IBM Corporation and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
|
Lines 551-560
Link Here
|
| 551 |
return NLS.bind(ServletResources.getString("Nothing_found_in_scope", request), scope); //$NON-NLS-1$ |
551 |
return NLS.bind(ServletResources.getString("Nothing_found_in_scope", request), scope); //$NON-NLS-1$ |
| 552 |
} |
552 |
} |
| 553 |
} |
553 |
} |
| 554 |
|
554 |
|
| 555 |
public String getScopeActiveMessage() { |
555 |
public String getScopeActiveMessage() { |
| 556 |
String scope = getScope(); |
556 |
String scope = getScope(); |
| 557 |
return NLS.bind(ServletResources.getString("activeScope", request), scope); //$NON-NLS-1$ |
557 |
return NLS.bind(ServletResources.getString("activeScope", request), scope); //$NON-NLS-1$ |
|
|
558 |
} |
| 559 |
|
| 560 |
public String getMatchesInScopeMessage() { |
| 561 |
String scope = getScope(); |
| 562 |
return NLS.bind(ServletResources.getString("matchesInScope", request), "" + getResultsCount(), scope); //$NON-NLS-1$ //$NON-NLS-2$ |
| 558 |
} |
563 |
} |
| 559 |
|
564 |
|
| 560 |
/* |
565 |
/* |