Home | History | Annotate | Download | only in boxes

Lines Matching refs:box

36  * A free box. Just a placeholder to enable editing without rewriting the whole file.
38 public class FreeBox implements Box {
41 List<Box> replacers = new LinkedList<Box>();
61 for (Box replacer : replacers) {
84 for (Box replacer : replacers) {
97 // It's quite expensive to map a file into the memory. Just do it when the box is larger than a MB.
107 public void addAndReplace(Box box) {
108 data.position(l2i(box.getSize()));
110 replacers.add(box);