1 36 package jline; 37 38 import java.util.*; 39 40 49 public class MultiCompletor 50 implements Completor 51 { 52 Completor [] completors = new Completor [0]; 53 54 55 58 public MultiCompletor () 59 { 60 this (new Completor [0]); 61 } 62 63 64 68 public MultiCompletor (final List completors) 69 { 70 this ((Completor [])completors.toArray ( 71 new Completor [completors.size ()])); 72 } 73 74 75 79 public MultiCompletor (final Completor [] completors) 80 { 81 this.completors = completors; 82 } 83 84 85 public int complete (final String buffer, final int pos, final List cand) 86 { 87 int [] positions = new int [completors.length]; 88 List [] copies = new List [completors.length]; 89 for (int i = 0; i < completors.length; i++) 90 { 91 copies [i] = new LinkedList (cand); 93 positions [i] = completors [i].complete (buffer, pos, copies [i]); 94 } 95 96 int maxposition = -1; 97 for (int i = 0; i < positions.length; i++) 98 maxposition = Math.max (maxposition, positions [i]); 99 100 for (int i = 0; i < copies.length; i++) 103 { 104 if (positions [i] == maxposition) 105 cand.addAll (copies [i]); 106 } 107 108 return maxposition; 109 } 110 111 112 public void setCompletors (final Completor [] completors) 113 { 114 this.completors = completors; 115 } 116 117 118 public Completor [] getCompletors () 119 { 120 return this.completors; 121 } 122 } 123
| Popular Tags
|