com.scudata.cellset.IColCell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
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