Ignore:
Timestamp:
09/04/08 17:07:39 (16 years ago)
Author:
ra33
Message:
 
File:
1 edited

Legend:

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

    r279 r294  
    9898       
    9999        @Override
     100        public void setFormula(String formula) {
     101        }
     102       
     103        @Override
     104        public void setAnchorBottom(Float anchor) {
     105                _widgetSource.setAnchorBottom(anchor);
     106        }
     107
     108        @Override
     109        public void setAnchorRight(Float anchor) {
     110                _widgetSource.setAnchorRight(anchor);
     111        }
     112       
     113        @Override
     114        public Float getAnchorBottom() {
     115                return _widgetSource.getSource().getAnchorBottom();
     116        }
     117       
     118        @Override
     119        public Float getAnchorRight() {
     120                return _widgetSource.getSource().getAnchorRight();
     121        }
     122       
     123        @Override
    100124        public boolean contains(int x, int y) {
    101125                return super.contains(x, y) && !_widgetSource.getBounds().contains(x, y);
Note: See TracChangeset for help on using the changeset viewer.