All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antiaction.raptor.sql.mssql.TreeEntry Maven / Gradle / Ivy

The newest version!
/*
 * Created on 05/05/2011
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */

package com.antiaction.raptor.sql.mssql;

public class TreeEntry {

	public int tree_id;

	public int from_id;

	public int from_level;

	public int to_id;

	public int to_level;

	public int delta_level;

	public TreeEntry() {
	}

	public TreeEntry(int tree_id, int from_id, int from_level, int to_id, int to_level, int delta_level) {
		this.tree_id = tree_id;
		this.from_id = from_id;
		this.from_level = from_level;
		this.to_id = to_id;
		this.to_level = to_level;
		this.delta_level = delta_level;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy