当前位置: 首页>>代码示例>>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;未经允许,请勿转载。