KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > builders > VersionCacheWhenNode


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.module.builders;
11
12 import java.util.*;
13
14 /**
15  * @javadoc
16  * @deprecated is this (cacheversionfile) used? seems obsolete now
17  * @author Daniel Ockeloen
18  * @version $Id: VersionCacheWhenNode.java,v 1.4 2004/10/08 13:03:44 pierre Exp $
19  */

20 public class VersionCacheWhenNode extends Object JavaDoc {
21
22     private Vector types = new Vector();
23     private Vector nodes = new Vector();
24
25     public void addType(String JavaDoc type) {
26         types.addElement(type);
27     }
28
29     public void addNode(String JavaDoc node) {
30         nodes.addElement(node);
31     }
32
33     public Vector getTypes() {
34         return types;
35     }
36
37     public Vector getNodes() {
38         return nodes;
39     }
40 }
41
Popular Tags