This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Copyright (c) 2010, 2011 SAP AG and others. All rights reserved. This | |
| program and the accompanying materials are made available under the terms | |
| of the Eclipse Public License v1.0 which accompanies this distribution, and | |
| is available at http://www.eclipse.org/legal/epl-v10.html Contributors: SAP | |
| AG - initial API and implementation --> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # --- !Ups | |
| CREATE TABLE users( | |
| email VARCHAR(255) NOT NULL PRIMARY KEY, | |
| name VARCHAR(255) | |
| ); | |
| CREATE TABLE subjects( | |
| id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
| title LONGTEXT NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ©2012 Viktor Klang | |
| package akka.klang | |
| import akka.dispatch.{ DispatcherPrerequisites, ExecutorServiceFactory, ExecutorServiceConfigurator } | |
| import com.typesafe.config.Config | |
| import java.util.concurrent.{ ExecutorService, AbstractExecutorService, ThreadFactory, TimeUnit } | |
| import java.util.Collections | |
| import javax.swing.SwingUtilities |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="java" deleted="false" description="" enabled="true" name="setup">${:import(org.junit.Before)} | |
| @Before | |
| public void setUp() { | |
| ${cursor} | |
| }</template><template autoinsert="true" context="java" deleted="false" description="" enabled="true" name="teardown">${:import(org.junit.After)} | |
| @After | |
| public void tearDown() { | |
| ${cursor} | |
| }</template><template autoinsert="false" context="java-members" deleted="false" description="test method" enabled="true" id="org.eclipse.jdt.ui.templates.test" name="test">${:import(org.junit.Test)} | |
| @Test |
NewerOlder