KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > dna > api > LiteralAction


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.dna.api;
5
6
7 /**
8  * A Literal Value Action.
9  */

10 public class LiteralAction {
11   private final Object JavaDoc value;
12
13   public LiteralAction(Object JavaDoc value) {
14     this.value = value;
15   }
16   
17   public Object JavaDoc getObject() {
18     return this.value;
19   }
20 }
Popular Tags