Package cybop.basic

Examples of cybop.basic.String


    }
   

    /** Initialization of components */
    public void initialize() {
        setTitle(new String("Edit overlay region..."));
       
        set(EditOverlayRegionDialog.LAYOUT_MANAGER, new GridBagLayout());
        GridBagLayout gridbag = (GridBagLayout)get(EditOverlayRegionDialog.LAYOUT_MANAGER);
        setLayout(gridbag);

View Full Code Here


    /**Creates the old name for the overlay region
     * @return the name label
     */
    public String createOldName(){
        return new String();
    }
View Full Code Here

    public MakeDiseaseDialog() {
    }

    /** Initialization of components */
    public void initialize() {
        setTitle(new String("Create/Edit disease..."));
        set(MakeDiseaseDialog.LAYOUT_MANAGER, new GridBagLayout());
        setLayout((GridBagLayout)get(MakeDiseaseDialog.LAYOUT_MANAGER));
        set(MakeDiseaseDialog.GRID_BAG_CONSTRAINTS, new GridBagConstraints());
        setDisplayMode(DisplayFactory.MODELESS_DIALOG_DISPLAY);
        setDialogBounds(createDialogBounds());
View Full Code Here

    }

    /** Initializes this component. */
    public void initialize() throws Exception {
        super.initialize();
        setTitle(new String("Load patient..."));
        //?? Temporary! The display mode of this about dialog is read from the configuration of the application (and such is FRAME_DISPLAY)!
        setDisplayMode(DisplayFactory.MODELESS_DIALOG_DISPLAY);
        //?? Temporary! The dialog bounds of this about dialog are read from the configuration of the application!
        setDialogBounds(createDialogBounds());

View Full Code Here

     * @param diseases the diseases of this overlay
     * */
    public void setDiseases(Hashtable diseases) {
        Enumeration keys = diseases.keys();
        while(keys.hasMoreElements()){
            String key = (String)keys.nextElement();
            Disease disease = (Disease)diseases.get(key);
            set(new org.resmedicinae.resmedlib.term.String(key),disease);
        }
    }
View Full Code Here

TOP

Related Classes of cybop.basic.String

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.