Added README.txt and GPL Header to Source Files
[DHBWCampusApp.git] / app / src / main / java / de / dhbwloe / campusapp / fragments / MensaTagesplanListAdapter.java
index f0bf2a15e37531e46abc4eaabc502d6a3be4341c..039ab0b7d952ba983daffaba9568d53ec6b35a30 100644 (file)
@@ -1,5 +1,19 @@
+/* MensaTagesplanListAdapter.java
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+ */
 package de.dhbwloe.campusapp.fragments;
-
 import android.content.Context;
 import android.view.LayoutInflater;
 import android.view.View;
@@ -50,6 +64,8 @@ public class MensaTagesplanListAdapter  extends ArrayAdapter<de.dhbwloe.campusap
             holder.txtMenueName.setText(item.getMenuName());
         if(holder.txtName != null)
             holder.txtName.setText(item.getName());
+        if(holder.txtPrice != null)
+            holder.txtPrice.setText(item.getFormatedRolePrice());
 
         return row;
     }
@@ -57,10 +73,12 @@ public class MensaTagesplanListAdapter  extends ArrayAdapter<de.dhbwloe.campusap
     static class RecordHolder {
         TextView txtMenueName;
         TextView txtName;
+        TextView txtPrice;
 
         public RecordHolder(View view) {
             this.txtMenueName = (TextView) view.findViewById(R.id.txtMenueName);
             this.txtName = (TextView) view.findViewById(R.id.txtName);
+            this.txtPrice = (TextView) view.findViewById(R.id.txtMenuePrice);
         }
     }
 }
\ No newline at end of file