1 package cve.core.elementEEL; 2 3 import java.util.*; 4 5 11 public interface IEnvironmentEEL 12 { 13 17 IUnit getUnit(int index); 18 19 22 IUnit getNextUnit(); 23 24 27 IUnit getCurrentUnit(); 28 29 33 void addUnit(IUnit ele); 34 35 39 boolean removeUnit(IUnit ele); 40 41 44 int getCardinalita(); 45 46 49 Collection getAllUnit(); 50 51 54 String getDescription(); 55 56 60 void setDescription(String description); 61 } 62 63 64 65 | Popular Tags |