ttttt
authorcasval <jy.exe.lee@samsung.com>
Thu, 27 Oct 2011 11:08:46 +0000 (20:08 +0900)
committercasval <jy.exe.lee@samsung.com>
Thu, 27 Oct 2011 11:08:46 +0000 (20:08 +0900)
com.samsung.dynamicanalyzer.workbench/Monitors/1.logc [new file with mode: 0644]
com.samsung.dynamicanalyzer/lib/sqlitejdbc-v056.jar [new file with mode: 0644]
com.samsung.dynamicanalyzer/schema/LogCenter.xsd [new file with mode: 0644]
com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/LogCenter.java [new file with mode: 0644]
com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/ObjectFactory.java [new file with mode: 0644]
com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/package-info.java [new file with mode: 0644]

diff --git a/com.samsung.dynamicanalyzer.workbench/Monitors/1.logc b/com.samsung.dynamicanalyzer.workbench/Monitors/1.logc
new file mode 100644 (file)
index 0000000..25109dc
--- /dev/null
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\r
+<LogCenter xmlns="com.samsung.dynamicanalyzer">\r
+       <id>1</id>\r
+       <totalColumnCount>11</totalColumnCount>\r
+       \r
+       <ColumnName>ID</ColumnName>\r
+       <ColumnName>Time</ColumnName>\r
+       <ColumnName>SeqNumber</ColumnName>\r
+       <ColumnName>ApiName</ColumnName>\r
+       <ColumnName>InputParam</ColumnName>\r
+       <ColumnName>Return</ColumnName>\r
+\r
+       <ColumnName>Error</ColumnName>\r
+       <ColumnName>PCAddr</ColumnName>\r
+       <ColumnName>Address</ColumnName>\r
+       <ColumnName>Size</ColumnName>\r
+       <ColumnName>Count</ColumnName>\r
+                       <!-- 10 -->\r
+       <ColumnName>FromAddr</ColumnName>\r
+\r
+       <Type>INTEGER</Type>\r
+       <Type>INTEGER</Type>\r
+       <Type>INTEGER</Type>\r
+       <Type>TEXT</Type>\r
+       <Type>TEXT</Type>\r
+                       \r
+       <Type>TEXT</Type>\r
+       <Type>INTEGER</Type>\r
+       <Type>INTEGER</Type>\r
+       <Type>INTEGER</Type>\r
+       <Type>INTEGER</Type>\r
+                       \r
+       <Type>INTEGER</Type>\r
+</BaseMonitor>
\ No newline at end of file
diff --git a/com.samsung.dynamicanalyzer/lib/sqlitejdbc-v056.jar b/com.samsung.dynamicanalyzer/lib/sqlitejdbc-v056.jar
new file mode 100644 (file)
index 0000000..f95d90e
Binary files /dev/null and b/com.samsung.dynamicanalyzer/lib/sqlitejdbc-v056.jar differ
diff --git a/com.samsung.dynamicanalyzer/schema/LogCenter.xsd b/com.samsung.dynamicanalyzer/schema/LogCenter.xsd
new file mode 100644 (file)
index 0000000..62567f6
--- /dev/null
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<xsd:schema targetNamespace="com.samsung.dynamicanalyzer"\r
+       xmlns="com.samsung.dynamicanalyzer"\r
+       xmlns:sm="com.samsung.dynamicanalyzer"\r
+       xmlns:xsd="http://www.w3.org/2001/XMLSchema"\r
+       elementFormDefault="qualified">\r
+\r
+    <xsd:complexType name="LogCenter">\r
+        <xsd:sequence>\r
+            <xsd:element name="id" type="xsd:string"/>\r
+                       <xsd:element name="totalColumnCount" type="xsd:int"/>\r
+                       <xsd:element name="ColumnName" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>\r
+                       <xsd:element name="type" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>\r
+               </xsd:sequence>\r
+    </xsd:complexType>\r
+</xsd:schema>
\ No newline at end of file
diff --git a/com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/LogCenter.java b/com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/LogCenter.java
new file mode 100644 (file)
index 0000000..589e29c
--- /dev/null
@@ -0,0 +1,155 @@
+//\r
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs \r
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> \r
+// Any modifications to this file will be lost upon recompilation of the source schema. \r
+// Generated on: 2011.10.27 at 07:52:59 ¿ÀÈÄ KST \r
+//\r
+\r
+\r
+package com.samsung.dynamicanalyzer.model;\r
+\r
+import java.util.ArrayList;\r
+import java.util.List;\r
+import javax.xml.bind.annotation.XmlAccessType;\r
+import javax.xml.bind.annotation.XmlAccessorType;\r
+import javax.xml.bind.annotation.XmlElement;\r
+import javax.xml.bind.annotation.XmlType;\r
+\r
+\r
+/**\r
+ * <p>Java class for LogCenter complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * &lt;complexType name="LogCenter">\r
+ *   &lt;complexContent>\r
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ *       &lt;sequence>\r
+ *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>\r
+ *         &lt;element name="totalColumnCount" type="{http://www.w3.org/2001/XMLSchema}int"/>\r
+ *         &lt;element name="ColumnName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>\r
+ *         &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>\r
+ *       &lt;/sequence>\r
+ *     &lt;/restriction>\r
+ *   &lt;/complexContent>\r
+ * &lt;/complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+@XmlAccessorType(XmlAccessType.FIELD)\r
+@XmlType(name = "LogCenter", propOrder = {\r
+    "id",\r
+    "totalColumnCount",\r
+    "columnName",\r
+    "type"\r
+})\r
+public class LogCenter {\r
+\r
+    @XmlElement(required = true)\r
+    protected String id;\r
+    protected int totalColumnCount;\r
+    @XmlElement(name = "ColumnName")\r
+    protected List<String> columnName;\r
+    protected List<String> type;\r
+\r
+    /**\r
+     * Gets the value of the id property.\r
+     * \r
+     * @return\r
+     *     possible object is\r
+     *     {@link String }\r
+     *     \r
+     */\r
+    public String getId() {\r
+        return id;\r
+    }\r
+\r
+    /**\r
+     * Sets the value of the id property.\r
+     * \r
+     * @param value\r
+     *     allowed object is\r
+     *     {@link String }\r
+     *     \r
+     */\r
+    public void setId(String value) {\r
+        this.id = value;\r
+    }\r
+\r
+    /**\r
+     * Gets the value of the totalColumnCount property.\r
+     * \r
+     */\r
+    public int getTotalColumnCount() {\r
+        return totalColumnCount;\r
+    }\r
+\r
+    /**\r
+     * Sets the value of the totalColumnCount property.\r
+     * \r
+     */\r
+    public void setTotalColumnCount(int value) {\r
+        this.totalColumnCount = value;\r
+    }\r
+\r
+    /**\r
+     * Gets the value of the columnName property.\r
+     * \r
+     * <p>\r
+     * This accessor method returns a reference to the live list,\r
+     * not a snapshot. Therefore any modification you make to the\r
+     * returned list will be present inside the JAXB object.\r
+     * This is why there is not a <CODE>set</CODE> method for the columnName property.\r
+     * \r
+     * <p>\r
+     * For example, to add a new item, do as follows:\r
+     * <pre>\r
+     *    getColumnName().add(newItem);\r
+     * </pre>\r
+     * \r
+     * \r
+     * <p>\r
+     * Objects of the following type(s) are allowed in the list\r
+     * {@link String }\r
+     * \r
+     * \r
+     */\r
+    public List<String> getColumnName() {\r
+        if (columnName == null) {\r
+            columnName = new ArrayList<String>();\r
+        }\r
+        return this.columnName;\r
+    }\r
+\r
+    /**\r
+     * Gets the value of the type property.\r
+     * \r
+     * <p>\r
+     * This accessor method returns a reference to the live list,\r
+     * not a snapshot. Therefore any modification you make to the\r
+     * returned list will be present inside the JAXB object.\r
+     * This is why there is not a <CODE>set</CODE> method for the type property.\r
+     * \r
+     * <p>\r
+     * For example, to add a new item, do as follows:\r
+     * <pre>\r
+     *    getType().add(newItem);\r
+     * </pre>\r
+     * \r
+     * \r
+     * <p>\r
+     * Objects of the following type(s) are allowed in the list\r
+     * {@link String }\r
+     * \r
+     * \r
+     */\r
+    public List<String> getType() {\r
+        if (type == null) {\r
+            type = new ArrayList<String>();\r
+        }\r
+        return this.type;\r
+    }\r
+\r
+}\r
diff --git a/com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/ObjectFactory.java b/com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/ObjectFactory.java
new file mode 100644 (file)
index 0000000..1c23547
--- /dev/null
@@ -0,0 +1,47 @@
+//\r
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs \r
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> \r
+// Any modifications to this file will be lost upon recompilation of the source schema. \r
+// Generated on: 2011.10.27 at 07:52:59 ¿ÀÈÄ KST \r
+//\r
+\r
+\r
+package com.samsung.dynamicanalyzer.model;\r
+\r
+import javax.xml.bind.annotation.XmlRegistry;\r
+\r
+\r
+/**\r
+ * This object contains factory methods for each \r
+ * Java content interface and Java element interface \r
+ * generated in the com.samsung.dynamicanalyzer.model package. \r
+ * <p>An ObjectFactory allows you to programatically \r
+ * construct new instances of the Java representation \r
+ * for XML content. The Java representation of XML \r
+ * content can consist of schema derived interfaces \r
+ * and classes representing the binding of schema \r
+ * type definitions, element declarations and model \r
+ * groups.  Factory methods for each of these are \r
+ * provided in this class.\r
+ * \r
+ */\r
+@XmlRegistry\r
+public class ObjectFactory {\r
+\r
+\r
+    /**\r
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.samsung.dynamicanalyzer.model\r
+     * \r
+     */\r
+    public ObjectFactory() {\r
+    }\r
+\r
+    /**\r
+     * Create an instance of {@link LogCenter }\r
+     * \r
+     */\r
+    public LogCenter createLogCenter() {\r
+        return new LogCenter();\r
+    }\r
+\r
+}\r
diff --git a/com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/package-info.java b/com.samsung.dynamicanalyzer/src/com/samsung/dynamicanalyzer/model/package-info.java
new file mode 100644 (file)
index 0000000..b03c8df
--- /dev/null
@@ -0,0 +1,9 @@
+//\r
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs \r
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> \r
+// Any modifications to this file will be lost upon recompilation of the source schema. \r
+// Generated on: 2011.10.27 at 07:52:59 ¿ÀÈÄ KST \r
+//\r
+\r
+@javax.xml.bind.annotation.XmlSchema(namespace = "com.samsung.dynamicanalyzer", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)\r
+package com.samsung.dynamicanalyzer.model;\r