Package dk.i2m.drupal.field

Examples of dk.i2m.drupal.field.List


        this.name = name;
    }

    public ListWrapper(String name, String value) {
        this(name);
        lists.add(new List(value));
    }
View Full Code Here


    @Override
    public Set<NameValuePair> setup(String language,
            Set<NameValuePair> nvps) {
        for (int i = 0; i < lists.size(); i++) {
            List list = lists.get(i);

            if (list.getValue() != null) {
                nvps.add(new BasicNameValuePair(name + "[" + language + "][" + i
                        + "]", list.getValue()));
            }
        }

        return nvps;
    }
View Full Code Here

TOP

Related Classes of dk.i2m.drupal.field.List

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.