gpt4 book ai didi

org.ajax4jsf.util.Zipper2.()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-19 10:51:31 26 4
gpt4 key购买 nike

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

Zipper2.<init>介绍

暂无

代码示例

代码示例来源:origin: org.richfaces.ui/menu-components

protected Object deserializeData(byte[] objectArray) {
  if (objectArray == null) {
    return null;
  }
  
  MenuNodeImageData mnd = new MenuNodeImageData();
  Zipper2 zipper2 = new Zipper2(objectArray);
  mnd.setGeneralColor(new Integer(zipper2.nextIntColor()));
  mnd.setDisabledColor(new Integer(zipper2.nextIntColor()));
  
  return mnd;
}

代码示例来源:origin: org.richfaces.samples/themes

@Override
public byte[] toByteArray() {
    byte[] bs = super.toByteArray();
    byte[] result = new byte[(bs != null ? bs.length : 0) + 8];
  new Zipper2(result).addInt(shadowColor).addInt(borderColor).addBytes(bs);
  return result;
}

代码示例来源:origin: org.richfaces.ui/menu-components

Zipper2 zipper2 = new Zipper2(ret).addColor(intValue);

代码示例来源:origin: org.richfaces.ui/toolBar

Zipper2 zipper2 = new Zipper2(ret).addColor(HtmlColor.decode( tmp == null ? "#224986" : tmp ).getRGB());

代码示例来源:origin: org.richfaces.ui/toolBar

protected Object deserializeData(byte[] objectArray) {
  if (objectArray == null) {
    return null;
  }
  
  SeparatorData separatorData = new SeparatorData();
  Zipper2 zipper2 = new Zipper2(objectArray);
  separatorData.setHeaderBackgroundColor(zipper2.nextIntColor());
  separatorData.setHeaderGradientColor(zipper2.nextIntColor());
  separatorData.setHeaderTextColor(zipper2.nextIntColor());
  separatorData.setFontSize(zipper2.nextShort());
  separatorData.setSeparatorHeight(zipper2.nextShort());
  
  return separatorData;
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com