Example #1
0
 /**
  * Justificativa da Inutilização
  *
  * @param xJust
  */
 public void setxJust(String xJust) {
   xJust = RemoverAcentos.remover(xJust);
   //
   if (xJust != null && xJust.length() > 255) {
     log.warning("Motivo do cancelamento truncado para 255 caracteres");
     xJust = xJust.substring(0, 255);
   }
   //
   this.xJust = xJust;
 } //	setxJust
Example #2
0
 public void setnVol(String nVol) {
   if (nVol != null) this.nVol = TextUtil.checkSize(RemoverAcentos.remover(nVol), 60);
 }
Example #3
0
 public void setMarca(String marca) {
   if (marca != null) this.marca = TextUtil.checkSize(RemoverAcentos.remover(marca), 60);
 }
Example #4
0
 private void setEsp(String esp) {
   if (esp != null) this.esp = TextUtil.checkSize(RemoverAcentos.remover(esp), 60);
 }