Package Modules

Examples of Modules.RestrictionRoomType


     * Consultora de una restriccion del tipo Sala-Objeto.  
     * @param id Identificador de la restriccion.
     * @param list Array en el que se devolveran las caracteristicas de la restriccion.
     */
    public void getRestrictionRoomType(int id, String[] list){
        RestrictionRoomType R = this.cjtRestrictions.getRestrictionRoomType(id);

        list[0] = R.getName();
        list[1] = cjtRoomTypes.getRoomType(R.getObject1()).getName();
        list[2] = cjtObjects.getElement(R.getObject2()).getName();
        if(R.getAllow()){
            list[3] "Si";
        }
        else{
            list[3] = "No";
        }
View Full Code Here

TOP

Related Classes of Modules.RestrictionRoomType

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.