From 500d88f0b33ccdec130e2676bdd6e82cf385841a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Thu, 6 Oct 2011 10:31:37 +0200 Subject: add Context class --- vaadin-app/src/ch/asynk/helloworld/Context.java | 55 +++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 vaadin-app/src/ch/asynk/helloworld/Context.java diff --git a/vaadin-app/src/ch/asynk/helloworld/Context.java b/vaadin-app/src/ch/asynk/helloworld/Context.java new file mode 100644 index 0000000..c59016d --- /dev/null +++ b/vaadin-app/src/ch/asynk/helloworld/Context.java @@ -0,0 +1,55 @@ +package ch.asynk.helloworld; + +import java.util.Properties; +import java.util.logging.Level; +import java.util.logging.Logger; + +public class Context { + // + private static final long serialVersionUID = 1L; + // + private Logger log = Logger.getLogger("ch.asynk"); + public Logger getLogger() { + return log; + } + // + private Properties props = null; + public Properties getProps() { + return props; + } + // + private HelloWorldApp app = null; + public HelloWorldApp getApp() { + return app; + } + // + public Context(HelloWorldApp application) { + app = application; + initProps(); + } + // + private void initProps() { + props = new Properties(); + // + String properties_file = "Application.properties"; + log.info("doing stuff : "); + java.io.InputStream is = null; + try { + is = HelloWorldApp.class.getClassLoader().getResourceAsStream(properties_file); + } + catch(java.lang.Exception x) { + log.log(Level.SEVERE,"Error loading "+properties_file+"' properties",x); + return; + } + if (is!=null) { + try { + props.load(is); + } + catch (java.io.IOException e) { + log.log(Level.SEVERE,"Error reading properties '"+properties_file+"' ",e); + } + } else { + log.warning("'"+properties_file+"' file not found"); + } + } +} -- cgit v1.1-2-g2b99