KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > pooka > SignatureGeneratorImpl


1 package net.suberic.pooka;
2
3 /**
4  * A convenience class which implements setProfile and getProfile.
5  */

6 public abstract class SignatureGeneratorImpl implements SignatureGenerator {
7
8     protected UserProfile profile;
9
10     public void setProfile(UserProfile p) {
11     profile = p;
12     }
13
14     public UserProfile getProfile() {
15     return profile;
16     }
17 }
18
Popular Tags