aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/net/lacolaco/smileessence/entity/Template.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/net/lacolaco/smileessence/entity/Template.java')
-rw-r--r--app/src/main/java/net/lacolaco/smileessence/entity/Template.java84
1 files changed, 84 insertions, 0 deletions
diff --git a/app/src/main/java/net/lacolaco/smileessence/entity/Template.java b/app/src/main/java/net/lacolaco/smileessence/entity/Template.java
new file mode 100644
index 00000000..23c68687
--- /dev/null
+++ b/app/src/main/java/net/lacolaco/smileessence/entity/Template.java
@@ -0,0 +1,84 @@
+/*
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2012-2014 lacolaco.net
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+package net.lacolaco.smileessence.entity;
+
+import android.app.Activity;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.widget.TextView;
+
+import com.activeandroid.Model;
+import com.activeandroid.annotation.Column;
+import com.activeandroid.annotation.Table;
+import com.activeandroid.query.Select;
+
+import net.lacolaco.smileessence.R;
+import net.lacolaco.smileessence.viewmodel.IViewModel;
+
+import java.util.List;
+
+@Table(name = "Templates")
+public class Template extends Model implements IViewModel {
+
+ // ------------------------------ FIELDS ------------------------------
+
+ @Column(name = "Text", notNull = true)
+ public String text;
+ @Column(name = "Count")
+ public int count;
+
+ // -------------------------- STATIC METHODS --------------------------
+
+ public Template() {
+ super();
+ }
+
+ // --------------------------- CONSTRUCTORS ---------------------------
+
+ public Template(String text, int count) {
+ super();
+ this.text = text;
+ this.count = count;
+ }
+
+ public static List<Template> getAll() {
+ return new Select().from(Template.class).orderBy("COUNT DESC").execute();
+ }
+
+ // ------------------------ INTERFACE METHODS ------------------------
+
+
+ // --------------------- Interface IViewModel ---------------------
+
+ @Override
+ public View getView(Activity activity, LayoutInflater inflater, View convertedView) {
+ if (convertedView == null) {
+ convertedView = inflater.inflate(R.layout.menu_item_simple_text, null);
+ }
+ TextView textView = (TextView) convertedView.findViewById(R.id.textView_menuItem_simple);
+ textView.setText(this.text);
+ return convertedView;
+ }
+}