127128129130131132133134
public Object getMediaLeftObject(int index) throws QSequenceException { try { return leftCache.getLine(index); } catch (IOException ex) { throw new QSequenceException(ex); } }
136137138139140141142143
public Object getMediaRightObject(int index) throws QSequenceException { try { return rightCache.getLine(index); } catch (IOException ex) { throw new QSequenceException(ex); } }
151152153154155156157158
} return leftCache.getLine(leftIndex).equals(rightCache.getLine(rightIndex)); } catch (IOException ex) { throw new QSequenceException(ex); } }
160161162163164165166167
public boolean equalsLeft(int left1, int left2) throws QSequenceException { try { return leftCache.getLine(left1).equals(leftCache.getLine(left2)); } catch (IOException ex) { throw new QSequenceException(ex); } }
169170171172173174175176
public boolean equalsRight(int right1, int right2) throws QSequenceException { try { return rightCache.getLine(right1).equals(rightCache.getLine(right2)); } catch (IOException ex) { throw new QSequenceException(ex); } }
138139140141142143144145
147148149150151152153154
162163164165166167168169
171172173174175176177178
180181182183184185186187