From 4dc8f273933c93df8dfa0ac78718f57d6eda98c5 Mon Sep 17 00:00:00 2001 From: Brandon Borkholder Date: Fri, 25 Oct 2013 14:37:21 -0400 Subject: [PATCH] added license information to some files without it --- .../stacked/MultipleTimelineExample.java | 26 +++++++++++++++++++ .../glimpse/canvas/NewtGlimpseCanvas.java | 26 +++++++++++++++++++ .../plot/timeline/layout/TimelineInfo.java | 26 +++++++++++++++++++ .../interval/IntervalSortedMultimap.java | 26 +++++++++++++++++++ .../glimpse/support/interval/Keyed.java | 26 +++++++++++++++++++ .../swt/canvas/NewtSwtGlimpseCanvas.java | 26 +++++++++++++++++++ 6 files changed, 156 insertions(+) diff --git a/core-examples/src/main/java/com/metsci/glimpse/examples/stacked/MultipleTimelineExample.java b/core-examples/src/main/java/com/metsci/glimpse/examples/stacked/MultipleTimelineExample.java index bdeb6996f..f1de0a61f 100644 --- a/core-examples/src/main/java/com/metsci/glimpse/examples/stacked/MultipleTimelineExample.java +++ b/core-examples/src/main/java/com/metsci/glimpse/examples/stacked/MultipleTimelineExample.java @@ -1,3 +1,29 @@ +/* + * Copyright (c) 2012, Metron, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Metron, Inc. nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package com.metsci.glimpse.examples.stacked; import java.util.TimeZone; diff --git a/core/src/main/java/com/metsci/glimpse/canvas/NewtGlimpseCanvas.java b/core/src/main/java/com/metsci/glimpse/canvas/NewtGlimpseCanvas.java index 4985fb130..7a780d9e6 100644 --- a/core/src/main/java/com/metsci/glimpse/canvas/NewtGlimpseCanvas.java +++ b/core/src/main/java/com/metsci/glimpse/canvas/NewtGlimpseCanvas.java @@ -1,3 +1,29 @@ +/* + * Copyright (c) 2012, Metron, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Metron, Inc. nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package com.metsci.glimpse.canvas; import javax.media.opengl.GLAutoDrawable; diff --git a/core/src/main/java/com/metsci/glimpse/plot/timeline/layout/TimelineInfo.java b/core/src/main/java/com/metsci/glimpse/plot/timeline/layout/TimelineInfo.java index 667c6c0b9..76876378d 100644 --- a/core/src/main/java/com/metsci/glimpse/plot/timeline/layout/TimelineInfo.java +++ b/core/src/main/java/com/metsci/glimpse/plot/timeline/layout/TimelineInfo.java @@ -1,3 +1,29 @@ +/* + * Copyright (c) 2012, Metron, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Metron, Inc. nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package com.metsci.glimpse.plot.timeline.layout; import static com.metsci.glimpse.support.font.FontUtils.getDefaultBold; diff --git a/core/src/main/java/com/metsci/glimpse/support/interval/IntervalSortedMultimap.java b/core/src/main/java/com/metsci/glimpse/support/interval/IntervalSortedMultimap.java index 7cd6649d9..c85cb8141 100644 --- a/core/src/main/java/com/metsci/glimpse/support/interval/IntervalSortedMultimap.java +++ b/core/src/main/java/com/metsci/glimpse/support/interval/IntervalSortedMultimap.java @@ -1,3 +1,29 @@ +/* + * Copyright (c) 2012, Metron, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Metron, Inc. nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package com.metsci.glimpse.support.interval; import java.util.Collection; diff --git a/core/src/main/java/com/metsci/glimpse/support/interval/Keyed.java b/core/src/main/java/com/metsci/glimpse/support/interval/Keyed.java index 529da34c2..280676630 100644 --- a/core/src/main/java/com/metsci/glimpse/support/interval/Keyed.java +++ b/core/src/main/java/com/metsci/glimpse/support/interval/Keyed.java @@ -1,3 +1,29 @@ +/* + * Copyright (c) 2012, Metron, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Metron, Inc. nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package com.metsci.glimpse.support.interval; public interface Keyed diff --git a/extras-swt/src/main/java/com/metsci/glimpse/swt/canvas/NewtSwtGlimpseCanvas.java b/extras-swt/src/main/java/com/metsci/glimpse/swt/canvas/NewtSwtGlimpseCanvas.java index 0248c3eb3..e9833c40d 100644 --- a/extras-swt/src/main/java/com/metsci/glimpse/swt/canvas/NewtSwtGlimpseCanvas.java +++ b/extras-swt/src/main/java/com/metsci/glimpse/swt/canvas/NewtSwtGlimpseCanvas.java @@ -1,3 +1,29 @@ +/* + * Copyright (c) 2012, Metron, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Metron, Inc. nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package com.metsci.glimpse.swt.canvas; import static com.metsci.glimpse.util.logging.LoggerUtils.logInfo;