1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/* Glazed Lists (c) 2003-2006 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.impl.adt.barcode2;
import java.util.AbstractList;
import java.util.List;
/*
m4_include(source/ca/odell/glazedlists/impl/adt/barcode2/JavaMacros.m4)
m4_include(source/ca/odell/glazedlists/impl/adt/barcode2/TreeMacros.m4)
*/
/*[ BEGIN_M4_JAVA ]*/
/**
* Adapt a {@link BciiTree} for use as a {@link List}.
*
* @author <a href="mailto:jesse@swank.ca">Jesse Wilson</a>
*/
public class BciiTreeAsList/*[ TYPELIST_START ]*/ <T0,T1> /*[ TYPELIST_END ]*/ extends AbstractList<T0> {
private final BciiTree/*[ TYPELIST_START ]*/ <T0,T1> /*[ TYPELIST_END ]*/ tree;
/*[ COLORED_START ]*/
private final byte colors;
/** the color of inserted or added elements */
private final byte color;
/*[ COLORED_END ]*/
/*[ COLORED_START ]*/
/**
* Create a new {@link BciiTreeAsList} adapting the specified tree.
*/
public BciiTreeAsList/**/(BciiTree tree) {
this(tree, tree.getCoder().colorsToByte(tree.getCoder().getColors()), (byte)1);
}
/*[ COLORED_END ]*/
/**
* Create a new {@link BciiTreeAsList}, adapting the specified colors subset
* of the specified tree. Inserted elements via {@link #add} will be of the
* specified color.
*/
public BciiTreeAsList/**/(BciiTree/*[ TYPELIST_START ]*/ <T0,T1> /*[ TYPELIST_END ]*/ tree /*[ COLORED_START ]*/ , byte colors, byte color /*[ COLORED_END ]*/) {
this.tree = tree;
/*[ COLORED_START ]*/
this.colors = colors;
this.color = color;
/*[ COLORED_END ]*/
}
/** {@inheritDoc} */
@Override
public T0 get(int index) {
return tree.get(index /*[ COLORED_START ]*/, colors /*[ COLORED_END ]*/).get();
}
/** {@inheritDoc} */
@Override
public void add(int index, T0 element) {
tree.add(index, /*[ COLORED_START ]*/ colors, color, /*[ COLORED_END ]*/ element, 1);
}
/** {@inheritDoc} */
@Override
public T0 set(int index, T0 element) {
T0 replaced = get(index);
tree.set(index, /*[ COLORED_START ]*/ colors, color, /*[ COLORED_END ]*/ element, 1);
return replaced;
}
/** {@inheritDoc} */
@Override
public T0 remove(int index) {
T0 removed = get(index);
tree.remove(index, /*[ COLORED_START ]*/ colors, /*[ COLORED_END ]*/ 1);
return removed;
}
/** {@inheritDoc} */
@Override
public int size() {
return tree.size(/*[ COLORED_START ]*/ colors /*[ COLORED_END ]*/);
}
}
/*[ END_M4_JAVA ]*/
|