Package org.python.pydev.utils

Examples of org.python.pydev.utils.TableComboFieldEditor


                { "Show parent name in title", TITLE_EDITOR_INIT_HANDLING_PARENT_IN_TITLE, null },

        };

        initHandlingFieldEditor = new TableComboFieldEditor(TITLE_EDITOR_INIT_HANDLING, "__init__.py handling:",
                EDITOR__INIT__HANDLING_VALUES, p);
        addField(initHandlingFieldEditor);

        new LabelFieldEditor("UNUSED", "Django related configurations", p);
        new LabelFieldEditor("UNUSED", "", p);

        Object[][] EDITOR_DJANGO_MODULES_HANDLING_VALUES = {
                { "Show as regular module", TITLE_EDITOR_DJANGO_MODULES_DEFAULT_ICON, null },

                { "Show as regular module but using icon with module initial", TITLE_EDITOR_DJANGO_MODULES_DECORATE,
                        null },

                { "Show parent name in title and icon with module initial",
                        TITLE_EDITOR_DJANGO_MODULES_SHOW_PARENT_AND_DECORATE, null },

        };

        djangoHandling = new TableComboFieldEditor(TITLE_EDITOR_DJANGO_MODULES_HANDLING,
                "Django modules handling:\n(models.py, views.py, tests.py)", EDITOR_DJANGO_MODULES_HANDLING_VALUES, p);
        addField(djangoHandling);

    }
View Full Code Here

TOP

Related Classes of org.python.pydev.utils.TableComboFieldEditor

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.