com.scudata.ide.spl.AtomicCell 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.ide.spl;
import java.util.Vector;
import com.scudata.cellset.datamodel.ColCell;
import com.scudata.cellset.datamodel.NormalCell;
import com.scudata.cellset.datamodel.PgmNormalCell;
import com.scudata.cellset.datamodel.RowCell;
import com.scudata.common.Area;
import com.scudata.common.StringUtils;
import com.scudata.ide.common.GC;
import com.scudata.ide.common.GM;
import com.scudata.ide.common.GV;
import com.scudata.ide.common.IAtomicCmd;
import com.scudata.ide.spl.control.ControlUtils;
import com.scudata.ide.spl.control.SplControl;
import com.scudata.ide.spl.control.SplEditor;
/**
* ??Ԫ???ԭ?Ӳ???
*
*/
public class AtomicCell implements IAtomicCmd {
/** ??Ԫ??ֵ */
public static final byte CELL_VALUE = 0;
/** ??Ԫ?????ʽ */
public static final byte CELL_EXP = 1;
/** ??Ԫ????ʾ */
public static final byte CELL_TIPS = 2;
/** ETL ?????༭???? */
public static final byte CELL_FUNC_OBJECT = 3;
/**
* ?п?
*/
public static final byte COL_WIDTH = 100;
/**
* ?и?
*/
public static final byte ROW_HEIGHT = 101;
/**
* ?п???
*/
public static final byte COL_VISIBLE = 103;
/**
* ?п???
*/
public static final byte ROW_VISIBLE = 104;
/**
* ???Ӷ???
*/
private Object cell;
/**
* ????????
*/
private byte property;
/**
* ֵ
*/
private Object value;
/**
* ????ؼ?
*/
private SplControl control;
/**
* ѡ?е??????б?
*/
private Vector
© 2015 - 2024 Weber Informatics LLC | Privacy Policy