當前位置: 首頁>>代碼示例>>Java>>正文


Java IPath.SEPARATOR屬性代碼示例

本文整理匯總了Java中org.eclipse.core.runtime.IPath.SEPARATOR屬性的典型用法代碼示例。如果您正苦於以下問題:Java IPath.SEPARATOR屬性的具體用法?Java IPath.SEPARATOR怎麽用?Java IPath.SEPARATOR使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在org.eclipse.core.runtime.IPath的用法示例。


在下文中一共展示了IPath.SEPARATOR屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: isValid

@Override
public String isValid(String newText) {
	IPath path = new Path(newText);
	String fileExtension = path.getFileExtension();
	String moduleName = path.removeFileExtension().lastSegment();

	if (path.removeFileExtension().segmentCount() < 1 || moduleName.isEmpty()) {
		return "The module name must not be empty.";
	}

	if (!isValidFolderName(path.removeFileExtension().toString())) {
		return "The module name is not a valid file system name.";
	}

	if (fileExtension == null) {
		return "The module name needs to have a valid N4JS file extension.";
	}
	if (!(fileExtension.equals(N4JSGlobals.N4JS_FILE_EXTENSION) ||
			fileExtension.equals(N4JSGlobals.N4JSD_FILE_EXTENSION))) {
		return "Invalid file extension.";
	}
	if (!isModuleFileSpecifier(path)) {
		return "Invalid module file specifier.";
	}
	if (path.segmentCount() > 1) {
		return IPath.SEPARATOR + " is not allowed in a module file specifier.";
	}
	if (treeViewer.getStructuredSelection().getFirstElement() == null) {
		return "Please select a module container";
	}

	return null;
}
 
開發者ID:eclipse,項目名稱:n4js,代碼行數:33,代碼來源:ModuleSpecifierSelectionDialog.java

示例2: isFileSpecifyingModuleSpecifier

/**
 * Returns true if the given module specifier is specifying a file.
 *
 * Returns false for empty specifiers.
 *
 * @param specifier
 *            The module specifier
 */
protected boolean isFileSpecifyingModuleSpecifier(String specifier) {
	return specifier.length() > 0 && specifier.charAt(specifier.length() - 1) != IPath.SEPARATOR;
}
 
開發者ID:eclipse,項目名稱:n4js,代碼行數:11,代碼來源:N4JSClassifierWizardModelValidator.java


注:本文中的org.eclipse.core.runtime.IPath.SEPARATOR屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。