~ubuntu-branches/ubuntu/trusty/netbeans/trusty

« back to all changes in this revision

Viewing changes to j2ee/ejbcore/src/org/netbeans/modules/j2ee/ejbcore/resources/templates/EJB21CmpLocal.template

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<#assign licenseFirst = "/*">
 
2
<#assign licensePrefix = " * ">
 
3
<#assign licenseLast = " */">
 
4
<#include "../../Licenses/license-${project.license}.txt">
 
5
 
 
6
package ${package};
 
7
 
 
8
import javax.ejb.EJBLocalObject;
 
9
 
 
10
/**
 
11
 *
 
12
 * @author ${user}
 
13
 */
 
14
public interface ${name} extends EJBLocalObject {
 
15
 
 
16
    <#if !primaryKeyName??>
 
17
    ${primaryKey} getPk();
 
18
    </#if>
 
19
 
 
20
}