KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > xml > querying > impl > xtas > object > plugins > SyntheticalRoot


1 package org.exoplatform.services.xml.querying.impl.xtas.object.plugins;
2
3 import java.util.Collection JavaDoc;
4
5 /**
6  * Root object for custom mapping.
7  * (It is possible for Castor mapping only)
8  * @version $Id: SyntheticalRoot.java 566 2005-01-25 12:50:49Z kravchuk $
9  */

10 public class SyntheticalRoot {
11     private Collection JavaDoc objects;
12
13     public Collection JavaDoc getObjects(){ return objects; }
14
15     public void setObjects(Collection JavaDoc objects){ this.objects = objects; }
16 }
17
Popular Tags