Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/org/adblockplus/libadblockplus/AppInfo.java

Issue 6606493159784448: New JNI bindings (Closed)
Patch Set: TRY, abpEngine, statics Created April 1, 2014, 11:40 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/org/adblockplus/libadblockplus/AppInfo.java
diff --git a/src/org/adblockplus/libadblockplus/AppInfo.java b/src/org/adblockplus/libadblockplus/AppInfo.java
new file mode 100644
index 0000000000000000000000000000000000000000..4103eb6bea71bd302ea43aefc14b8727d00e0d3d
--- /dev/null
+++ b/src/org/adblockplus/libadblockplus/AppInfo.java
@@ -0,0 +1,41 @@
+/*
+ * This file is part of Adblock Plus <http://adblockplus.org/>,
+ * Copyright (C) 2006-2014 Eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.adblockplus.libadblockplus;
+
+public class AppInfo
+{
+ public final String id;
+ public final String version;
+ public final String name;
+ public final String application;
+ public final String applicationVersion;
+ public final String locale;
+ public final boolean developmentBuild;
+
+ // TODO: Builder or not?
+ public AppInfo(final String id, final String version, final String name, final String application, final String applicationVersion,
+ final String locale, final boolean developmentBuild)
+ {
+ this.id = id;
+ this.version = version;
+ this.name = name;
+ this.application = application;
+ this.applicationVersion = applicationVersion;
+ this.locale = locale;
+ this.developmentBuild = developmentBuild;
+ }
+}
« no previous file with comments | « src/org/adblockplus/libadblockplus/AdblockPlusException.java ('k') | src/org/adblockplus/libadblockplus/EventCallback.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld