Package edu.stanford.smi.protege.util

Examples of edu.stanford.smi.protege.util.FileField


        private FileField fileField;

        ClamlFilesWizardPage(Wizard wizard, ClamlCreateProjectPlugin plugin) {
            super("foo files", wizard);
            this.plugin = plugin;
            fileField = new FileField("CLAML File", null, ".xml", "CLAML Files");
            JPanel panel = new JPanel(new GridLayout(1, 0));
            panel.add(fileField);
            setLayout(new BorderLayout());
            add(panel);
            setPageComplete(false);
View Full Code Here


  private void buildUI() {
    setLayout(new BorderLayout());
   
    java.util.List<String> extensions = (java.util.List<String>) Arrays.asList((new String[]{"pprj", "owl" , "rdfs", "rdf"}));
    fileField = new FileField("Select file", null, new ExtensionFilter(extensions.iterator(), "Files"));
    JPanel filePanel = new JPanel(new BorderLayout());
    filePanel.add(fileField, BorderLayout.CENTER);
    JPanel buttonPanel = new JPanel();
    buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.Y_AXIS));
    JButton button = new JButton(getLoadAction());
View Full Code Here

      "Speciality_Adaptation_Mental_Health", "Specialty_Adaptation_Dermatology",
      "Specialty_Adaptation_Musculoskeletal", "Specialty_Adaptation_Neurology",
      "Specialty_Adaptation_Paediatrics"}

    public ICDClaMLExportPanel() {
      umbrellaProjectFileField = new FileField("ICD Umbrella pprj file name",
                                     null, ".pprj",
                                     "Protege Project files");

      clamlOutputFileFiled = new FileField("ICD ClaML output file name",
                null, ".xml",
                "ICD ClaML output (xml) files");
     
      JPanel panelLinearType = new JPanel();
      labelLinearType = new JLabel("Linearization type: ");
View Full Code Here

TOP

Related Classes of edu.stanford.smi.protege.util.FileField

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.