Examples of Amplasament


Examples of bo.Amplasament

    }

    public String getAmplasamentSelectat() {
        if (getIdAmplasamentCurent() > 0) {
            AmplasamentDao amplasamentDao = new AmplasamentDao();
            Amplasament a = amplasamentDao.getAmplasamentByID(getIdAmplasamentCurent());
            return a.getLocatie();
        }
        return "";
    }
View Full Code Here

Examples of bo.Amplasament

            int idProiect;
            while (it.hasNext()) {
                idProiect = ((Proiect) it.next()).getIdProiect();
                List<Amplasament> amplasamenteDinProiecte = amplasamentDao.getAmplasamenteByProiectId(idProiect);
                for (int i = 0; i < amplasamenteDinProiecte.size(); i++) {
                    Amplasament amplasament = amplasamenteDinProiecte.get(i);
                    if (amplasament.getIdGeolog() != getIdGeologLogat()) {
                        amplasamente.add(amplasament);
                    }
                }
            }
        } else { //daca sunt proiecte publice
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.