mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
57 lines
2.3 KiB
Java
57 lines
2.3 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.goanna;
|
|
|
|
public class GoannaViewContent implements GoannaView.ContentDelegate {
|
|
/**
|
|
* A Browser has started loading content from the network.
|
|
* @param view The GoannaView that initiated the callback.
|
|
* @param browser The Browser that is loading the content.
|
|
* @param url The resource being loaded.
|
|
*/
|
|
@Override
|
|
public void onPageStart(GoannaView view, GoannaView.Browser browser, String url) {}
|
|
|
|
/**
|
|
* A Browser has finished loading content from the network.
|
|
* @param view The GoannaView that initiated the callback.
|
|
* @param browser The Browser that was loading the content.
|
|
* @param success Whether the page loaded successfully or an error occurred.
|
|
*/
|
|
@Override
|
|
public void onPageStop(GoannaView view, GoannaView.Browser browser, boolean success) {}
|
|
|
|
/**
|
|
* A Browser is displaying content. This page could have been loaded via
|
|
* network or from the session history.
|
|
* @param view The GoannaView that initiated the callback.
|
|
* @param browser The Browser that is showing the content.
|
|
*/
|
|
@Override
|
|
public void onPageShow(GoannaView view, GoannaView.Browser browser) {}
|
|
|
|
/**
|
|
* A page title was discovered in the content or updated after the content
|
|
* loaded.
|
|
* @param view The GoannaView that initiated the callback.
|
|
* @param browser The Browser that is showing the content.
|
|
* @param title The title sent from the content.
|
|
*/
|
|
@Override
|
|
public void onReceivedTitle(GoannaView view, GoannaView.Browser browser, String title) {}
|
|
|
|
/**
|
|
* A link element was discovered in the content or updated after the content
|
|
* loaded that specifies a favicon.
|
|
* @param view The GoannaView that initiated the callback.
|
|
* @param browser The Browser that is showing the content.
|
|
* @param url The href of the link element specifying the favicon.
|
|
* @param size The maximum size specified for the favicon, or -1 for any size.
|
|
*/
|
|
@Override
|
|
public void onReceivedFavicon(GoannaView view, GoannaView.Browser browser, String url, int size) {}
|
|
}
|