first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
137
rus/WEB-INF/lib/jxl_src/jxl/HeaderFooter.java
Normal file
137
rus/WEB-INF/lib/jxl_src/jxl/HeaderFooter.java
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
package jxl;
|
||||
|
||||
public final class HeaderFooter extends jxl.biff.HeaderFooter {
|
||||
public static class Contents extends jxl.biff.HeaderFooter.Contents {
|
||||
Contents() {}
|
||||
|
||||
Contents(String s) {
|
||||
super(s);
|
||||
}
|
||||
|
||||
Contents(Contents copy) {
|
||||
super(copy);
|
||||
}
|
||||
|
||||
public void append(String txt) {
|
||||
super.append(txt);
|
||||
}
|
||||
|
||||
public void toggleBold() {
|
||||
super.toggleBold();
|
||||
}
|
||||
|
||||
public void toggleUnderline() {
|
||||
super.toggleUnderline();
|
||||
}
|
||||
|
||||
public void toggleItalics() {
|
||||
super.toggleItalics();
|
||||
}
|
||||
|
||||
public void toggleStrikethrough() {
|
||||
super.toggleStrikethrough();
|
||||
}
|
||||
|
||||
public void toggleDoubleUnderline() {
|
||||
super.toggleDoubleUnderline();
|
||||
}
|
||||
|
||||
public void toggleSuperScript() {
|
||||
super.toggleSuperScript();
|
||||
}
|
||||
|
||||
public void toggleSubScript() {
|
||||
super.toggleSubScript();
|
||||
}
|
||||
|
||||
public void toggleOutline() {
|
||||
super.toggleOutline();
|
||||
}
|
||||
|
||||
public void toggleShadow() {
|
||||
super.toggleShadow();
|
||||
}
|
||||
|
||||
public void setFontName(String fontName) {
|
||||
super.setFontName(fontName);
|
||||
}
|
||||
|
||||
public boolean setFontSize(int size) {
|
||||
return super.setFontSize(size);
|
||||
}
|
||||
|
||||
public void appendPageNumber() {
|
||||
super.appendPageNumber();
|
||||
}
|
||||
|
||||
public void appendTotalPages() {
|
||||
super.appendTotalPages();
|
||||
}
|
||||
|
||||
public void appendDate() {
|
||||
super.appendDate();
|
||||
}
|
||||
|
||||
public void appendTime() {
|
||||
super.appendTime();
|
||||
}
|
||||
|
||||
public void appendWorkbookName() {
|
||||
super.appendWorkbookName();
|
||||
}
|
||||
|
||||
public void appendWorkSheetName() {
|
||||
super.appendWorkSheetName();
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
super.clear();
|
||||
}
|
||||
|
||||
public boolean empty() {
|
||||
return super.empty();
|
||||
}
|
||||
}
|
||||
|
||||
public HeaderFooter() {}
|
||||
|
||||
public HeaderFooter(HeaderFooter hf) {
|
||||
super(hf);
|
||||
}
|
||||
|
||||
public HeaderFooter(String s) {
|
||||
super(s);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
|
||||
public Contents getRight() {
|
||||
return (Contents)getRightText();
|
||||
}
|
||||
|
||||
public Contents getCentre() {
|
||||
return (Contents)getCentreText();
|
||||
}
|
||||
|
||||
public Contents getLeft() {
|
||||
return (Contents)getLeftText();
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
super.clear();
|
||||
}
|
||||
|
||||
protected jxl.biff.HeaderFooter.Contents createContents() {
|
||||
return new Contents();
|
||||
}
|
||||
|
||||
protected jxl.biff.HeaderFooter.Contents createContents(String s) {
|
||||
return new Contents(s);
|
||||
}
|
||||
|
||||
protected jxl.biff.HeaderFooter.Contents createContents(jxl.biff.HeaderFooter.Contents c) {
|
||||
return new Contents((Contents)c);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue