summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaeyoung Son <taeyoung2.son@samsung.com>2014-07-03 18:00:47 +0900
committerTaeyoung Son <taeyoung2.son@samsung.com>2014-07-04 15:22:58 +0900
commit342efcfd4f19cc82e1b93853177ba1f651bc36fe (patch)
treecc5dd7798e92455553cd4666faf47e61fa18bd60
parentddc7a98cca9a028a7db8334f0f42ce4d4b1c03a4 (diff)
downloadcommon-eplugin-342efcfd4f19cc82e1b93853177ba1f651bc36fe.tar.gz
common-eplugin-342efcfd4f19cc82e1b93853177ba1f651bc36fe.tar.bz2
common-eplugin-342efcfd4f19cc82e1b93853177ba1f651bc36fe.zip
MISC: Added getting executable name method to ITizenNativeXMLStore
For using hybrid app, the method should be moved. Change-Id: If108abd82093e24c5a1b6eb853f3f883163e2d2b Signed-off-by: Taeyoung Son <taeyoung2.son@samsung.com>
-rw-r--r--org.tizen.common/src/org/tizen/common/ITizenNativeXMLStore.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/org.tizen.common/src/org/tizen/common/ITizenNativeXMLStore.java b/org.tizen.common/src/org/tizen/common/ITizenNativeXMLStore.java
index b465326a6..5b32d9c34 100644
--- a/org.tizen.common/src/org/tizen/common/ITizenNativeXMLStore.java
+++ b/org.tizen.common/src/org/tizen/common/ITizenNativeXMLStore.java
@@ -27,6 +27,7 @@ package org.tizen.common;
import java.io.File;
import java.util.Collection;
+import java.util.List;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
@@ -107,5 +108,10 @@ public interface ITizenNativeXMLStore {
* @return application's package ID.
*/
public String getPkgId();
-
+
+ /**
+ * Returns application's executable files.
+ * @return application's executable files.
+ */
+ public List<String> getExecutableNames();
}