2013-05-09 17:07:53 -07:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
2013-06-25 10:00:09 -07:00
|
|
|
package org.mozilla.gecko.home;
|
2013-05-09 17:07:53 -07:00
|
|
|
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2013-06-25 10:04:00 -07:00
|
|
|
class SearchEngine {
|
2013-05-09 17:07:53 -07:00
|
|
|
public String name;
|
|
|
|
public String identifier;
|
|
|
|
public Bitmap icon;
|
|
|
|
public ArrayList<String> suggestions;
|
|
|
|
|
|
|
|
public SearchEngine(String name, String identifier) {
|
|
|
|
this(name, identifier, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public SearchEngine(String name, String identifier, Bitmap icon) {
|
|
|
|
this.name = name;
|
|
|
|
this.identifier = identifier;
|
|
|
|
this.icon = icon;
|
|
|
|
this.suggestions = new ArrayList<String>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|