Guest User

Untitled

a guest
Jan 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public void salvar(Pessoa p) throws Exception {
  2.  
  3. if (p.getNome() == null) {
  4. throw new Exception("Nome nulo");
  5. } else if (p.getIdade == null) {
  6. throw new Exception("Idade nula");
  7. } else if (p.getCorDosOlhos == null) {
  8. throw new Exception("CorDosOlhos nulo");
  9. }
  10. }
  11.  
  12. for (Field field : Pessoa.class.getDeclaredFields()) {
  13. if (Modifier.isPrivate(field.getModifiers())) {
  14. //faz alguma coisa aqui com field
  15. }
  16. }
Add Comment
Please, Sign In to add comment