* @author Kangho Kim{@literal <kh5325.kim@samsung.com>} (S-Core)\r
* @author Yoonki Park <yoonki.park@samsung.com>\r
*/\r
-public interface IApplicationConfiguration {\r
- /**\r
- * Returns a native's default build configuration.\r
- * \r
- * Return <code>null</code> if no values.\r
- * \r
- * @return default build configuration\r
- */\r
- String getDefaultConfiguration();\r
-\r
+public interface IApplicationConfiguration extends ITizenNativeProject {\r
/**\r
* Returns a native's binary name.\r
* \r
- * Return <code>null</code> if no values.\r
- * \r
- * @return a binary name\r
+ * @return a binary name, <code>null</code> if no values.\r
*/\r
String getBinaryName();\r
\r
/**\r
- * Create a appid.\r
- * \r
- * Return <code>null</code> if no values.\r
+ * Creates a appid.\r
* \r
- * @return a new appid\r
+ * @return a new appid, <code>null</code> if no values\r
*/\r
String generateAppId();\r
\r
/**\r
- * Return the appid from a manifest.xml.\r
- * \r
- * Return <code>null</code> if no values.\r
- * \r
- * @return a appid\r
- */\r
- String getAppId();\r
-\r
- /**\r
- * Return a project type which is supported by Tizen.\r
- * \r
- * @return a project type\r
- */\r
- TizenProjectType getTizenProjectType();\r
-\r
- /**\r
* Returns a current build architecture.\r
*\r
- * Return <code>null</code> if no values.\r
- *\r
- * @return a build architecture\r
+ * @return a build architecture, <code>null</code> if no values.\r
*/\r
String getBuildArchitecture();\r
-}
\ No newline at end of file
+}\r
* Returns build configuration list.
* @return a build configuration list
*/
- public List<String> getBuildConfiguration();
+ public List<String> getBuildConfigurations();
/**
* Returns default build configuration name.
- * @return String
+ * @return a default build configuration name
*/
public String getDefaultBuildConfiguration();
}