Package DisplayProject.binding.value

Examples of DisplayProject.binding.value.ValueHolder


     * @param bean   the bean that holds the properties to adapt
     * @throws PropertyUnboundException  if the <code>bean</code> does not
     *     provide a pair of methods to register a PropertyChangeListener
     */
    public PresentationModel(Object bean) {
        this(new ValueHolder(bean, true));
    }
View Full Code Here


     * @param triggerChannel the ValueModel that triggers commit and flush events
     */
    public PresentationModel(
        Object bean,
        ValueModel triggerChannel) {
        this(new ValueHolder(bean, true), triggerChannel);
    }
View Full Code Here

        Object bean,
        String propertyName,
        String getterName,
        String setterName,
        boolean observeChanges) {
        this(new ValueHolder(bean, true), propertyName, getterName, setterName, observeChanges);
    }
View Full Code Here

        String getterName,
        String setterName,
        boolean observeChanges) {
        this.beanChannel    = beanChannel != null
            ? beanChannel
            : new ValueHolder(null, true);
        this.propertyName   = propertyName;
        this.getterName     = getterName;
        this.setterName     = setterName;
        this.observeChanges = observeChanges;
View Full Code Here

        this.subjectType = subjectType;
        this.isFillInField = false;
    }

    public ListElementValueModelConverter(ValueModel subject, List<ListElement> elements, Class<?> subjectType) {
        this(subject, new ValueHolder(elements), subjectType);
    }
View Full Code Here

        Object bean,
        String propertyName,
        String getterName,
        String setterName,
        boolean observeChanges) {
        this(new ValueHolder(bean, true), propertyName, getterName, setterName, observeChanges);
    }
View Full Code Here

        String getterName,
        String setterName,
        boolean observeChanges) {
        this.beanChannel    = beanChannel != null
            ? beanChannel
            : new ValueHolder(null, true);
        this.propertyName   = propertyName;
        this.getterName     = getterName;
        this.setterName     = setterName;
        this.observeChanges = observeChanges;
View Full Code Here

//        this.elements = pList;
        this.setElementList(pList);
    }

    public DropListModel(Array_Of_ListElement<ListElement> pList, AutoResizingComboBox cb) {
        this(pList, new ValueHolder(), cb);
    }
View Full Code Here

     * operations and report the fine grained ListDataEvents.
     * 
     * @param list        the initial list
     */
    public SelectionInList(List<?> list) {    
        this(new ValueHolder(list, true));
    }
View Full Code Here

     *
     * @throws NullPointerException
     *     if <code>selectionHolder</code> is <code>null</code>
     */
    public SelectionInList(List<?> list, ValueModel selectionHolder) {    
        this(new ValueHolder(list, true), selectionHolder);
    }
View Full Code Here

TOP

Related Classes of DisplayProject.binding.value.ValueHolder

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.