Project

General

Profile

Download (729 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2009 EDIT European Distributed Institute of Taxonomy
3
 * http://www.e-taxonomy.eu
4
 *
5
 * The contents of this file are subject to the Mozilla Public License Version
6
 * 1.1 See LICENSE.TXT at the top of this package for the full license terms.
7
 */
8

    
9
package net.sf.json;
10

    
11

    
12
/**
13
 * Base class for JSON Beanprocessors.
14
 *
15
 * This class must be located in the net.sf.json since it
16
 * needs access to the protected static methods in {@link JSONObject}
17
 *
18
 * @author a.kohlbecker
19
 * @date 19.03.2009
20
 *
21
 */
22
public class CycleSetAcess{
23

    
24
	public void removeFromCycleSet(Object instance) {
25
		JSONObject.removeInstance(instance);
26
	}
27

    
28
	public void addToCycleSet(Object instance) {
29
		JSONObject.addInstance(instance);
30
	}
31

    
32
}
    (1-1/1)