作者热门文章
- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.yoVariables.registry.YoVariableRegistry.getRegistry()
方法的一些代码示例,展示了YoVariableRegistry.getRegistry()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoVariableRegistry.getRegistry()
方法的具体详情如下:
包路径:us.ihmc.yoVariables.registry.YoVariableRegistry
类名称:YoVariableRegistry
方法名:getRegistry
暂无
代码示例来源:origin: us.ihmc/ihmc-yovariables
public YoVariableRegistry getRegistry(NameSpace fullNameSpace)
{
if ((this.nameSpace == null) && (fullNameSpace == null))
{
return this;
}
if ((this.nameSpace != null) && this.nameSpace.equals(fullNameSpace))
{
return this;
}
if ((this.nameSpace == null) || (fullNameSpace.startsWith(this.nameSpace.getName())))
{
for (YoVariableRegistry child : children)
{
YoVariableRegistry registry = child.getRegistry(fullNameSpace);
if (registry != null)
return registry;
}
throw new RuntimeException("Registry not found");
}
return null;
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
private void createAndAddVariableAndSetInitialValue(float initialValue, String fullVariableName)
{
NameSpace fullNameSpace = NameSpace.createNameSpaceFromAFullVariableName(fullVariableName);
YoVariableRegistry registry = rootRegistry.getRegistry(fullNameSpace);
String shortVariableName = NameSpace.stripOffNameSpaceToGetVariableName(fullVariableName);
YoDouble newVar = new YoDouble(shortVariableName, "", registry);
allVariables.addVariable(newVar);
newVar.set(initialValue);
System.out.println("Didn't Find var: " + fullVariableName);
notifyCreatedNewVariablesListeners(newVar);
}
代码示例来源:origin: us.ihmc/simulation-construction-set-test
YoVariableRegistry simpleRegistryFromSCS = scs.getRootRegistry().getRegistry(simpleRegistryNameSpace);
assertEquals(simpleRegistry, simpleRegistryFromSCS);
我正在尝试分发我实现的一个简单的房间预订系统,我尝试进行研究,这就是我想出的..但是当我运行它们并输入不同的端口号时,客户端仍然运行..不应该它仅在端口号与我为服务器输入的端口号匹配时运行?我做错了什
本文整理了Java中us.ihmc.yoVariables.registry.YoVariableRegistry.getRegistry()方法的一些代码示例,展示了YoVariableRegist
我是一名优秀的程序员,十分优秀!