Package net.sf.apptools.data

Examples of net.sf.apptools.data.BooleanDescriptor


    //Get acceptor and selector, quit if cancelled
    final DataDescriptor acceptorDesc = new PlugInClassListSelectionDescriptor(CoreMessages.getString("DesignJobDialog.CAPTION_CHOOSE_ACCEPTOR"),null,"ACCEPTOR",acceptorClasses,true); //$NON-NLS-1$ //$NON-NLS-2$
    final DataDescriptor selectorDesc = new PlugInClassListSelectionDescriptor(CoreMessages.getString("DesignJobDialog.CAPTION_CHOOSE_SELECTOR"),null,"SELECTOR",selectorClasses,true); //$NON-NLS-1$ //$NON-NLS-2$
    final DataDescriptor constructorDesc = new PlugInClassListSelectionDescriptor(CoreMessages.getString("ProbeMakerPlugIn.NAME_CHOOSE_TSSCON"),null,"CONSTRUCTOR",constructorClasses,true); //$NON-NLS-1$ //$NON-NLS-2$
    final DataDescriptor resetTagsDesc = new BooleanDescriptor(CoreMessages.getString("DesignJobDialog.CAPTION_RESET_TAG_LIBRARIES"),null,"RESET_TAGS"); //$NON-NLS-1$ //$NON-NLS-2$

    if (designJobData == null) {

      designJobData = new DefaultDataHolder(new DataDescriptor[] {
          acceptorDesc,
View Full Code Here


        "<html>" + //$NON-NLS-1$
            CoreMessages.getString("NewProjectDialog.TEXT_INFO_HTML") + //$NON-NLS-1$
            "</html>"; //$NON-NLS-1$

    final DataDescriptor projectName = new StringDataDescriptor(CoreMessages.getString("ProbeMakerPlugIn.NAME_PROJECT_NAME"),CoreMessages.getString("ProbeMakerPlugIn.TOOLTIP_PROJECT_NAME"),"PROJECT_NAME",true); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
    final DataDescriptor useTemplate = new BooleanDescriptor(CoreMessages.getString("ProbeMakerPlugIn.NAME_USE_TEMPLATE"),useToolTip,"USE_TEMPLATE"); //$NON-NLS-1$ //$NON-NLS-2$
    final DataDescriptor templateSel = new TemplateListSelectionDescriptor(null,null,"TEMPLATE",templateManager.getTemplateArray(),false); //$NON-NLS-1$

    final DataHolder newProjectData = new DefaultDataHolder(new DataDescriptor[] {
        projectName,
        useTemplate,
View Full Code Here

            PROPERTY_PROBE_5_MATCH_LENGTH, 1, 100),
            new IntegerDescriptor("Min. 3' match length", //$NON-NLS-1$
                "Minimum number of matching bases on 3' end", //$NON-NLS-1$
                PadlockLigationCalculator.
                PROPERTY_PROBE_3_MATCH_LENGTH, 1, 100),
                new BooleanDescriptor("Use Tm limit", //$NON-NLS-1$
                    "Use a limit for Tm of probe-target hybrid", //$NON-NLS-1$
                    PadlockLigationCalculator.PROPERTY_USE_TM),           
                    new IntegerDescriptor("Max. Tm", //$NON-NLS-1$
                        "Maximum Tm of probe-target hybrid at site of match.", //$NON-NLS-1$
                        PadlockLigationCalculator.PROPERTY_TM_LIMIT, 0, 100)                   
View Full Code Here

                    "Minimum number of matching bases on 5' end for probes"//$NON-NLS-1$
                    PadlockLigationCalculator.PROPERTY_PROBE_5_MATCH_LENGTH, 1, 100),
                    new IntegerDescriptor("Min. probe 3' match length"//$NON-NLS-1$
                        "Minimum number of matching bases on 3' end for probes"//$NON-NLS-1$
                        PadlockLigationCalculator.PROPERTY_PROBE_3_MATCH_LENGTH, 1, 100),
                        new BooleanDescriptor("Use Tm limit"//$NON-NLS-1$
                            "Use a limit for Tm of probe-target hybrid"//$NON-NLS-1$
                            PadlockLigationCalculator.PROPERTY_USE_TM),
                            new IntegerDescriptor("Max. Tm"//$NON-NLS-1$
                                "Maximum Tm of probe-target hybrid at site of match."//$NON-NLS-1$
                                PadlockLigationCalculator.PROPERTY_TM_LIMIT, 0, 100)
View Full Code Here

          new TestDescriptor("5' hybridization temparature"), //$NON-NLS-1$
          new TestDescriptor("3' hybridization temperature"), //$NON-NLS-1$
          new TestDescriptor("5' TSS length"), //$NON-NLS-1$
          new TestDescriptor("3' TSS length")}//$NON-NLS-1$
          new DataDescriptor[] {
        new BooleanDescriptor("Use cutoff mode", //$NON-NLS-1$
                           "Give warning and error messages only for values below the preferred Tm. Allow all values above the limit.", //$NON-NLS-1$
                           PROP_USE_CUTOFF_MODE)});
    setData(PROP_USE_CUTOFF_MODE,new Boolean(false));
  }
View Full Code Here

            PROPERTY_PROBE_5_MATCH_LENGTH, 1, 100),
            new IntegerDescriptor("Min. 3' match length", //$NON-NLS-1$
                "Minimum number of matching bases on 3' end", //$NON-NLS-1$
                PadlockLigationCalculator.
                PROPERTY_PROBE_3_MATCH_LENGTH, 1, 100),
                new BooleanDescriptor("Use Tm limit", //$NON-NLS-1$
                    "Use a limit for Tm of probe-target hybrid", //$NON-NLS-1$
                    PadlockLigationCalculator.PROPERTY_USE_TM),           
                    new IntegerDescriptor("Max. Tm", //$NON-NLS-1$
                        "Maximum Tm of probe-target hybrid at site of match.", //$NON-NLS-1$
                        PadlockLigationCalculator.PROPERTY_TM_LIMIT, 0, 100)                   
View Full Code Here

TOP

Related Classes of net.sf.apptools.data.BooleanDescriptor

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.