Hi Admin,
I want to access the constant values from properties file. My purpose to avoid hard coded values like height, width, name etc
Got to use properties file only because i don't want to recompile over change in the constant value.
I do not mean Internationalization by this.
For Example:
=============
dynamicForm.setCellBorder(2);
dynamicForm.setWidth(300);
dynamicForm.setHeight(300);
I want some thing like:
======================
dynamicForm.setCellBorder(BORDER);
dynamicForm.setWidth(FORM.WIDTH);
dynamicForm.setHeight(FORM.HEIGHT);
Thanks in Advance
I want to access the constant values from properties file. My purpose to avoid hard coded values like height, width, name etc
Got to use properties file only because i don't want to recompile over change in the constant value.
I do not mean Internationalization by this.
For Example:
=============
dynamicForm.setCellBorder(2);
dynamicForm.setWidth(300);
dynamicForm.setHeight(300);
I want some thing like:
======================
dynamicForm.setCellBorder(BORDER);
dynamicForm.setWidth(FORM.WIDTH);
dynamicForm.setHeight(FORM.HEIGHT);
Thanks in Advance
Comment