Ignore:
Timestamp:
09/22/08 16:23:12 (16 years ago)
Author:
ra33
Message:

Fixed a few bugs that were makin unit tests fail...
Also added Greenstone search of HCI Bib tex

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/Frame.java

    r298 r311  
    8484
    8585        private String path;
    86        
     86
    8787        private boolean _isLocal = true;
    8888
     
    206206                        notifyObservers();
    207207                }
    208                
     208
    209209                if (oldValue == value)
    210210                        return;
     
    16541654         */
    16551655        public String getExportFileName() {
    1656                 return getAnnotationValue("file");
     1656                String fileName = getExportFileTagValue();
     1657
     1658                if (fileName == null) {
     1659                        fileName = getTitle();
     1660
     1661                        if (fileName == null) {
     1662                                fileName = getName();
     1663                        }
     1664                }
     1665
     1666                return fileName;
    16571667        }
    16581668
     
    20682078                return _isLocal;
    20692079        }
     2080
     2081        public String getExportFileTagValue() {
     2082                return getAnnotationValue("file");
     2083        }
    20702084}
Note: See TracChangeset for help on using the changeset viewer.