diff src/uk/ac/qmul/eecs/depic/daw/Clip.java @ 1:629262395647

Added some dosumentation added .hginfo
author Fiore Martin <f.martin@qmul.ac.uk>
date Wed, 17 Feb 2016 14:43:35 +0000
parents 3074a84ef81e
children
line wrap: on
line diff
--- a/src/uk/ac/qmul/eecs/depic/daw/Clip.java	Wed Aug 26 16:16:53 2015 +0100
+++ b/src/uk/ac/qmul/eecs/depic/daw/Clip.java	Wed Feb 17 14:43:35 2016 +0000
@@ -20,7 +20,13 @@
 
 import uk.ac.qmul.eecs.depic.patterns.Range;
 
-
+/**
+ * 
+ * A Clip is a piece of audio Sample. Clips representing different parts of the same audio sample all share  
+ * a reference to the same Sample. This way manipulating clips doesn't involve manipulating all the samples but
+ * just references to them.   
+ *
+ */
 public class Clip extends Range<Integer> implements Comparable<Clip> {
 	private Sample sample;
 	private int sampleStart;