From 717f79bcf6baa8b86d70da8612a54d734488fc9b Mon Sep 17 00:00:00 2001 From: Rik Veenboer Date: Mon, 11 Jul 2016 23:21:06 +0100 Subject: [PATCH] Add/update license header in source files --- src/main/java/old/Converter.java | 16 ++++++++++++++++ src/main/java/old/List.java | 16 ++++++++++++++++ src/main/java/old/Mp3.java | 16 ++++++++++++++++ src/main/java/old/Transducer.java | 16 ++++++++++++++++ src/main/java/pipe/Client.java | 16 ++++++++++++++++ src/main/java/pipe/Pipe.java | 16 ++++++++++++++++ src/main/java/pipe/TestPipe.java | 16 ++++++++++++++++ src/main/java/sound/Consumer.java | 16 ++++++++++++++++ src/main/java/sound/Format.java | 16 ++++++++++++++++ src/main/java/sound/Producer.java | 16 ++++++++++++++++ src/main/java/sound/Source.java | 16 ++++++++++++++++ src/main/java/sound/consumer/Port.java | 16 ++++++++++++++++ src/main/java/sound/consumer/Shoutcast.java | 16 ++++++++++++++++ src/main/java/sound/data/Data.java | 16 ++++++++++++++++ src/main/java/sound/producer/Stream.java | 16 ++++++++++++++++ src/main/java/sound/producer/Target.java | 16 ++++++++++++++++ .../java/sound/stream/HoardedInputStream.java | 16 ++++++++++++++++ src/main/java/sound/util/Buffer.java | 16 ++++++++++++++++ src/main/java/sound/util/SoxBuilder.java | 16 ++++++++++++++++ src/main/java/sound/util/Tool.java | 16 ++++++++++++++++ src/main/java/sound/util/Utils.java | 16 ++++++++++++++++ src/main/java/test/SoundAudit.java | 16 ++++++++++++++++ src/main/java/test/Test.java | 16 ++++++++++++++++ src/main/java/test/lines/Main.java | 16 ++++++++++++++++ src/main/java/test/lines/SourceLine.java | 16 ++++++++++++++++ src/main/java/test/lines/TargetLine.java | 16 ++++++++++++++++ 26 files changed, 416 insertions(+) diff --git a/src/main/java/old/Converter.java b/src/main/java/old/Converter.java index f1548a0..5cca267 100644 --- a/src/main/java/old/Converter.java +++ b/src/main/java/old/Converter.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package old; import java.io.BufferedInputStream; diff --git a/src/main/java/old/List.java b/src/main/java/old/List.java index d026fb9..cf681a8 100644 --- a/src/main/java/old/List.java +++ b/src/main/java/old/List.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package old; import java.io.File; diff --git a/src/main/java/old/Mp3.java b/src/main/java/old/Mp3.java index 445d4d4..ca36d33 100644 --- a/src/main/java/old/Mp3.java +++ b/src/main/java/old/Mp3.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package old; import java.io.File; diff --git a/src/main/java/old/Transducer.java b/src/main/java/old/Transducer.java index c7618a8..448d489 100644 --- a/src/main/java/old/Transducer.java +++ b/src/main/java/old/Transducer.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package old; import sound.Consumer; diff --git a/src/main/java/pipe/Client.java b/src/main/java/pipe/Client.java index 1ef5c26..3257f2b 100644 --- a/src/main/java/pipe/Client.java +++ b/src/main/java/pipe/Client.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package pipe; import java.io.RandomAccessFile; diff --git a/src/main/java/pipe/Pipe.java b/src/main/java/pipe/Pipe.java index 3bb3805..05a3c41 100644 --- a/src/main/java/pipe/Pipe.java +++ b/src/main/java/pipe/Pipe.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package pipe; /** diff --git a/src/main/java/pipe/TestPipe.java b/src/main/java/pipe/TestPipe.java index 9d1ec66..d6f56ee 100644 --- a/src/main/java/pipe/TestPipe.java +++ b/src/main/java/pipe/TestPipe.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package pipe; import java.io.File; diff --git a/src/main/java/sound/Consumer.java b/src/main/java/sound/Consumer.java index cc6c28c..3c30949 100644 --- a/src/main/java/sound/Consumer.java +++ b/src/main/java/sound/Consumer.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound; public interface Consumer { diff --git a/src/main/java/sound/Format.java b/src/main/java/sound/Format.java index 4de19dc..6adfe02 100644 --- a/src/main/java/sound/Format.java +++ b/src/main/java/sound/Format.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound; import javax.sound.sampled.AudioFormat; diff --git a/src/main/java/sound/Producer.java b/src/main/java/sound/Producer.java index 0c5ff9f..77573f8 100644 --- a/src/main/java/sound/Producer.java +++ b/src/main/java/sound/Producer.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound; import java.io.InputStream; diff --git a/src/main/java/sound/Source.java b/src/main/java/sound/Source.java index 8d558d1..f4af09c 100644 --- a/src/main/java/sound/Source.java +++ b/src/main/java/sound/Source.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound; import java.io.IOException; diff --git a/src/main/java/sound/consumer/Port.java b/src/main/java/sound/consumer/Port.java index 5e3cf48..8acbe7d 100644 --- a/src/main/java/sound/consumer/Port.java +++ b/src/main/java/sound/consumer/Port.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.consumer; import java.io.IOException; diff --git a/src/main/java/sound/consumer/Shoutcast.java b/src/main/java/sound/consumer/Shoutcast.java index 3644459..4864c51 100644 --- a/src/main/java/sound/consumer/Shoutcast.java +++ b/src/main/java/sound/consumer/Shoutcast.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.consumer; import java.io.BufferedReader; diff --git a/src/main/java/sound/data/Data.java b/src/main/java/sound/data/Data.java index 645cccc..3e02d9c 100644 --- a/src/main/java/sound/data/Data.java +++ b/src/main/java/sound/data/Data.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.data; public class Data { diff --git a/src/main/java/sound/producer/Stream.java b/src/main/java/sound/producer/Stream.java index dbe6f6d..66fd180 100644 --- a/src/main/java/sound/producer/Stream.java +++ b/src/main/java/sound/producer/Stream.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.producer; import java.io.IOException; diff --git a/src/main/java/sound/producer/Target.java b/src/main/java/sound/producer/Target.java index 35c592b..bdc6d79 100644 --- a/src/main/java/sound/producer/Target.java +++ b/src/main/java/sound/producer/Target.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.producer; import java.io.IOException; diff --git a/src/main/java/sound/stream/HoardedInputStream.java b/src/main/java/sound/stream/HoardedInputStream.java index fd6924c..4f6825b 100644 --- a/src/main/java/sound/stream/HoardedInputStream.java +++ b/src/main/java/sound/stream/HoardedInputStream.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.stream; import java.io.BufferedInputStream; diff --git a/src/main/java/sound/util/Buffer.java b/src/main/java/sound/util/Buffer.java index 2beb9fc..5c85b65 100644 --- a/src/main/java/sound/util/Buffer.java +++ b/src/main/java/sound/util/Buffer.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.util; public class Buffer { diff --git a/src/main/java/sound/util/SoxBuilder.java b/src/main/java/sound/util/SoxBuilder.java index 0ea367d..d1d44bd 100644 --- a/src/main/java/sound/util/SoxBuilder.java +++ b/src/main/java/sound/util/SoxBuilder.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.util; import java.util.HashMap; diff --git a/src/main/java/sound/util/Tool.java b/src/main/java/sound/util/Tool.java index 5b08471..be85406 100644 --- a/src/main/java/sound/util/Tool.java +++ b/src/main/java/sound/util/Tool.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.util; import java.util.ArrayList; diff --git a/src/main/java/sound/util/Utils.java b/src/main/java/sound/util/Utils.java index 5c535a0..e25ee34 100644 --- a/src/main/java/sound/util/Utils.java +++ b/src/main/java/sound/util/Utils.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package sound.util; import java.io.BufferedInputStream; diff --git a/src/main/java/test/SoundAudit.java b/src/main/java/test/SoundAudit.java index 9510034..1d7373a 100644 --- a/src/main/java/test/SoundAudit.java +++ b/src/main/java/test/SoundAudit.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package test; import javax.sound.sampled.*; diff --git a/src/main/java/test/Test.java b/src/main/java/test/Test.java index 892471c..a6fa8af 100644 --- a/src/main/java/test/Test.java +++ b/src/main/java/test/Test.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package test; import javax.sound.sampled.AudioFormat; diff --git a/src/main/java/test/lines/Main.java b/src/main/java/test/lines/Main.java index 5209436..6712715 100644 --- a/src/main/java/test/lines/Main.java +++ b/src/main/java/test/lines/Main.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package test.lines; import javax.sound.sampled.AudioFormat; diff --git a/src/main/java/test/lines/SourceLine.java b/src/main/java/test/lines/SourceLine.java index 56092d5..b2c2727 100644 --- a/src/main/java/test/lines/SourceLine.java +++ b/src/main/java/test/lines/SourceLine.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package test.lines; import javax.sound.sampled.Mixer; diff --git a/src/main/java/test/lines/TargetLine.java b/src/main/java/test/lines/TargetLine.java index c0c7d1e..b7c74c1 100644 --- a/src/main/java/test/lines/TargetLine.java +++ b/src/main/java/test/lines/TargetLine.java @@ -1,3 +1,19 @@ +/** + * Copyright (C) 2016 Rik Veenboer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ package test.lines; import javax.sound.sampled.Mixer;