summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/store-android/src/services/atom/xml/CartItemHandler.java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-05-26 22:50:31 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-05-26 22:50:31 +0000
commit090512087de4e4a2bbc346a9bd0ada61a6f337bf (patch)
treeb1621b1b3ceaeb61ba2593926d01726f0503a91c /branches/sca-java-1.x/samples/store-android/src/services/atom/xml/CartItemHandler.java
parentd8688ef4eb4ef025403952e37194c896a3337aab (diff)
TUSCANY-3060 - Applying SANNI Lookman patch with updates to Android Store UI
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@778916 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/samples/store-android/src/services/atom/xml/CartItemHandler.java138
1 files changed, 138 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/samples/store-android/src/services/atom/xml/CartItemHandler.java b/branches/sca-java-1.x/samples/store-android/src/services/atom/xml/CartItemHandler.java
new file mode 100644
index 0000000000..58ba872f87
--- /dev/null
+++ b/branches/sca-java-1.x/samples/store-android/src/services/atom/xml/CartItemHandler.java
@@ -0,0 +1,138 @@
+/**
+ *
+ */
+package services.atom.xml;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.xml.sax.Attributes;
+import org.xml.sax.SAXException;
+import org.xml.sax.helpers.DefaultHandler;
+
+import android.util.Log;
+
+import services.Item;
+
+
+/**
+ * @author Lookouster
+ *
+ */
+public class CartItemHandler extends DefaultHandler {
+
+
+
+ private boolean in_entry = false;
+ private boolean in_id = false;
+ private boolean in_title = false;
+ private boolean in_content=false;
+ private boolean in_item=false;
+ private boolean in_link=false;
+ private boolean in_name=false;
+ private boolean in_price=false;
+ private String currentKey,currentName,currentPrice;
+ private List<Item> items=new ArrayList<Item>();
+
+
+
+
+ /**
+ * @return the currentName
+ */
+ public String getCurrentName() {
+ return currentName;
+ }
+
+
+ /**
+ * @return the currentPrice
+ */
+ public String getCurrentPrice() {
+ return currentPrice;
+ }
+
+
+ public void startElement(String namespaceURI, String localName,
+ String qName, Attributes atts) throws SAXException {
+ if (localName.equalsIgnoreCase("entry")) {
+ this.in_entry = true;
+ }else if (localName.equalsIgnoreCase("id")) {
+ this.in_id = true;
+ }else if (localName.equalsIgnoreCase("title")) {
+ this.in_title = true;
+ }else if (localName.equalsIgnoreCase("content")) {
+ this.in_content = true;
+ }else if (localName.equalsIgnoreCase("item")) {
+ this.in_item = true;
+ }else if (localName.equals("link")) {
+ this.in_link=true;
+ }
+ else if (localName.equalsIgnoreCase("name")) {
+ this.in_name=true;
+ }
+ else if (localName.equalsIgnoreCase("price")) {
+ this.in_price=true;
+ }
+ }
+
+
+ public void endElement(String namespaceURI, String localName, String qName)
+ throws SAXException {
+ if (localName.equalsIgnoreCase("id"))
+ this.in_id = false;
+ if (localName.equalsIgnoreCase("entry")) {
+ this.in_entry = false;
+ }else if (localName.equalsIgnoreCase("id")) {
+ this.in_id = false;
+ }else if (localName.equalsIgnoreCase("title")) {
+ this.in_title = false;
+ }else if (localName.equalsIgnoreCase("content")) {
+ this.in_content = false;
+ }else if (localName.equalsIgnoreCase("item")) {
+ this.in_item = false;
+ items.add(new Item(currentName, currentPrice, currentKey));
+ }else if (localName.equalsIgnoreCase("link")) {
+ this.in_link=false;
+ }
+ else if (localName.equalsIgnoreCase("name")) {
+ this.in_name=false;
+ }
+ else if (localName.equalsIgnoreCase("price")) {
+ this.in_price=false;
+ }
+ }
+
+
+ public void characters(char ch[], int start, int length) {
+
+ if(this.in_id){
+ if(this.in_entry)
+ {
+ currentKey=new String(ch,start, length);
+ Log.e("kjhkh", currentKey);
+ }
+
+ }
+ if(this.in_name)
+ currentName=new String(ch,start, length);
+ if(this.in_price)
+ currentPrice=new String(ch,start, length);
+
+ }
+
+ /**
+ * @return the key
+ */
+ public String getCurrentKey() {
+ return currentKey;
+ }
+
+ public Item[] getItemsCollection()
+ {
+ return items.toArray(new Item[items.size()]);
+ }
+
+
+
+}