From aed3d95a5b6338e15f2630b81bdbecee5cad4e9e Mon Sep 17 00:00:00 2001 From: wilian Date: Mon, 29 Jun 2015 19:57:34 +0000 Subject: [PATCH] fixes bug #6413 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@45519 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/utilerias/ApplicationProperties.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index e336399a3..04f3fbf25 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -150,4 +150,9 @@ public class ApplicationProperties { return property.equals("1"); } + public boolean diagramaAutobusTrem() { + String property = p.getProperty("layoutdiagramaautobus.trem", "0"); + return property.equals("1"); + } + }