Examples of Oborudovanie


Examples of com.vst.model.Oborudovanie

                            "<li>Маркировка: " + o.getMarks() +
                            "<li>Давление:   " + o.getPressure() + "</ul</a></td></tr>";
                }

                for (int i = 0; i < oborList.size(); i++) {
                    Oborudovanie o = (Oborudovanie) oborList.get(i);
                    result += "<tr><td>" + o.getDetailTypes().getTypeName() + "</td><td><a href=\"" + httpServletRequest.getRequestURL().toString().replaceAll("/lookDiameter.html", "") + "/lookDetail.html?type=oborudovanie\"><ul>" +
                            "<li>" + o.getGost().getGostName() +
                            "<li>Диаметр:   " + o.getDiametr() +
                            "<li>Название:  " + o.getName() +
                            "<li>Стоимость:   " + o.getExpenses() +
                            "<li>Давление:  " + o.getPressure() + "</ul></a></td></tr>";
                }

                result += "</table>";
            } else {
                diameterManager.delete(diameter);
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.