Revision 34320

View differences:

branches/v2_0_0_prep/libraries/libFMap_dal/src/org/gvsig/fmap/dal/feature/spi/FeatureStoreProviderServices.java
68 68
	 * 
69 69
	 * @param notification
70 70
	 */
71
	public void notifyChange(String notification,
72
			FeatureStoreNotification storeNotification);
71
	public void notifyChange(FeatureStoreNotification storeNotification);
73 72

  
74 73
	/**
75 74
	 * Call this to send a notification to observers of this store relative to
branches/v2_0_0_prep/libraries/libFMap_dal/src/org/gvsig/fmap/dal/feature/impl/DefaultFeatureStore.java
648 648

  
649 649
    public void notifyChange(String notification) {
650 650
        if (delegateObservable != null) {
651
			notifyChange(notification, new DefaultFeatureStoreNotification(
651
			notifyChange(new DefaultFeatureStoreNotification(
652 652
                this, notification));
653 653
        }
654 654

  
......
664 664
	}
665 665

  
666 666
    public void notifyChange(String notification, Feature feature) {
667
		notifyChange(notification, new DefaultFeatureStoreNotification(
667
		notifyChange(new DefaultFeatureStoreNotification(
668 668
            this, notification, feature));
669 669
    }
670 670

  
671 671
    public void notifyChange(String notification, Command command) {
672
		notifyChange(notification, new DefaultFeatureStoreNotification(
672
		notifyChange(new DefaultFeatureStoreNotification(
673 673
            this, notification, command));
674 674
    }
675 675

  
676 676
    public void notifyChange(String notification, EditableFeatureType type) {
677
		notifyChange(notification, new DefaultFeatureStoreNotification(this,
677
		notifyChange(new DefaultFeatureStoreNotification(this,
678 678
            notification, type));
679 679
    }
680 680

  
681
	public void notifyChange(String notification,
682
			FeatureStoreNotification storeNotification) {
681
	public void notifyChange(FeatureStoreNotification storeNotification) {
683 682
		delegateObservable.notifyObservers(storeNotification);
684 683
	}
685 684

  
686
    /*
687
     * (non-Javadoc)
688
     *
689
     * @see
690
     * org.gvsig.fmap.dal.feature.spi.FeatureStoreProviderServices#notifyChange
691
     * (java.lang.String, org.gvsig.fmap.dal.resource.Resource)
692
     */
693 685
    public void notifyChange(String notification, Resource resource) {
694
        delegateObservable.notifyObservers(new DefaultFeatureStoreNotification(this,
686
		notifyChange(new DefaultFeatureStoreNotification(this,
695 687
            FeatureStoreNotification.RESOURCE_CHANGED));
696 688
    }
697 689

  

Also available in: Unified diff