KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > j2ee > tmp > impl > TmpImpl


1 /*
2  * TmpImpl.java
3  *
4  * Created on July 22, 2005, 1:13 PM
5  *
6  * To change this template, choose Tools | Options and locate the template under
7  * the Source Creation and Management node. Right-click the template and choose
8  * Open. You can then make changes to the template in the Source Editor.
9  */

10
11 package org.netbeans.test.j2ee.tmp.impl;
12
13 import org.netbeans.test.j2ee.tmp.TmpI;
14
15 /**
16  *
17  * @author jungi
18  */

19 public class TmpImpl implements TmpI {
20     
21     /** Creates a new instance of TmpImpl */
22     public TmpImpl() {
23     }
24
25     public String JavaDoc toString() {
26         return "Temporary Implementation";
27     }
28     
29     
30     
31 }
32
Popular Tags