com.ait.lienzo.client.core.shape.Attributes.getBoolean()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(4.1k)|赞(0)|评价(0)|浏览(101)

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

Attributes.getBoolean介绍

暂无

代码示例

代码示例来源:origin: org.dashbuilder/dashbuilder-lienzo-core

public final boolean isEditable()
{
  return getBoolean(Attribute.EDITABLE.getProperty());
}

代码示例来源:origin: org.dashbuilder/dashbuilder-lienzo-core

public final boolean isShowPoster()
{
  return getBoolean(Attribute.SHOW_POSTER.getProperty());
}

代码示例来源:origin: com.ahome-it/lienzo-core

public final boolean isVisible()
{
  if (isDefined(Attribute.VISIBLE))
  {
    return getBoolean(Attribute.VISIBLE.getProperty());
  }
  return true;
}

代码示例来源:origin: com.ahome-it/lienzo-core

public final boolean isListening()
{
  if (isDefined(Attribute.LISTENING))
  {
    return getBoolean(Attribute.LISTENING.getProperty());
  }
  return true;
}

代码示例来源:origin: ahome-it/lienzo-core

public final boolean isClearLayerBeforeDraw()
{
  if (isDefined(Attribute.CLEAR_LAYER_BEFORE_DRAW))
  {
    return getBoolean(Attribute.CLEAR_LAYER_BEFORE_DRAW.getProperty());
  }
  return true;
}

代码示例来源:origin: org.dashbuilder/dashbuilder-lienzo-core

public final boolean isVisible()
{
  if (isDefined(Attribute.VISIBLE))
  {
    return getBoolean(Attribute.VISIBLE.getProperty());
  }
  return true;
}

代码示例来源:origin: ahome-it/lienzo-core

public final boolean isVisible()
{
  if (isDefined(Attribute.VISIBLE))
  {
    return getBoolean(Attribute.VISIBLE.getProperty());
  }
  return true;
}

代码示例来源:origin: ahome-it/lienzo-core

public final boolean isListening()
{
  if (isDefined(Attribute.LISTENING))
  {
    return getBoolean(Attribute.LISTENING.getProperty());
  }
  return true;
}

代码示例来源:origin: ahome-it/lienzo-core

public final boolean isActive()
{
  if (isDefined(Attribute.ACTIVE))
  {
    return this.getBoolean(Attribute.ACTIVE.getProperty());
  }
  return true;
}

代码示例来源:origin: ahome-it/lienzo-core

public final boolean isTransformable()
{
  if (isDefined(Attribute.TRANSFORMABLE))
  {
    return getBoolean(Attribute.TRANSFORMABLE.getProperty());
  }
  return true;
}

代码示例来源:origin: ahome-it/lienzo-core

public final boolean isVisible()
{
  if (isDefined(Attribute.VISIBLE))
  {
    return getBoolean(Attribute.VISIBLE.getProperty());
  }
  return true;
}

代码示例来源:origin: ahome-it/lienzo-core

public final boolean isActive()
{
  if (isDefined(Attribute.ACTIVE))
  {
    return this.getBoolean(Attribute.ACTIVE.getProperty());
  }
  return true;
}

代码示例来源:origin: com.ahome-it/lienzo-core

public final boolean isTransformable()
{
  if (isDefined(Attribute.TRANSFORMABLE))
  {
    return getBoolean(Attribute.TRANSFORMABLE.getProperty());
  }
  return true;
}

代码示例来源:origin: com.ahome-it/lienzo-core

public final boolean isActive()
{
  if (isDefined(Attribute.ACTIVE))
  {
    return this.getBoolean(Attribute.ACTIVE.getProperty());
  }
  return true;
}

代码示例来源:origin: com.ahome-it/lienzo-charts

public final boolean isResizable()
{
  if (getAttributes().isDefined(ChartAttribute.RESIZABLE))
  {
    return getAttributes().getBoolean(ChartAttribute.RESIZABLE.getProperty());
  }
  return true;
}

代码示例来源:origin: org.dashbuilder/dashbuilder-lienzo-charts

public final boolean isShowTitle()
{
  if (getAttributes().isDefined(ChartAttribute.SHOW_TITLE))
  {
    return getAttributes().getBoolean(ChartAttribute.SHOW_TITLE.getProperty());
  }
  return true;
}

代码示例来源:origin: com.ahome-it/lienzo-charts

public final boolean isShowValuesAxisTitle()
{
  if (getAttributes().isDefined(ChartAttribute.SHOW_VALUES_AXIS_TITLE))
  {
    return getAttributes().getBoolean(ChartAttribute.SHOW_VALUES_AXIS_TITLE.getProperty());
  }
  return true;
}

代码示例来源:origin: org.dashbuilder/dashbuilder-lienzo-charts

public final boolean isResizable()
{
  if (getAttributes().isDefined(ChartAttribute.RESIZABLE))
  {
    return getAttributes().getBoolean(ChartAttribute.RESIZABLE.getProperty());
  }
  return true;
}

代码示例来源:origin: com.ahome-it/lienzo-charts

public final boolean isShowTitle()
{
  if (getAttributes().isDefined(ChartAttribute.SHOW_TITLE))
  {
    return getAttributes().getBoolean(ChartAttribute.SHOW_TITLE.getProperty());
  }
  return true;
}

代码示例来源:origin: com.ahome-it/lienzo-core

public final boolean isFillShapeForSelection()
{
  if (isDefined(Attribute.FILL_SHAPE_FOR_SELECTION))
  {
    return getBoolean(Attribute.FILL_SHAPE_FOR_SELECTION.getProperty());
  }
  return LienzoCore.get().getDefaultFillShapeForSelection();
}

相关文章

微信公众号

最新文章

更多

Attributes类方法