Revision 47779 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.spi/src/main/java/org/gvsig/fmap/dal/feature/spi/AbstractFeatureStoreProvider.java

View differences:

AbstractFeatureStoreProvider.java
461 461
	/**
462 462
	 * unsupported by default, override this otherwise
463 463
	 *
464
         * @param featureProvider
465
         * @throws org.gvsig.fmap.dal.exception.DataException
464 466
	 * @see org.gvsig.fmap.dal.feature.spi.FeatureStoreProvider#append(org.gvsig.
465 467
	 *      fmap.dal.feature.spi.FeatureProvider)
466 468
	 */
469
        @Override
467 470
	public void append(FeatureProvider featureProvider) throws DataException {
468 471
		// FIXME exception
469 472
		throw new UnsupportedOperationException();
......
479 482
		throw new UnsupportedOperationException();
480 483
	}
481 484

  
485
	public void beginAppend(int submode) throws DataException {
486
            this.beginAppend();
487
	}
488

  
482 489
	/**
483 490
	 * unsupported by default, override this otherwise
484 491
	 *
......
633 640
    }
634 641

  
635 642
    @Override
643
    public void passThroughInsertOrUpdate(FeatureProvider featureProvider) throws DataException {
644
        throw new UnsupportedOperationException();
645
    }
646

  
647
    @Override
636 648
    public void passThroughUpdate(FeatureProvider featureProvider) throws DataException {
637 649
        throw new UnsupportedOperationException();
638 650
    }

Also available in: Unified diff