mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
16 lines
443 B
Java
Generated
16 lines
443 B
Java
Generated
// Generated automatically from android.webkit.WebHistoryItem for testing purposes
|
|
|
|
package android.webkit;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
abstract public class WebHistoryItem implements Cloneable
|
|
{
|
|
protected abstract WebHistoryItem clone();
|
|
public WebHistoryItem(){}
|
|
public abstract Bitmap getFavicon();
|
|
public abstract String getOriginalUrl();
|
|
public abstract String getTitle();
|
|
public abstract String getUrl();
|
|
}
|