Package Modules

Examples of Modules.RestrictionDistance


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

        list[0] = R.getName();
        list[1] = cjtObjects.getElement(R.getObject1()).getName();
        list[2] = cjtObjects.getElement(R.getObject2()).getName();
        list[3] = Integer.toString(R.getDistance());
    }
View Full Code Here

TOP

Related Classes of Modules.RestrictionDistance

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.