Revision 28108 branches/v2_0_0_prep/extensions/extRasterTools-SE/src/org/gvsig/rastertools/RasterModule.java

View differences:

RasterModule.java
512 512
					RasterLibrary.defaultNumberOfClasses = new Integer(
513 513
							(String) e.getValue()).intValue();
514 514
				} catch (NumberFormatException exc) {
515
					// FIXME
516
					exc.printStackTrace();
515
					//Valor por defecto en el n?mero de clases
517 516
				}
518 517

  
519 518
			if(e.getValue() instanceof Integer)
......
526 525
				try {
527 526
					RasterLibrary.cacheSize = new Long((String) e.getValue()).longValue();
528 527
				} catch (NumberFormatException exc) {
529
					// FIXME
530
					exc.printStackTrace();
528
					//Valor por defecto en la cache
531 529
				}
532 530
			if(e.getValue() instanceof Long)
533 531
				RasterLibrary.cacheSize = ((Long) e.getValue()).longValue();
......
540 538
					RasterLibrary.pageSize = new Double((String) e.getValue())
541 539
							.doubleValue();
542 540
				} catch (NumberFormatException exc) {
543
					// FIXME
544
					exc.printStackTrace();
541
					//Valor por defecto en la cache
545 542
				}
546 543

  
547 544
			if(e.getValue() instanceof Double)
......
555 552
					RasterLibrary.pagsPerGroup = new Integer((String) e
556 553
							.getValue()).intValue();
557 554
				} catch (NumberFormatException exc) {
558
					// FIXME
559
					exc.printStackTrace();
555
					//Valor por defecto en la cache
560 556
				}
561 557

  
562 558
			if(e.getValue() instanceof Integer)
......
570 566
					RasterLibrary.blockHeight = new Integer((String) e
571 567
							.getValue()).intValue();
572 568
				} catch (NumberFormatException exc) {
573
					// FIXME
574
					exc.printStackTrace();
569
					//Valor por defecto en la cache
575 570
				}
576 571
			if(e.getValue() instanceof Integer)
577 572
				RasterLibrary.blockHeight = ((Integer) e.getValue()).intValue();
......
584 579
					RasterLibrary.defaultNoDataValue = new Double((String) e
585 580
							.getValue()).doubleValue();
586 581
				} catch (NumberFormatException exc) {
587
					// FIXME
588
					exc.printStackTrace();
582
					//Valor por defecto en valor nodata
589 583
				}
590 584

  
591 585
			if(e.getValue() instanceof Double)

Also available in: Unified diff