author=ashuk

Bug=50282,44330,53397
r=a=edburns


git-svn-id: svn://10.0.0.236/trunk@82252 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ashuk%eng.sun.com
2000-11-03 01:27:47 +00:00
parent b3387c11cd
commit 49ef0e6172
4 changed files with 133 additions and 23 deletions

View File

@@ -103,23 +103,18 @@ public void findInPage(String stringToFind, boolean forward, boolean matchCase)
ParameterCheck.nonNull(stringToFind);
myFactory.throwExceptionIfNotInitialized();
/* synchronized(myBrowserControl) {
synchronized(myBrowserControl) {
nativeFindInPage(nativeWebShell, stringToFind, forward, matchCase);
}*/
throw new UnimplementedException("\nUnimplementedException -----\n API Function CurrentPage::findInPage is not implemented in Webclient release 0.9\n");
}
}
public void findNextInPage(boolean forward)
{
myFactory.throwExceptionIfNotInitialized();
/* synchronized(myBrowserControl) {
synchronized(myBrowserControl) {
nativeFindNextInPage(nativeWebShell, forward);
}*/
throw new UnimplementedException("\nUnimplementedException -----\n API Function CurrentPage::findNextInPage is not implemented in Webclient release 0.9\n");
}
}
public String getCurrentURL()
@@ -216,11 +211,9 @@ public void resetFind()
{
myFactory.throwExceptionIfNotInitialized();
/* synchronized(myBrowserControl) {
synchronized(myBrowserControl) {
nativeResetFind(nativeWebShell);
}*/
throw new UnimplementedException("\nUnimplementedException -----\n API Function CurrentPage::resetFind is not implemented in Webclient release 0.9\n");
}
}
public void selectAll()
@@ -268,7 +261,7 @@ public static void main(String [] args)
Assert.setEnabled(true);
Log.setApplicationName("CurrentPageImpl");
Log.setApplicationVersion("0.0");
Log.setApplicationVersionDate("$Id: CurrentPageImpl.java,v 1.9 2000-11-02 23:33:12 edburns%acm.org Exp $");
Log.setApplicationVersionDate("$Id: CurrentPageImpl.java,v 1.10 2000-11-03 01:26:59 ashuk%eng.sun.com Exp $");
}