Package com.volantis.mcs.xdime

Examples of com.volantis.mcs.xdime.StoreDataStrategy


     */
    private static final LogDispatcher LOGGER =
            LocalizationFactory.createLogger(XFValueElementImpl.class);

    public XFValueElementImpl(XDIMEContextInternal context) {
        super(XFormElements.VALUE, new StoreDataStrategy(), context);

        protocolAttributes = new SelectOption();
        protocolAttributes.setTagName("xfvalue");
    }
View Full Code Here


     * Initialize a new instance.
     * @param context
     */
    public SIItemElementImpl(XDIMEContextInternal context) {
        super(UnstyledStrategy.STRATEGY, SIElements.ITEM,
                new StoreDataStrategy(), context);
    }
View Full Code Here

     * Initialize a new instance using the given parameters.
     *
     * @param context in which this element is being processed
     */
    public XFSetValueElementImpl(XDIMEContextInternal context) {
        this (context, new StoreDataStrategy());
    }
View Full Code Here

    /**
     * Initialize a new instance.
     * @param context
     */
    public XFItemElementImpl(XDIMEContextInternal context) {
        super(XFormElements.ITEM, new StoreDataStrategy(), context);

        protocolAttributes = new SelectOption();
        protocolAttributes.setTagName("xfoption");
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.xdime.StoreDataStrategy

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.