|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Transient.java | - | - | - | - |
|
1 | /* | |
2 | * JBoss, Home of Professional Open Source | |
3 | * | |
4 | * Distributable under LGPL license. | |
5 | * See terms of license at gnu.org. | |
6 | */ | |
7 | ||
8 | package org.jboss.cache.pojo.annotation; | |
9 | ||
10 | import java.lang.annotation.ElementType; | |
11 | import java.lang.annotation.Retention; | |
12 | import java.lang.annotation.RetentionPolicy; | |
13 | import java.lang.annotation.Target; | |
14 | ||
15 | /** | |
16 | * Annoataion that declares a field is transient (i.e., no-replicatable). | |
17 | * | |
18 | * @author Ben Wang | |
19 | * Date: Jan 22, 2006 | |
20 | * @version $Id: Transient.java,v 1.1 2007/01/13 15:55:05 bwang Exp $ | |
21 | */ | |
22 | @Retention(RetentionPolicy.RUNTIME) | |
23 | @Target(ElementType.FIELD) | |
24 | public @interface Transient | |
25 | { | |
26 | } |
|