##New stuff in Java 1.7
Method or Field: java.applet.Applet.isValidateRoot
Method or Field: java.awt.Component.revalidate
Method or Field: java.awt.Container.isValidateRoot
Method or Field: java.awt.event.InvocationEvent.isDispatched
| @Grab( 'org.apache.poi:poi:3.9' ) | |
| import static org.apache.poi.ss.usermodel.CellStyle.* | |
| import static org.apache.poi.ss.usermodel.IndexedColors.* | |
| import org.apache.poi.hssf.usermodel.HSSFWorkbook | |
| new HSSFWorkbook().with { workbook -> | |
| def styles = [ LIGHT_BLUE, LIGHT_GREEN, LIGHT_ORANGE ].collect { color -> | |
| createCellStyle().with { style -> | |
| fillForegroundColor = color.index | |
| fillPattern = SOLID_FOREGROUND |
##New stuff in Java 1.7
Method or Field: java.applet.Applet.isValidateRoot
Method or Field: java.awt.Component.revalidate
Method or Field: java.awt.Container.isValidateRoot
Method or Field: java.awt.event.InvocationEvent.isDispatched
##New stuff in Java 1.7
Method or Field: java.applet.Applet.isValidateRoot
Method or Field: java.awt.Component.revalidate
Method or Field: java.awt.Container.isValidateRoot
Method or Field: java.awt.event.InvocationEvent.isDispatched
| <beans xmlns="http://xmlns.jcp.org/xml/ns/javaee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd" | |
| version="1.1" bean-discovery-mode="all"> | |
| </beans> |
| <validation-config | |
| xmlns="http://jboss.org/xml/ns/javax/validation/configuration" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://jboss.org/xml/ns/javax/validation/configuration validation-configuration-1.1.xsd" | |
| version="1.1"> | |
| </validation-config> |
| <ejb-jar xmlns="http://xmlns.jcp.org/xml/ns/javaee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/ejb-jar_3_2.xsd" | |
| version="3.2"> | |
| </ejb-jar> |
| <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" | |
| version="3.1"> | |
| </web-app> |
| <faces-config xmlns="http://xmlns.jcp.org/xml/ns/javaee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd" | |
| version="2.2"> | |
| </faces-config> |
| <html xmlns="http://www.w3.org/1999/xhtml" | |
| xmlns:h="http://xmlns.jcp.org/jsf/html" | |
| xmlns:ui="http://xmlns.jcp.org/jsf/facelets"> | |
| </html> |
| <webservices xmlns="http://xmlns.jcp.org/xml/ns/javaee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_1_4.xsd" | |
| version="1.4"> | |
| </webservices> |