Package bo

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


            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

Related Classes of bo.Amplasament

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.