# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /doma/jarda/netbeans-src/java/project # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: src/org/netbeans/modules/java/project/layer.xml *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/layer.xml Base (1.25) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/layer.xml Locally Modified (Based On 1.25) *************** *** 59,64 **** --- 59,65 ---- + *************** *** 67,72 **** --- 68,74 ---- + *************** *** 75,80 **** --- 77,83 ---- + *************** *** 83,88 **** --- 86,92 ---- + *************** *** 91,96 **** --- 95,101 ---- + *************** *** 99,104 **** --- 104,110 ---- + *************** *** 107,112 **** --- 113,119 ---- + *************** *** 115,120 **** --- 122,128 ---- + *************** *** 123,128 **** --- 131,137 ---- + *************** *** 132,137 **** --- 141,147 ---- + *************** *** 146,151 **** --- 156,164 ---- + + + Index: src/org/netbeans/modules/java/project/resources/Interface.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Interface.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Interface.template Locally Modified (Based On 1.1) *************** *** 1,17 **** ! /* ! * __NAME__.java ! * ! * Created on __DATE__, __TIME__ ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. ! */ package Templates.Classes; /** * ! * @author __USER__ */ public interface Interface { --- 1,13 ---- ! <#assign licenseFirst = "/*"> ! <#assign licensePrefix = " *"> ! <#assign licenseLast = " */"> ! <#include "license.txt"> package Templates.Classes; /** * ! * @author ${user} */ public interface Interface { Index: src/org/netbeans/modules/java/project/resources/Enum.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Enum.template Base (1.4) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Enum.template Locally Modified (Based On 1.4) *************** *** 1,17 **** ! /* ! * __NAME__.java ! * ! * Created on __DATE__, __TIME__ ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. ! */ package Templates.Classes; /** * ! * @author __USER__ */ public enum Enum { --- 1,13 ---- ! <#assign licenseFirst = "/*"> ! <#assign licensePrefix = " *"> ! <#assign licenseLast = " */"> ! <#include "license.txt"> package Templates.Classes; /** * ! * @author ${user} */ public enum Enum { Index: nbproject/project.xml *** /doma/jarda/netbeans-src/java/project/nbproject/project.xml Base (1.34) --- /doma/jarda/netbeans-src/java/project/nbproject/project.xml Locally Modified (Based On 1.34) *************** *** 100,105 **** --- 100,111 ---- + org.netbeans.modules.templates + + 1.0 + + + org.openide.actions Index: src/org/netbeans/modules/java/project/resources/license.txt *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/license.txt No Base Revision --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/license.txt Locally New *************** *** 1,0 **** --- 1,8 ---- + ${licenseFirst} + ${licensePrefix} ${name}.java + ${licensePrefix} + ${licensePrefix} Created on ${date}, ${time} + ${licensePrefix} + ${licensePrefix} To change this template, choose Tools | Template Manager + ${licensePrefix} and open the template in the editor. + ${licenseLast} Index: src/org/netbeans/modules/java/project/resources/AnnotationType.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/AnnotationType.template Base (1.4) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/AnnotationType.template Locally Modified (Based On 1.4) *************** *** 1,7 **** /* ! * __NAME__.java * ! * Created on __DATE__, __TIME__ * * To change this template, choose Tools | Template Manager * and open the template in the editor. --- 1,7 ---- /* ! * ${name}.java * ! * Created on ${date}, ${time} * * To change this template, choose Tools | Template Manager * and open the template in the editor. *************** *** 11,17 **** /** * ! * @author __USER__ */ public @interface AnnotationType { --- 11,17 ---- /** * ! * @author ${user} */ public @interface AnnotationType { Index: src/org/netbeans/modules/java/project/resources/Exception.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Exception.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Exception.template Locally Modified (Based On 1.1) *************** *** 1,22 **** ! /* ! * __NAME__.java ! * ! * Created on __DATE__, __TIME__ ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. ! */ package Templates.Classes; /** * ! * @author __USER__ */ public class Exception extends java.lang.Exception { /** ! * Creates a new instance of __NAME__ without detail message. */ public Exception() { } --- 1,18 ---- ! <#assign licenseFirst = "/*"> ! <#assign licensePrefix = " *"> ! <#assign licenseLast = " */"> ! <#include "license.txt"> package Templates.Classes; /** * ! * @author ${user} */ public class Exception extends java.lang.Exception { /** ! * Creates a new instance of ${name} without detail message. */ public Exception() { } *************** *** 23,29 **** /** ! * Constructs an instance of __NAME__ with the specified detail message. * @param msg the detail message. */ public Exception(String msg) { --- 19,25 ---- /** ! * Constructs an instance of ${name} with the specified detail message. * @param msg the detail message. */ public Exception(String msg) { Index: src/org/netbeans/modules/java/project/resources/JApplet.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/JApplet.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/JApplet.template Locally Modified (Based On 1.1) *************** *** 1,21 **** ! /* ! * __NAME__.java ! * ! * Created on __DATE__, __TIME__ ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. ! */ package Templates.Classes; /** * ! * @author __USER__ */ public class JApplet extends javax.swing.JApplet { ! /** Creates a new instance of __NAME__ */ public JApplet() { } --- 1,17 ---- ! <#assign licenseFirst = "/*"> ! <#assign licensePrefix = " *"> ! <#assign licenseLast = " */"> ! <#include "license.txt"> package Templates.Classes; /** * ! * @author ${user} */ public class JApplet extends javax.swing.JApplet { ! /** Creates a new instance of ${name} */ public JApplet() { } Index: src/org/netbeans/modules/java/project/resources/Applet.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Applet.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Applet.template Locally Modified (Based On 1.1) *************** *** 1,17 **** ! /* ! * __NAME__.java ! * ! * Created on __DATE__, __TIME__ ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. ! */ package Templates.Classes; /** * ! * @author __USER__ */ public class Applet extends java.applet.Applet { --- 1,13 ---- ! <#assign licenseFirst = "/*"> ! <#assign licensePrefix = " *"> ! <#assign licenseLast = " */"> ! <#include "license.txt"> package Templates.Classes; /** * ! * @author ${user} */ public class Applet extends java.applet.Applet { Index: src/org/netbeans/modules/java/project/resources/Empty.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Empty.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Empty.template Locally Modified (Based On 1.1) *************** *** 1,0 **** --- 1,4 ---- + <#assign licenseFirst = "/*"> + <#assign licensePrefix = " *"> + <#assign licenseLast = " */"> + <#include "license.txt"> Index: src/org/netbeans/modules/java/project/resources/Main.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Main.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Main.template Locally Modified (Based On 1.1) *************** *** 1,21 **** ! /* ! * __NAME__.java ! * ! * Created on __DATE__, __TIME__ ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. ! */ package Templates.Classes; /** * ! * @author __USER__ */ public class Main { ! /** Creates a new instance of __NAME__ */ public Main() { } --- 1,17 ---- ! <#assign licenseFirst = "/*"> ! <#assign licensePrefix = " *"> ! <#assign licenseLast = " */"> ! <#include "license.txt"> package Templates.Classes; /** * ! * @author ${user} */ public class Main { ! /** Creates a new instance of ${name} */ public Main() { } Index: src/org/netbeans/modules/java/project/resources/package-info.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/package-info.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/package-info.template Locally Modified (Based On 1.1) *************** *** 1,7 **** /* ! * __NAME__.java * ! * Created on __DATE__, __TIME__ * * To change this template, choose Tools | Template Manager * and open the template in the editor. --- 1,7 ---- /* ! * ${name}.java * ! * Created on ${date}, ${time} * * To change this template, choose Tools | Template Manager * and open the template in the editor. Index: src/org/netbeans/modules/java/project/resources/Class.template *** /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Class.template Base (1.1) --- /doma/jarda/netbeans-src/java/project/src/org/netbeans/modules/java/project/resources/Class.template Locally Modified (Based On 1.1) *************** *** 1,21 **** ! /* ! * __NAME__.java ! * ! * Created on __DATE__, __TIME__ ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. ! */ package Templates.Classes; /** * ! * @author __USER__ */ public class Class { ! /** Creates a new instance of __NAME__ */ public Class() { } --- 1,17 ---- ! <#assign licenseFirst = "/*"> ! <#assign licensePrefix = " *"> ! <#assign licenseLast = " */"> ! <#include "license.txt"> package Templates.Classes; /** * ! * @author ${user} */ public class Class { ! /** Creates a new instance of ${name} */ public Class() { } Index: manifest.mf *** /doma/jarda/netbeans-src/java/project/manifest.mf Base (1.20) --- /doma/jarda/netbeans-src/java/project/manifest.mf Locally Modified (Based On 1.20) *************** *** 2,7 **** --- 2,7 ---- OpenIDE-Module: org.netbeans.modules.java.project/1 OpenIDE-Module-Layer: org/netbeans/modules/java/project/layer.xml OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/java/project/Bundle.properties + OpenIDE-Module-Requires: javax.script.ScriptEngine.freemarker OpenIDE-Module-Specification-Version: 1.10