Package no.ugland.utransprod.gui.model

Examples of no.ugland.utransprod.gui.model.ListMultilineRenderer


    orderComments.clear();
    orderComments.addAll((List<OrderComment>) presentationModel
        .getBufferedValue(OrderModel.PROPERTY_COMMENTS));
    JList list = new JList(orderComments);
    list.setName("ListOrderComments");
    list.setCellRenderer(new ListMultilineRenderer(65));
    return list;
  }
View Full Code Here


    commentList.clear();
    commentList.addAll((List<PreventiveActionComment>) presentationModel
        .getBufferedValue(PreventiveActionModel.PROPERTY_COMMENTS));
    JList list = new JList(commentList);
    list.setName("ListPreventiveActionComments");
    list.setCellRenderer(new ListMultilineRenderer(55));
    return list;
  }
View Full Code Here

    orderComments.clear();
    orderComments.addAll((List<OrderComment>) presentationModelPackable
        .getBufferedValue(OrderModel.PROPERTY_COMMENTS));
    JList list = new JList(orderComments);
    list.setName("ListOrderComments");
    list.setCellRenderer(new ListMultilineRenderer(80));
    return list;
  }
View Full Code Here

        .getBufferedValue(DeviationModel.PROPERTY_COMMENTS));
    JList list = BasicComponentFactory
        .createList(orderCommentsSelectionList);

    list.setName("ListOrderComments");
    list.setCellRenderer(new ListMultilineRenderer(85));
    return list;
  }
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.gui.model.ListMultilineRenderer

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.