first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
65
rus/WEB-INF/lib/jxl_src/jxl/write/WritableCellFeatures.java
Normal file
65
rus/WEB-INF/lib/jxl_src/jxl/write/WritableCellFeatures.java
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
package jxl.write;
|
||||
|
||||
import java.util.Collection;
|
||||
import jxl.CellFeatures;
|
||||
import jxl.biff.BaseCellFeatures;
|
||||
|
||||
public class WritableCellFeatures extends CellFeatures {
|
||||
public static final BaseCellFeatures.ValidationCondition BETWEEN = BaseCellFeatures.BETWEEN;
|
||||
|
||||
public static final BaseCellFeatures.ValidationCondition NOT_BETWEEN = BaseCellFeatures.NOT_BETWEEN;
|
||||
|
||||
public static final BaseCellFeatures.ValidationCondition EQUAL = BaseCellFeatures.EQUAL;
|
||||
|
||||
public static final BaseCellFeatures.ValidationCondition NOT_EQUAL = BaseCellFeatures.NOT_EQUAL;
|
||||
|
||||
public static final BaseCellFeatures.ValidationCondition GREATER_THAN = BaseCellFeatures.GREATER_THAN;
|
||||
|
||||
public static final BaseCellFeatures.ValidationCondition LESS_THAN = BaseCellFeatures.LESS_THAN;
|
||||
|
||||
public static final BaseCellFeatures.ValidationCondition GREATER_EQUAL = BaseCellFeatures.GREATER_EQUAL;
|
||||
|
||||
public static final BaseCellFeatures.ValidationCondition LESS_EQUAL = BaseCellFeatures.LESS_EQUAL;
|
||||
|
||||
public WritableCellFeatures() {}
|
||||
|
||||
public WritableCellFeatures(CellFeatures cf) {
|
||||
super(cf);
|
||||
}
|
||||
|
||||
public void setComment(String s) {
|
||||
super.setComment(s);
|
||||
}
|
||||
|
||||
public void setComment(String s, double width, double height) {
|
||||
super.setComment(s, width, height);
|
||||
}
|
||||
|
||||
public void removeComment() {
|
||||
super.removeComment();
|
||||
}
|
||||
|
||||
public void removeDataValidation() {
|
||||
super.removeDataValidation();
|
||||
}
|
||||
|
||||
public void setDataValidationList(Collection c) {
|
||||
super.setDataValidationList(c);
|
||||
}
|
||||
|
||||
public void setDataValidationRange(int col1, int row1, int col2, int row2) {
|
||||
super.setDataValidationRange(col1, row1, col2, row2);
|
||||
}
|
||||
|
||||
public void setDataValidationRange(String namedRange) {
|
||||
super.setDataValidationRange(namedRange);
|
||||
}
|
||||
|
||||
public void setNumberValidation(double val, BaseCellFeatures.ValidationCondition c) {
|
||||
super.setNumberValidation(val, c);
|
||||
}
|
||||
|
||||
public void setNumberValidation(double val1, double val2, BaseCellFeatures.ValidationCondition c) {
|
||||
super.setNumberValidation(val1, val2, c);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue