cleanup
[cdmlib.git] / cdmlib-remote / src / main / java / net / sf / json / CycleSetAccess.java
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 package net.sf.json;
9
10 /**
11 * Base class for JSON Beanprocessors.
12 *
13 * This class must be located in the net.sf.json since it
14 * needs access to the protected static methods in {@link JSONObject}
15 *
16 * @author a.kohlbecker
17 * @since 19.03.2009
18 */
19 public class CycleSetAccess{
20
21 public void removeFromCycleSet(Object instance) {
22 AbstractJSON.removeInstance(instance);
23 }
24
25 public void addToCycleSet(Object instance) {
26 AbstractJSON.addInstance(instance);
27 }
28
29 }