MCPcopy Create free account
hub / github.com/apache/poi / clone

Method clone

src/java/org/apache/poi/hssf/record/IndexRecord.java:152–160  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

150 }
151
152 public Object clone() {
153 IndexRecord rec = new IndexRecord();
154 rec.field_2_first_row = field_2_first_row;
155 rec.field_3_last_row_add1 = field_3_last_row_add1;
156 rec.field_4_zero = field_4_zero;
157 rec.field_5_dbcells = new IntList();
158 rec.field_5_dbcells.addAll(field_5_dbcells);
159 return rec;
160 }
161}

Callers

nothing calls this directly

Calls 1

addAllMethod · 0.45

Tested by

no test coverage detected