From 0db49eea027ce9bfbcda4fe20ddbbc51c4df6b47 Mon Sep 17 00:00:00 2001 From: "yoonki.park" Date: Wed, 19 Sep 2012 13:37:53 +0900 Subject: [PATCH] [Title] add getAppid method [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] --- .../tizen/common/IApplicationConfiguration.java | 39 +++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/org.tizen.common/src/org/tizen/common/IApplicationConfiguration.java b/org.tizen.common/src/org/tizen/common/IApplicationConfiguration.java index aba0989..89f9035 100755 --- a/org.tizen.common/src/org/tizen/common/IApplicationConfiguration.java +++ b/org.tizen.common/src/org/tizen/common/IApplicationConfiguration.java @@ -32,9 +32,46 @@ package org.tizen.common; * @author Yoonki Park */ public interface IApplicationConfiguration { + /** + * Returns a native's default build configuration. + * + * Return null if no values. + * + * @return default build configuration + */ public String getDefaultConfiguration(); + + /** + * Returns a native's binary name. + * + * Return null if no values. + * + * @return a binary name + */ public String getBinaryName(); + + /** + * Create a appid. + * + * Return null if no values. + * + * @return a new appid + */ public String generateAppId(); + + /** + * Return the appid from a manifest.xml. + * + * Return null if no values. + * + * @return a appid + */ public String getAppId(); + + /** + * Return a project type which is supported by Tizen. + * + * @return a project type + */ public TizenProjectType getTizenProjectType(); -} +} \ No newline at end of file -- 2.7.4