Archive for the “Uncategorized” Category
SWT Browser Widget with Mozilla (SWT.MOZILLA)
We can use browser inside our java application with SWT browser widget. We can load external HTML pages or websites into our applications using it.
Normal way to initialize browser widget in your application is following.
Browser browser = new Browser(shell, SWT.NONE);
This will create a widget with OS specific browser instance. If you are in windows, Internet Explorer will be your browser host....
Introduction to Aspects
Application-context.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
...