From 659da35c1071076cc37abed86241ecf89b9dfe5a Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 10 Feb 2017 00:10:37 +0100 Subject: [PATCH] Updated copyright --- src/dorkbox/notify/WindowUtil.java | 15 +++++++++++++++ src/dorkbox/notify/WindowUtil_Java6.java | 19 +++++++++++++++++-- src/dorkbox/notify/WindowUtil_Java7plus.java | 15 +++++++++++++++ 3 files changed, 47 insertions(+), 2 deletions(-) diff --git a/src/dorkbox/notify/WindowUtil.java b/src/dorkbox/notify/WindowUtil.java index d702df4..dc51880 100644 --- a/src/dorkbox/notify/WindowUtil.java +++ b/src/dorkbox/notify/WindowUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2015 dorkbox, llc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package dorkbox.notify; import java.awt.Window; diff --git a/src/dorkbox/notify/WindowUtil_Java6.java b/src/dorkbox/notify/WindowUtil_Java6.java index 2642354..ead35e9 100644 --- a/src/dorkbox/notify/WindowUtil_Java6.java +++ b/src/dorkbox/notify/WindowUtil_Java6.java @@ -1,9 +1,24 @@ +/* + * Copyright 2015 dorkbox, llc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package dorkbox.notify; -import com.sun.awt.AWTUtilities; - import java.awt.Window; +import com.sun.awt.AWTUtilities; + class WindowUtil_Java6 implements WindowUtil { @Override diff --git a/src/dorkbox/notify/WindowUtil_Java7plus.java b/src/dorkbox/notify/WindowUtil_Java7plus.java index 1ec3242..21ca460 100644 --- a/src/dorkbox/notify/WindowUtil_Java7plus.java +++ b/src/dorkbox/notify/WindowUtil_Java7plus.java @@ -1,3 +1,18 @@ +/* + * Copyright 2015 dorkbox, llc + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package dorkbox.notify; import java.awt.Window;