Searched defs:RopeUtilities (Results 1 - 1 of 1) sorted by relevance

/ropes-1.2.2/src/org/ahmadsoft/ropes/impl/
H A DRopeUtilities.java2 * RopeUtilities.java
35 class RopeUtilities { class
41 public static RopeUtilities INSTANCE = new RopeUtilities();
51 if (r instanceof AbstractRope && ((AbstractRope) r).depth() > RopeUtilities.MAX_ROPE_DEPTH) {
112 if (depth >= RopeUtilities.FIBONACCI.length - 2)
114 return (RopeUtilities.FIBONACCI[depth + 2] <= r.length()); // TODO: not necessarily valid w/e.g. padding char sequences.
160 out.print(RopeUtilities.SPACES.substring(0,depth*2));
165 out.print(RopeUtilities.SPACES.substring(0,depth*2));
170 out.print(RopeUtilities
[all...]

Completed in 2 milliseconds