Package jmav.exception

Examples of jmav.exception.ParameterNotNullException


    //TODO
  }
 
  public void aggiungiSmell(Integer idSmell) throws Exception {
    if(idSmell == null) {
      throw new ParameterNotNullException("Parametro idSmell non pu� essere null");
    }
   
    Smell smell = null;
   
    if(idSmell == LargeClass) {
View Full Code Here


    }
  }
 
  public void rimuoviSmell(Integer idSmell) throws Exception {
    if(idSmell == null) {
      throw new ParameterNotNullException("Parametro idSmell non pu� essere null");
    }
   
    Smell smell = smells.remove(idSmell);
   
    if(smell != null) {
View Full Code Here

    return new ArrayList<Smell>(smells.values());
  }
 
  public List<Integer> listaSoglie(Integer idSmell) throws ParameterNotNullException, ValueNotFoundException {
    if(idSmell == null)
      throw new ParameterNotNullException("Parametro idSmell non pu� essere null");
   
    HashMap<Integer,Integer> soglieSmell = soglie.get(idSmell);
   
    if(soglieSmell != null) {
      return new ArrayList<Integer>(soglieSmell.values());
View Full Code Here

    }
  }
 
  public Integer getSoglia(Integer idSmell, Integer idSoglia) throws ParameterNotNullException, ValueNotFoundException {
    if(idSmell == null)
      throw new ParameterNotNullException("Parametro idSmell non pu� essere null");
   
    if(idSoglia == null)
      throw new ParameterNotNullException("Parametro idSoglia non pu� essere null");
   
    HashMap<Integer,Integer> soglieSmell = soglie.get(idSmell);
    if(soglieSmell != null) {
      Integer soglia = soglieSmell.get(idSoglia);
      if(soglia != null) {
View Full Code Here

    }
  }
 
  public void modificaSoglia(Integer idSmell, Integer idSoglia, Integer nuovoValore) throws Exception {
    if(idSmell == null)
      throw new ParameterNotNullException("Parametro idSmell non pu� essere null");
   
    if(idSoglia == null)
      throw new ParameterNotNullException("Parametro idSoglia non pu� essere null");
   
    if(nuovoValore == null)
      throw new ParameterNotNullException("Parametro nuovoValore non pu� essere null");
   
    HashMap<Integer,Integer> soglieSmell = soglie.get(idSmell);
    if(soglieSmell != null) {
      Integer soglia = soglieSmell.get(idSoglia);
      if(soglia != null) {
View Full Code Here

    }
  }
 
  public synchronized Double calcolaMatrica(Metrica metrica, Posizione posizione) throws ParameterNotNullException, InterruptedException, ExecutionException {
    if(metrica == null)
      throw new ParameterNotNullException("Parametro metrica non pu� essere null");
   
    if(posizione == null)
      throw new ParameterNotNullException("Parametro posizione non pu� essere null");
   
    if(valoriMetriche.get(metrica).get(posizione) != null) {
      return valoriMetriche.get(metrica).get(posizione);
    }
   
View Full Code Here

    resetRisultati();
  }

  public void restituisciRisultato(OccorrenzaSmell occorrenzaSmell) throws ParameterNotNullException {
    if (occorrenzaSmell == null) {
      throw new ParameterNotNullException("Parametro occorrenzaSmell non pu� essere null");
    }

    if (smells.get(occorrenzaSmell.getSmell()) == null) {
      smells.put(occorrenzaSmell.getSmell(),
          new Smell(occorrenzaSmell.getSmell()));
View Full Code Here

    granularities = new HashSet<Granularita>();
  }

  public void esportaRisultati(String percorso) throws ParameterNotNullException {
    if (percorso == null) {
      throw new ParameterNotNullException("Parametro percorso non pu� essere null");
    }
   
    try {
      FileWriter fw = new FileWriter(percorso);
      String separator = ";";
View Full Code Here

TOP

Related Classes of jmav.exception.ParameterNotNullException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.