本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicsList.checkLabelNonEmpty()
方法的一些代码示例,展示了YoGraphicsList.checkLabelNonEmpty()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoGraphicsList.checkLabelNonEmpty()
方法的具体详情如下:
包路径:us.ihmc.graphicsDescription.yoGraphics.YoGraphicsList
类名称:YoGraphicsList
方法名:checkLabelNonEmpty
暂无
代码示例来源:origin: us.ihmc/IHMCGraphicsDescription
public YoGraphicsList(String label)
{
checkLabelNonEmpty(label);
this.label = label;
yoGraphics = new ArrayList<YoGraphic>();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public YoGraphicsList(String label, ArrayList<? extends YoGraphic> yoGraphics)
{
checkLabelNonEmpty(label);
this.label = label;
this.yoGraphics = new ArrayList<YoGraphic>(yoGraphics);
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public YoGraphicsList(String label)
{
checkLabelNonEmpty(label);
this.label = label;
yoGraphics = new ArrayList<YoGraphic>();
}
代码示例来源:origin: us.ihmc/IHMCGraphicsDescription
public YoGraphicsList(String label, ArrayList<? extends YoGraphic> yoGraphics)
{
checkLabelNonEmpty(label);
this.label = label;
this.yoGraphics = new ArrayList<YoGraphic>(yoGraphics);
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public YoGraphicsList(String label, YoGraphic yoGraphic)
{
checkLabelNonEmpty(label);
this.label = label;
ArrayList<YoGraphic> yoGraphics = new ArrayList<YoGraphic>(1);
yoGraphics.add(yoGraphic);
this.yoGraphics = yoGraphics;
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public YoGraphicsList(String label, YoGraphic[] yoGraphicsArray)
{
checkLabelNonEmpty(label);
this.label = label;
ArrayList<YoGraphic> yoGraphics = new ArrayList<YoGraphic>(yoGraphicsArray.length);
for (YoGraphic yoGraphic : yoGraphicsArray)
{
yoGraphics.add(yoGraphic);
}
this.yoGraphics = yoGraphics;
}
代码示例来源:origin: us.ihmc/IHMCGraphicsDescription
public YoGraphicsList(String label, YoGraphic[] yoGraphicsArray)
{
checkLabelNonEmpty(label);
this.label = label;
ArrayList<YoGraphic> yoGraphics = new ArrayList<YoGraphic>(yoGraphicsArray.length);
for (YoGraphic yoGraphic : yoGraphicsArray)
{
yoGraphics.add(yoGraphic);
}
this.yoGraphics = yoGraphics;
}
代码示例来源:origin: us.ihmc/IHMCGraphicsDescription
public YoGraphicsList(String label, YoGraphic yoGraphic)
{
checkLabelNonEmpty(label);
this.label = label;
ArrayList<YoGraphic> yoGraphics = new ArrayList<YoGraphic>(1);
yoGraphics.add(yoGraphic);
this.yoGraphics = yoGraphics;
}
内容来源于网络,如有侵权,请联系作者删除!