Which looks kinda like what we had in the first place, using SWT.
### Styling using CSS and adding dynamic using Javascript
Because you are reading your view from a file which is located within a jar, once the application is built you cant just place your ```.css``` or your ```.js``` aside your page and hope it gets found, because it wont! What you need to do is illustrated in the following snippet:
This function reads the content of ```corefView.html```, ```corefView.css``` and ```corefView.js``` using an inputstream and IOUtils of apache.commons.io. Next, by using JSoup, a ```<script>``` and a ```<style>``` element is added to the header in order to integrate the styling and functions to your page.