Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import javax.swing.*;

public class Main {
    public static String getComboBoxValue(JComboBox comp) {
        String selectedPath = comp.getSelectedItem().toString();
        if (selectedPath == null || !selectedPath.equals(comp.getEditor().getItem())) {
            selectedPath = comp.getEditor().getItem().toString();
        }
        return selectedPath;
    }
}