热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

net.sf.taverna.t2.workflowmodel.utils.Tools.sanitiseName()方法的使用及代码示例

本文整理了Java中net.sf.taverna.t2.workflowmodel.utils.Tools.sanitiseName()方法的一些代码示例,展示了Tools.sanitiseName(

本文整理了Java中net.sf.taverna.t2.workflowmodel.utils.Tools.sanitiseName()方法的一些代码示例,展示了Tools.sanitiseName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Tools.sanitiseName()方法的具体详情如下:
包路径:net.sf.taverna.t2.workflowmodel.utils.Tools
类名称:Tools
方法名:sanitiseName

Tools.sanitiseName介绍

[英]Checks that the name does not have any characters that are invalid for a Taverna name. The name must contain only the chars[A-Za-z_0-9].
[中]检查名称是否包含任何对酒馆名称无效的字符。名称必须仅包含字符[A-Za-z_0-9]。

代码示例

代码示例来源:origin: net.sf.taverna.t2.activities/external-tool-activity

indesc.setConcatenate(concatenate);
fillInputDescription(indesc, binary, forceCopy, innerType, tag, path);
getInputs().put(Tools.sanitiseName(name), indesc);
} else if (type.equalsIgnoreCase("output")) {
ScriptOutput outdesc = new ScriptOutput();
getOutputs().put(Tools.sanitiseName(name), outdesc);

代码示例来源:origin: net.sf.taverna.t2.core/workflowmodel-impl

activityInputName = Tools.sanitiseName(activityInputName);
activityOutputName = Tools.sanitiseName(activityOutputName);

代码示例来源:origin: net.sf.taverna.t2.ui-activities/component-activity-ui

String newName = Tools.uniqueProcessorName(Tools.sanitiseName(possibleName), d);
currentWorkflowEditList.add(edits.getRenameProcessorEdit(p, newName));

推荐阅读
author-avatar
再生Solo_868
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有