125 lines
3.1 KiB
Plaintext
125 lines
3.1 KiB
Plaintext
![]() |
-------------------IN 'TEMPLATES'-------------
|
||
|
Class:
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2013 Honyee Industry Group Co., Ltd
|
||
|
* www.honyee.biz
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This software is the confidential and proprietary information of
|
||
|
* Honyee Industry Group Co., Ltd ("Confidential Information").
|
||
|
* You shall not disclose such Confidential Information and shall use
|
||
|
* it only in accordance with the terms of the license agreement you
|
||
|
* entered into with Honyee Industry Group Co., Ltd.
|
||
|
*/
|
||
|
package ${PACKAGE_NAME};
|
||
|
|
||
|
#parse("File Header.java")
|
||
|
public class ${NAME} {
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
Interface:
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2013 Honyee Industry Group Co., Ltd
|
||
|
* www.honyee.biz
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This software is the confidential and proprietary information of
|
||
|
* Honyee Industry Group Co., Ltd ("Confidential Information").
|
||
|
* You shall not disclose such Confidential Information and shall use
|
||
|
* it only in accordance with the terms of the license agreement you
|
||
|
* entered into with Honyee Industry Group Co., Ltd.
|
||
|
*/
|
||
|
package ${PACKAGE_NAME};
|
||
|
|
||
|
#parse("File Header.java")
|
||
|
|
||
|
public interface ${NAME} {
|
||
|
}
|
||
|
|
||
|
|
||
|
Enum:
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2013 Honyee Industry Group Co., Ltd
|
||
|
* www.honyee.biz
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This software is the confidential and proprietary information of
|
||
|
* Honyee Industry Group Co., Ltd ("Confidential Information").
|
||
|
* You shall not disclose such Confidential Information and shall use
|
||
|
* it only in accordance with the terms of the license agreement you
|
||
|
* entered into with Honyee Industry Group Co., Ltd.
|
||
|
*/
|
||
|
package ${PACKAGE_NAME};
|
||
|
|
||
|
#parse("File Header.java")
|
||
|
|
||
|
public enum ${NAME} {
|
||
|
}
|
||
|
|
||
|
|
||
|
AnnotationType:
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2013 Honyee Industry Group Co., Ltd
|
||
|
* www.honyee.biz
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This software is the confidential and proprietary information of
|
||
|
* Honyee Industry Group Co., Ltd ("Confidential Information").
|
||
|
* You shall not disclose such Confidential Information and shall use
|
||
|
* it only in accordance with the terms of the license agreement you
|
||
|
* entered into with Honyee Industry Group Co., Ltd.
|
||
|
*/
|
||
|
package ${PACKAGE_NAME};
|
||
|
|
||
|
#parse("File Header.java")
|
||
|
|
||
|
public @interface ${NAME} {
|
||
|
}
|
||
|
|
||
|
------------------IN 'CODE'-------------
|
||
|
Implemented, New & Overridden method body:
|
||
|
throw new UnsupportedOperationException("Not yet implemented");
|
||
|
|
||
|
Catch Statement Body
|
||
|
${EXCEPTION}.printStackTrace();
|
||
|
|
||
|
|
||
|
|
||
|
-----------------IN 'INCLUDES'--------------------
|
||
|
ActionScript File Header , File Header: please replace the author.
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author Shengzhao Li
|
||
|
*/
|
||
|
|
||
|
|
||
|
-----------------IN 'Java EE'--------------------
|
||
|
Web -> Jsp files -> Jsp File.jsp
|
||
|
Change the comment content as follow, change the author to self name.
|
||
|
|
||
|
<%--
|
||
|
* Copyright (c) 2013 Honyee Industry Group Co., Ltd
|
||
|
* www.honyee.biz
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This software is the confidential and proprietary information of
|
||
|
* Honyee Industry Group Co., Ltd ("Confidential Information").
|
||
|
* You shall not disclose such Confidential Information and shall use
|
||
|
* it only in accordance with the terms of the license agreement you
|
||
|
* entered into with Honyee Industry Group Co., Ltd.
|
||
|
--%>
|
||
|
<%--
|
||
|
*
|
||
|
* @author Shengzhao Li
|
||
|
--%>
|
||
|
|
||
|
|
||
|
|