de.regnis.q.sequence.media.QSequenceMediaDummyIndexTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javasvn Show documentation
Show all versions of javasvn Show documentation
The only pure Java Subversion library in the world
/*
* ====================================================================
* Copyright (c) 2004 Marc Strapetz, [email protected].
* All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. Use is
* subject to license terms.
* ====================================================================
*/
package de.regnis.q.sequence.media;
import de.regnis.q.sequence.core.*;
/**
* @author Marc Strapetz
*/
public class QSequenceMediaDummyIndexTransformer implements QSequenceMediaIndexTransformer {
// Fields =================================================================
private final int mediaLeftLength;
private final int mediaRightLength;
// Setup ==================================================================
public QSequenceMediaDummyIndexTransformer(QSequenceMedia media) {
this.mediaLeftLength = media.getLeftLength();
this.mediaRightLength = media.getRightLength();
}
public QSequenceMediaDummyIndexTransformer(int mediaLeftLength, int mediaRightLength) {
this.mediaLeftLength = mediaLeftLength;
this.mediaRightLength = mediaRightLength;
}
// Implemented ============================================================
public int getMediaLeftIndex(int index) {
return index;
}
public int getMediaRightIndex(int index) {
return index;
}
public int getMediaLeftLength() {
return mediaLeftLength;
}
public int getMediaRightLength() {
return mediaRightLength;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy