@ -324,6 +324,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
attributes . put ( "tcMiglioramentoSismico" , getTcMiglioramentoSismico ( ) ) ;
attributes . put ( "tcRiparazioneInterventoLocale" ,
getTcRiparazioneInterventoLocale ( ) ) ;
attributes . put ( "tcCostruzioniEsistenti" , getTcCostruzioniEsistenti ( ) ) ;
attributes . put ( "tcInCA" , getTcInCA ( ) ) ;
attributes . put ( "tcInOpera" , getTcInOpera ( ) ) ;
attributes . put ( "tcPrefabbricato" , getTcPrefabbricato ( ) ) ;
@ -1643,6 +1644,13 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
setTcRiparazioneInterventoLocale ( tcRiparazioneInterventoLocale ) ;
}
Boolean tcCostruzioniEsistenti = ( Boolean ) attributes . get (
"tcCostruzioniEsistenti" ) ;
if ( tcCostruzioniEsistenti ! = null ) {
setTcCostruzioniEsistenti ( tcCostruzioniEsistenti ) ;
}
Boolean tcInCA = ( Boolean ) attributes . get ( "tcInCA" ) ;
if ( tcInCA ! = null ) {
@ -6935,6 +6943,35 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
}
}
@Override
public boolean getTcCostruzioniEsistenti ( ) {
return _tcCostruzioniEsistenti ;
}
@Override
public boolean isTcCostruzioniEsistenti ( ) {
return _tcCostruzioniEsistenti ;
}
@Override
public void setTcCostruzioniEsistenti ( boolean tcCostruzioniEsistenti ) {
_tcCostruzioniEsistenti = tcCostruzioniEsistenti ;
if ( _dettPraticaRemoteModel ! = null ) {
try {
Class < ? > clazz = _dettPraticaRemoteModel . getClass ( ) ;
Method method = clazz . getMethod ( "setTcCostruzioniEsistenti" ,
boolean . class ) ;
method . invoke ( _dettPraticaRemoteModel , tcCostruzioniEsistenti ) ;
}
catch ( Exception e ) {
throw new UnsupportedOperationException ( e ) ;
}
}
}
@Override
public boolean getTcInCA ( ) {
return _tcInCA ;
@ -8629,6 +8666,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
clone . setTcAdeguamentoSismico ( getTcAdeguamentoSismico ( ) ) ;
clone . setTcMiglioramentoSismico ( getTcMiglioramentoSismico ( ) ) ;
clone . setTcRiparazioneInterventoLocale ( getTcRiparazioneInterventoLocale ( ) ) ;
clone . setTcCostruzioniEsistenti ( getTcCostruzioniEsistenti ( ) ) ;
clone . setTcInCA ( getTcInCA ( ) ) ;
clone . setTcInOpera ( getTcInOpera ( ) ) ;
clone . setTcPrefabbricato ( getTcPrefabbricato ( ) ) ;
@ -8725,7 +8763,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
@Override
public String toString ( ) {
StringBundler sb = new StringBundler ( 473 ) ;
StringBundler sb = new StringBundler ( 475 ) ;
sb . append ( "{uuid=" ) ;
sb . append ( getUuid ( ) ) ;
@ -9111,6 +9149,8 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
sb . append ( getTcMiglioramentoSismico ( ) ) ;
sb . append ( ", tcRiparazioneInterventoLocale=" ) ;
sb . append ( getTcRiparazioneInterventoLocale ( ) ) ;
sb . append ( ", tcCostruzioniEsistenti=" ) ;
sb . append ( getTcCostruzioniEsistenti ( ) ) ;
sb . append ( ", tcInCA=" ) ;
sb . append ( getTcInCA ( ) ) ;
sb . append ( ", tcInOpera=" ) ;
@ -9206,7 +9246,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
@Override
public String toXmlString ( ) {
StringBundler sb = new StringBundler ( 712 ) ;
StringBundler sb = new StringBundler ( 715 ) ;
sb . append ( "<model><model-name>" ) ;
sb . append ( "it.tref.liferay.portos.bo.model.DettPratica" ) ;
@ -9980,6 +10020,10 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
"<column><column-name>tcRiparazioneInterventoLocale</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcRiparazioneInterventoLocale ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
"<column><column-name>tcCostruzioniEsistenti</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcCostruzioniEsistenti ( ) ) ;
sb . append ( "]]></column-value></column>" ) ;
sb . append (
"<column><column-name>tcInCA</column-name><column-value><![CDATA[" ) ;
sb . append ( getTcInCA ( ) ) ;
@ -10356,6 +10400,7 @@ public class DettPraticaClp extends BaseModelImpl<DettPratica>
private boolean _tcAdeguamentoSismico ;
private boolean _tcMiglioramentoSismico ;
private boolean _tcRiparazioneInterventoLocale ;
private boolean _tcCostruzioniEsistenti ;
private boolean _tcInCA ;
private boolean _tcInOpera ;
private boolean _tcPrefabbricato ;