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

com.scudata.cellset.IColCell Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

The newest version!
package com.scudata.cellset;

import java.io.Externalizable;

import com.scudata.common.*;

public interface IColCell
	extends ICloneable, Externalizable, IRecord {

	/**
	 * ?????к?
	 * @return int
	 */
	public int getCol();

	/**
	 * ?????к?
	 * @param col int
	 */
	public void setCol(int col);

	/**
	 * ?????п?
	 * @return float
	 */
	public float getWidth();

	/**
	 * ?????п?
	 * @param w float
	 */
	public void setWidth(float w);

	/**
	 * ???ز??
	 * @return int
	 */
	public int getLevel();

	/**
	 * ???ò??
	 * @param level int
	 */
	public void setLevel(int level);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy