core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java
branchC3_BUILDER_WORK
changeset 1460 26f585ac8a88
parent 1453 bd6bc4d000fd
child 1462 b38491fd06da
--- a/core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java	Fri Jun 11 10:31:54 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java	Fri Jun 11 11:35:13 2010 -0500
@@ -37,6 +37,8 @@
  */
 public class BuildTargetTreeNode extends TreeNode {
 
+	public static final String SDK_NODE_ERROR_EPOCROOT_INVALID = " -- SDK location does not exist! Check Symbian SDKs!"; //$NON-NLS
+
 	/**
 	 * Constructs a new tree node for the given SDK
 	 * @param value the SDK to create the tree node for
@@ -79,7 +81,7 @@
 		ISymbianSDK value = (ISymbianSDK) getValue();
 		File f = new File(value.getEPOCROOT());
 		if (!f.exists()){
-			return value.getUniqueId() + " -- SDK location does not exist! Check Symbian SDKs!";
+			return value.getUniqueId() + SDK_NODE_ERROR_EPOCROOT_INVALID;
 		}
 		return value.getUniqueId();
 	}