Package jsky.util

Examples of jsky.util.NameValue


            p.setDescription("Select the name server to use to resolve the object name");
            List<Catalog> l = SkycatConfigFile.getConfigFile().getNameServers();
            NameValue[] ar = new NameValue[l.size()];
            for (int i = 0; i < ar.length; i++) {
                Catalog cat = l.get(i);
                ar[i] = new NameValue(cat.getName(), cat);
            }
            p.setOptions(ar);
            params.add(p);

            p = new FieldDescAdapter(SkycatConfigEntry.RA);
View Full Code Here


                p.setDescription("Select the name server to use to resolve the object name");
                List<Catalog> l = _configFile.getNameServers();
                NameValue[] ar = new NameValue[l.size()];
                for (int i = 0; i < ar.length; i++) {
                    Catalog cat = l.get(i);
                    ar[i] = new NameValue(cat.getName(), cat);
                }
                p.setOptions(ar);
                params.add(p);

                p = new FieldDescAdapter(RA);
View Full Code Here


    // called for the <option> start tag
    public void _optionStart(Attributes attrs) {
        if (attrs != null) {
            _option = new NameValue();
            int n = attrs.getLength();
            for (int i = 0; i < n; i++) {
                String name = attrs.getQName(i);
                String value = attrs.getValue(i);
                if (name.equals("name")) {
View Full Code Here

            p.setDescription("Select the name server to use to resolve the object name");
            List<Catalog> l = AstroCatConfig.getConfigFile().getNameServers();
            NameValue[] ar = new NameValue[l.size()];
            for (int i = 0; i < ar.length; i++) {
                Catalog cat = l.get(i);
                ar[i] = new NameValue(cat.getName(), cat);
            }
            p.setOptions(ar);
            params.add(p);

            p = new FieldDescAdapter(RA);
View Full Code Here

TOP

Related Classes of jsky.util.NameValue

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.