Skip to content
test.java 1.65 KiB
Newer Older
xtof's avatar
xtof committed
/**
xtof's avatar
xtof committed
 *
 * <b>Description : </b>
 *
 *
xtof's avatar
xtof committed
 * <p>Projet : JOSAST <BR>
xtof's avatar
xtof committed
 *
xtof's avatar
xtof committed
 * <br>
xtof's avatar
xtof committed
 * <b>JOSAST</b> : Java Open Source Amateur Satellite  Toolbox
xtof's avatar
xtof committed
 * <br>The aim of the project is to create a set of tools for amateur satellite purpose. All this tools could be used together to create specific software.
 * <b>JOSAST</b> project is managed by AVMDTI (<A HREF="http://www.avmdti.org">http://www.avmdti.org </a> )
 * <br> This software is an open source software. Please read the <b><i>JOSAST licence</b></i><BR>(<A HREF="http://www.avmdti.org">http://www.avmdti.org </a> )
 * <p>for more information contact <a href="mailto:josast@avmdti.org">josast@avmdti.org</a></p>
 * @author  <a href="mailto:mercier.josast@avmdti.org">mercier</a>
 * @version 1.0
 * <p><b><i> Source Update </b></i></p>
xtof's avatar
xtof committed
 * <br> Version : date 		: name 		: comments
xtof's avatar
xtof committed
 * <br> V1      : 3 mars 2004	: C. Mercier 	: create file
 * <p>
 */
package org.avmdti.josast.config.databinding;

import java.util.Vector;

import org.josast.config.databinding.AbstractDataBinding;


public class test extends AbstractDataBinding {

	private static final long serialVersionUID = 1L;
xtof's avatar
xtof committed
	private int toto;
	private Vector<String> V = new Vector<String>();
	public test() {
xtof's avatar
xtof committed
		V.add("essai");
		V.add("test");
	}

	/**
	 * @return
	 */
	public int getToto() {
		return toto;
	}

	/**
	 * @param i
	 */
xtof's avatar
xtof committed
	public void setToto(final int i) {
xtof's avatar
xtof committed
		toto = i;
	}


	/**
	 * @return
	 */
xtof's avatar
xtof committed
	public Vector<String> getV() {
xtof's avatar
xtof committed
		return V;
	}

	/**
	 * @param vector
	 */
xtof's avatar
xtof committed
	public void setV(final Vector<String> vector) {
xtof's avatar
xtof committed
		V = vector;
	}
xtof's avatar
xtof committed

	public static void main(String[] strings) {
xtof's avatar
xtof committed
		test t = new test();
		t.setFolder("D:\\temps2");
		t.setToto(4);
		t.save();
	}

}