Exemplo n.º 1
0
 public ICellStyle getStyle() {
   return delegate.getStyle();
 }
Exemplo n.º 2
0
 public ICellFont getFont() {
   return delegate.getFont();
 }
Exemplo n.º 3
0
 public double getNativeNumber() {
   return delegate.getNativeNumber();
 }
Exemplo n.º 4
0
 public IGridRegion getAbsoluteRegion() {
   // return delegate.getAbsoluteRegion();
   return new GridRegion(
       delegate.getRow(), delegate.getColumn(), delegate.getRow(), delegate.getColumn());
 }
Exemplo n.º 5
0
 public int getWidth() {
   if (region == null) {
     return delegate.getWidth();
   }
   return region.getRight() - region.getLeft() + 1;
 }
Exemplo n.º 6
0
 public int getType() {
   return delegate.getType();
 }
Exemplo n.º 7
0
 public ICellComment getComment() {
   return delegate.getComment();
 }
Exemplo n.º 8
0
 public String getStringValue() {
   return delegate.getStringValue();
 }
Exemplo n.º 9
0
 public CellMetaInfo getMetaInfo() {
   return delegate.getMetaInfo();
 }
Exemplo n.º 10
0
 public void setMetaInfo(CellMetaInfo metaInfo) {
   delegate.setMetaInfo(metaInfo);
 }
Exemplo n.º 11
0
 public Date getNativeDate() {
   return delegate.getNativeDate();
 }
Exemplo n.º 12
0
 public boolean hasNativeType() {
   return delegate.hasNativeType();
 }
Exemplo n.º 13
0
 public int getNativeType() {
   return delegate.getNativeType();
 }
Exemplo n.º 14
0
 public int getHeight() {
   if (region == null) {
     return delegate.getHeight();
   }
   return region.getBottom() - region.getTop() + 1;
 }
Exemplo n.º 15
0
 public IFormatter getDataFormatter() {
   return delegate.getDataFormatter();
 }
Exemplo n.º 16
0
 public Object getObjectValue() {
   return delegate.getObjectValue();
 }
Exemplo n.º 17
0
 public ICell getTopLeftCellFromRegion() {
   return delegate.getTopLeftCellFromRegion();
 }
Exemplo n.º 18
0
 public String getFormattedValue() {
   return delegate.getFormattedValue();
 }
Exemplo n.º 19
0
 public int getAbsoluteColumn() {
   return delegate.getAbsoluteColumn();
 }
Exemplo n.º 20
0
 public String getFormula() {
   return delegate.getFormula();
 }
Exemplo n.º 21
0
 public int getAbsoluteRow() {
   return delegate.getAbsoluteRow();
 }
Exemplo n.º 22
0
 public String getUri() {
   return delegate.getUri();
 }
Exemplo n.º 23
0
 public boolean getNativeBoolean() {
   return delegate.getNativeBoolean();
 }