1 17 18 19 20 21 27 28 package org.apache.fop.render.rtf.rtflib.testdocs; 29 30 import org.apache.fop.render.rtf.rtflib.rtfdoc.ITableColumnsInfo; 31 32 39 40 class DummyTableColumnsInfo implements ITableColumnsInfo { 41 42 public float getColumnWidth() { 43 return INVALID_COLUMN_WIDTH; 44 } 45 46 public void selectFirstColumn() { 47 } 48 49 public int getNumberOfColumns() { 50 return 0; 51 } 52 53 public int getColumnIndex() { 54 return 0; 55 } 56 57 public void selectNextColumn() { 58 } 59 60 63 public boolean getFirstSpanningCol() { 64 return false; 66 } 67 68 } | Popular Tags |