Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.73 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. /**
  8.  *
  9.  * @author Peter
  10.  */
  11. public class Bestioles
  12. {
  13.    
  14.     public int nbAnimaux()
  15.     {
  16.         return 0;
  17.        
  18.     }
  19.    
  20.     public String toString()
  21.     {
  22.         return null;
  23.        
  24.     }
  25.    
  26.     public boolean animalPresent(Animal bete)
  27.     {
  28.         return false;
  29.        
  30.     }
  31.    
  32.     public void enleveAnimal(int numero)
  33.     {
  34.        
  35.     }
  36.    
  37.     public void enleveAnimal(Animal bete)
  38.     {
  39.        
  40.     }
  41.    
  42.     public String toString(int i)
  43.     {
  44.         return null;
  45.        
  46.     }
  47.    
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement