mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 10:49:24 +02:00
dictionary code refactoring
This commit is contained in:
parent
520736b313
commit
7824ad3482
4 changed files with 100 additions and 74 deletions
|
@ -20,17 +20,21 @@
|
|||
package org.geometerplus.android.fbreader;
|
||||
|
||||
public class PackageInfo {
|
||||
public final String Id;
|
||||
public final String PackageName;
|
||||
public final String ClassName;
|
||||
public final String Title;
|
||||
public final String Argument;
|
||||
public final boolean UseSearchIntend;
|
||||
|
||||
PackageInfo(String packageName, String className, String title, String argument, boolean useSearchIntend) {
|
||||
public final String IntentAction;
|
||||
public final String IntentDataPattern;
|
||||
|
||||
PackageInfo(String id, String packageName, String className, String title, String intentAction, String intentDataPattern) {
|
||||
Id = id;
|
||||
PackageName = packageName;
|
||||
ClassName = className;
|
||||
Title = title;
|
||||
Argument = argument;
|
||||
UseSearchIntend = useSearchIntend;
|
||||
|
||||
IntentAction = intentAction;
|
||||
IntentDataPattern = intentDataPattern;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue