Package nu.fw.jeti.plugins.drawing.elements

Examples of nu.fw.jeti.plugins.drawing.elements.ColorSettingMessage


  public List<PictureMessage> getPictureMessageList(List<JID> receivers, String thread) {
    List<PictureMessage> list = new ArrayList<PictureMessage>();
   
    for (JID jid : receivers) {   
      if (color != null) {
        list.add(new ColorSettingMessage(jid, shapeIdList, color, thread,
            time, actionsAuthor, counter++));
      } else if (newColorList != null) {
        for (long id : shapeIdList) {
          list.add(new ColorSettingMessage(jid, createShapeIdList(id),
              newColorList.get(id), thread, time, actionsAuthor, counter++));
        }
      } else {
        throw new IllegalArgumentException();
      }
View Full Code Here

TOP

Related Classes of nu.fw.jeti.plugins.drawing.elements.ColorSettingMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.