Ignore:
Timestamp:
01/10/14 14:25:42 (10 years ago)
Author:
jts21
Message:

Switch to using a link instead of an action for navigation buttons, also add a setting for whether a link should be added to history (to enable navigation buttons that don't generate history)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/Item.java

    r665 r676  
    303303
    304304        private String _link = null;
     305       
     306        private boolean _linkHistory = true;
    305307
    306308        private StringBuffer _tag = new StringBuffer();
     
    16831685                invalidateCommonTrait(ItemAppearence.LinkChanged);
    16841686        }
     1687       
     1688        public void setLinkHistory(boolean value) {
     1689                _linkHistory = value;
     1690        }
     1691       
     1692        public boolean getLinkHistory() {
     1693                return _linkHistory;
     1694        }
    16851695
    16861696        public void setLinkFrameset(String frameset) {
Note: See TracChangeset for help on using the changeset viewer.