Revision 42634

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.impl/src/main/java/org/gvsig/fmap/dal/feature/impl/DefaultFeatureAttributeDescriptor.java
482 482
     * Start of DynField interface Implementation
483 483
     *
484 484
     */
485
    
485

  
486 486
    public Tags getTags() {
487 487
        return tags;
488 488
    }
489
    
489

  
490 490
    @Override
491 491
    public DynObjectValueItem[] getAvailableValues() {
492 492
        return this.availableValues;
......
802 802

  
803 803
    @Override
804 804
    public String getClassNameOfValue() {
805
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
805
        return null;
806 806
    }
807 807

  
808 808
    @Override
809 809
    public DynStruct getDynClassOfValue() {
810
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
810
        return null;
811 811
    }
812 812

  
813 813
    @Override
......
817 817

  
818 818
    @Override
819 819
    public int getTypeOfItems() {
820
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
820
        return DataTypes.INVALID;
821 821
    }
822 822

  
823 823
    @Override
......
832 832

  
833 833
    @Override
834 834
    public String getClassNameOfItems() {
835
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
835
        return null;
836 836
    }
837 837

  
838 838
    @Override
839 839
    public DynStruct getDynClassOfItems() {
840
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
840
        return null;
841 841
    }
842 842

  
843 843
    @Override
......
882 882
    public void setConstantValue(boolean isConstantValue) {
883 883
        if (isConstantValue) {
884 884
            /* Cuando un attributo tiene asociado un evaluador, este se interpreta
885
             * como que no debe cargarse de la fuente de datos subyacente, siendo 
885
             * como que no debe cargarse de la fuente de datos subyacente, siendo
886 886
             * el evaluador el que se encarga de proporcionar su valor.
887 887
             * Nos limitamos a asignar un evaluador que retorna simpre el valor
888 888
             * por defecto para ese attributo.

Also available in: Unified diff