package com.ordrumbox.core.description;
public class StepLocator {
// int songStep;
private int patternStep;
private OrPattern pattern;
private Patternsequencer patternsequencer;
// private long startPoint = 0;
// private long endPoint = 0;
// private int maxSampleLeft = 0;
// private int maxSampleRight = 0;
// private int frameNumber;
public Patternsequencer getPatternsequencer() {
return patternsequencer;
}
public void setPatternsequencer(Patternsequencer patternsequencer) {
this.patternsequencer = patternsequencer;
}
public void setPatternStep(int patternStep) {
this.patternStep = patternStep;
}
public void setPattern(OrPattern pattern) {
this.pattern = pattern;
}
public int getPatternStep() {
return patternStep;
}
public OrPattern getPattern() {
return pattern;
}
// public int getSongStep() {
// return songStep;
// }
//
// public void setSongStep(int songStep) {
// this.songStep = songStep;
// }
//
// public long getStartPoint() {
// return startPoint;
// }
//
// public void setStartPoint(long startPoint) {
// this.startPoint = startPoint;
// }
//
// public void setEndPoint(long endPoint) {
// this.endPoint = endPoint;
// }
//
// public int getMaxSampleLeft() {
// return maxSampleLeft;
// }
//
// public void setMaxSampleLeft(int maxSampleLeft) {
// this.maxSampleLeft = maxSampleLeft;
// }
//
// public int getMaxSampleRight() {
// return maxSampleRight;
// }
//
// public void setMaxSampleRight(int maxSampleRight) {
// this.maxSampleRight = maxSampleRight;
// }
//
// public int getFrameNumber() {
// return frameNumber;
// }
//
// public void setFrameNumber(int frameNumber) {
// this.frameNumber = frameNumber;
// }
// public String toString() {
// return " pat:" + pattern + " startFr:" + startPoint + " EndFr:" + endPoint + " maxL:" + maxSampleLeft + " maxR:" + maxSampleRight + " sStep:" + songStep + " pStep:" + patternStep + " frameNum:" + frameNumber;
// }
public String toString() {
return " pat:" + pattern + " pStep:" + patternStep;
}
}
|