us.ihmc.graphicsDescription.yoGraphics.YoGraphicsList.checkLabelNonEmpty()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(87)

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

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;
}

相关文章