| OLD | NEW | 
| (Empty) |  | 
 |   1 /* | 
 |   2  * This file is part of Adblock Plus <http://adblockplus.org/>, | 
 |   3  * Copyright (C) 2006-2014 Eyeo GmbH | 
 |   4  * | 
 |   5  * Adblock Plus is free software: you can redistribute it and/or modify | 
 |   6  * it under the terms of the GNU General Public License version 3 as | 
 |   7  * published by the Free Software Foundation. | 
 |   8  * | 
 |   9  * Adblock Plus is distributed in the hope that it will be useful, | 
 |  10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 |  11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 |  12  * GNU General Public License for more details. | 
 |  13  * | 
 |  14  * You should have received a copy of the GNU General Public License | 
 |  15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
 |  16  */ | 
 |  17 package org.adblockplus.android.api; | 
 |  18  | 
 |  19 public class AppInfo | 
 |  20 { | 
 |  21   public final String id; | 
 |  22   public final String version; | 
 |  23   public final String name; | 
 |  24   public final String application; | 
 |  25   public final String applicationVersion; | 
 |  26   public final String locale; | 
 |  27   public final boolean developmentBuild; | 
 |  28  | 
 |  29   // TODO: Builder or not? | 
 |  30   public AppInfo(final String id, final String version, final String name, final
     String application, final String applicationVersion, | 
 |  31       final String locale, final boolean developmentBuild) | 
 |  32   { | 
 |  33     this.id = id; | 
 |  34     this.version = version; | 
 |  35     this.name = name; | 
 |  36     this.application = application; | 
 |  37     this.applicationVersion = applicationVersion; | 
 |  38     this.locale = locale; | 
 |  39     this.developmentBuild = developmentBuild; | 
 |  40   } | 
 |  41 } | 
| OLD | NEW |