<%-- __________________________________________________________________________________________ Deteremines existance of class level String variable (defined by plugin code in name is the name of the variable checked. returns true if the variable is defined otherwise returns false This method is used by includes to determine if associated css/javascript etc needs to be included in the __________________________________________________________________________________________ --%><%! public boolean isRevizePluginActive(String name) { boolean status = false; try { this.getClass().getDeclaredField(name); status = true; } catch (Exception e) {} return status; } %>