├── .gitignore ├── LICENSE ├── README.md ├── java-8-templates.xml ├── junit-templates.xml └── mockito-templates.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | (C) Copyright (c) 2016 Tasktop Technologies and others. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # eclipse-templates 2 | A set of [Eclipse templates](http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.cdt.doc.user%2Ftasks%2Fcdt_t_imp_code_temp.htm) to increase productivity used at [Tasktop Technologies](http://www.tasktop.com/). 3 | 4 | All files in this repository is published under terms of the [Apache 2.0 Software License](http://www.apache.org/licenses/LICENSE-2.0). -------------------------------------------------------------------------------- /java-8-templates.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junit-templates.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mockito-templates.xml: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------