Repository: isis
Updated Branches:
  refs/heads/master fc0889810 -> 31168c444


ISIS-1287: fixing up license header files


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/f6b289a1
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/f6b289a1
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/f6b289a1

Branch: refs/heads/master
Commit: f6b289a1e1cd71d527ed913dcb3e6f4670976433
Parents: fc08898
Author: Dan Haywood <d...@haywood-associates.co.uk>
Authored: Sat Mar 19 14:55:55 2016 +0000
Committer: Dan Haywood <d...@haywood-associates.co.uk>
Committed: Sun Mar 20 10:10:27 2016 +0000

----------------------------------------------------------------------
 .../applib/layout/component/HasBookmarking.java | 25 ++++++++++++----
 .../applib/layout/component/HasCssClass.java    | 25 ++++++++++++----
 .../applib/layout/component/HasCssClassFa.java  | 31 ++++++++++++++++----
 .../applib/layout/component/HasDescribedAs.java | 25 +++++++++++++---
 .../isis/applib/layout/component/HasHidden.java | 25 +++++++++++++---
 .../isis/applib/layout/component/HasNamed.java  | 29 ++++++++++++++----
 .../applib/layout/grid/bootstrap3/Size.java     | 18 ++++++++++++
 .../appfeat/ApplicationFeatureRepository.java   |  8 +++--
 .../services/appfeat/ApplicationMemberType.java |  8 +++--
 .../applib/services/metamodel/DomainMember.java |  8 +++--
 .../metamodel/MetaModelServicesMenu.java        |  8 +++--
 .../layout/grid/bootstrap3/BS3ColTest.java      | 18 ++++++++++++
 .../layout/grid/bootstrap3/SizeSpanTest.java    | 18 ++++++++++++
 .../services/appfeat/ApplicationFeature.java    |  8 +++--
 .../appfeat/ApplicationFeatureFactory.java      |  8 +++--
 .../services/appfeat/ApplicationFeatureId.java  |  8 +++--
 .../ApplicationFeatureRepositoryDefault.java    |  8 +++--
 .../appfeat/ApplicationFeatureType.java         |  8 +++--
 .../metamodel/services/devutils/MemberType.java |  8 +++--
 .../Persistable_datanucleusIdLong.java          |  8 +++--
 .../Persistable_datanucleusVersionLong.java     |  8 +++--
 ...Persistable_datanucleusVersionTimestamp.java |  8 +++--
 .../Persistable_downloadJdoMetadata.java        | 28 ++++++++++--------
 .../services/metamodel/DomainMemberDefault.java |  8 +++--
 .../rendering/domainobjects/MemberType.java     | 28 ++++++++++--------
 .../viewer/services/Object_clearHints.java      | 18 ++++++++++++
 .../ui/components/layout/bs3/tabs/TabPanel.java | 18 ++++++++++++
 27 files changed, 320 insertions(+), 98 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasBookmarking.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasBookmarking.java
 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasBookmarking.java
index b4750cf..361971a 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasBookmarking.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasBookmarking.java
@@ -1,14 +1,29 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.component;
 
 import javax.xml.bind.annotation.XmlAttribute;
 
 import org.apache.isis.applib.annotation.BookmarkPolicy;
 
-/**
- * Created by Dan on 10/02/2016.
- */
 public interface HasBookmarking {
-    @XmlAttribute(required = false) BookmarkPolicy getBookmarking();
-
+    @XmlAttribute(required = false)
+    BookmarkPolicy getBookmarking();
     void setBookmarking(BookmarkPolicy bookmarking);
 }

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClass.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClass.java
 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClass.java
index 3126d09..26d2088 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClass.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClass.java
@@ -1,12 +1,27 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.component;
 
 import javax.xml.bind.annotation.XmlAttribute;
 
-/**
- * Created by Dan on 10/02/2016.
- */
 public interface HasCssClass {
-    @XmlAttribute(required = false) String getCssClass();
-
+    @XmlAttribute(required = false)
+    String getCssClass();
     void setCssClass(String cssClass);
 }

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClassFa.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClassFa.java
 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClassFa.java
index f6111d8..d556447 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClassFa.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasCssClassFa.java
@@ -1,16 +1,35 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.component;
 
 import javax.xml.bind.annotation.XmlAttribute;
 
-/**
- * Created by Dan on 10/02/2016.
- */
+import org.apache.isis.applib.annotation.ActionLayout;
+
 public interface HasCssClassFa {
-    @XmlAttribute(required = false) String getCssClassFa();
 
+    @XmlAttribute(required = false)
+    String getCssClassFa();
     void setCssClassFa(String cssClassFa);
 
-    @XmlAttribute(required = false) 
org.apache.isis.applib.annotation.ActionLayout.CssClassFaPosition 
getCssClassFaPosition();
+    @XmlAttribute(required = false)
+    ActionLayout.CssClassFaPosition getCssClassFaPosition();
+    void setCssClassFaPosition(ActionLayout.CssClassFaPosition 
cssClassFaPosition);
 
-    void 
setCssClassFaPosition(org.apache.isis.applib.annotation.ActionLayout.CssClassFaPosition
 cssClassFaPosition);
 }

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasDescribedAs.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasDescribedAs.java
 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasDescribedAs.java
index 44e4b5d..ad9f99a 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasDescribedAs.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasDescribedAs.java
@@ -1,12 +1,29 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.component;
 
 import javax.xml.bind.annotation.XmlElement;
 
-/**
- * Created by Dan on 10/02/2016.
- */
 public interface HasDescribedAs {
-    @XmlElement(required = false) String getDescribedAs();
 
+    @XmlElement(required = false)
+    String getDescribedAs();
     void setDescribedAs(String describedAs);
+
 }

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasHidden.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasHidden.java
 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasHidden.java
index 935357a..60add99 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasHidden.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasHidden.java
@@ -1,14 +1,31 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.component;
 
 import javax.xml.bind.annotation.XmlAttribute;
 
 import org.apache.isis.applib.annotation.Where;
 
-/**
- * Created by Dan on 10/02/2016.
- */
 public interface HasHidden {
-    @XmlAttribute(required = false) Where getHidden();
 
+    @XmlAttribute(required = false)
+    Where getHidden();
     void setHidden(Where hidden);
+
 }

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasNamed.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasNamed.java
 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasNamed.java
index 3099496..098727c 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasNamed.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/layout/component/HasNamed.java
@@ -1,17 +1,34 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.component;
 
 import javax.xml.bind.annotation.XmlAttribute;
 import javax.xml.bind.annotation.XmlElement;
 
-/**
- * Created by Dan on 10/02/2016.
- */
 public interface HasNamed {
-    @XmlElement(required = false) String getNamed();
 
+    @XmlElement(required = false)
+    String getNamed();
     void setNamed(String named);
 
-    @XmlAttribute(required = false) Boolean getNamedEscaped();
-
+    @XmlAttribute(required = false)
+    Boolean getNamedEscaped();
     void setNamedEscaped(Boolean namedEscaped);
+
 }

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/layout/grid/bootstrap3/Size.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/layout/grid/bootstrap3/Size.java
 
b/core/applib/src/main/java/org/apache/isis/applib/layout/grid/bootstrap3/Size.java
index d01e7d9..4dd8c61 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/layout/grid/bootstrap3/Size.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/layout/grid/bootstrap3/Size.java
@@ -1,3 +1,21 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.grid.bootstrap3;
 
 /**

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureRepository.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureRepository.java
 
b/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureRepository.java
index 8a4c83a..0dcb0eb 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureRepository.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureRepository.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationMemberType.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationMemberType.java
 
b/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationMemberType.java
index 1421ec4..10587bf 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationMemberType.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationMemberType.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/DomainMember.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/DomainMember.java
 
b/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/DomainMember.java
index 22532f2..a696ab9 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/DomainMember.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/DomainMember.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2013~2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/MetaModelServicesMenu.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/MetaModelServicesMenu.java
 
b/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/MetaModelServicesMenu.java
index c16a5b4..998fe6e 100644
--- 
a/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/MetaModelServicesMenu.java
+++ 
b/core/applib/src/main/java/org/apache/isis/applib/services/metamodel/MetaModelServicesMenu.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2013~2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/BS3ColTest.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/BS3ColTest.java
 
b/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/BS3ColTest.java
index 0cf29e2..99f0a1d 100644
--- 
a/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/BS3ColTest.java
+++ 
b/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/BS3ColTest.java
@@ -1,3 +1,21 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.grid.bootstrap3;
 
 import org.junit.Before;

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/SizeSpanTest.java
----------------------------------------------------------------------
diff --git 
a/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/SizeSpanTest.java
 
b/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/SizeSpanTest.java
index 28d8bbd..5dc6222 100644
--- 
a/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/SizeSpanTest.java
+++ 
b/core/applib/src/test/java/org/apache/isis/applib/layout/grid/bootstrap3/SizeSpanTest.java
@@ -1,3 +1,21 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.applib.layout.grid.bootstrap3;
 
 import org.junit.Before;

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeature.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeature.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeature.java
index 7527665..53a92ed 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeature.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeature.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureFactory.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureFactory.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureFactory.java
index 11ad96f..d3d0e3c 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureFactory.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureFactory.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureId.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureId.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureId.java
index 411bed0..cae36e6 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureId.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureId.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureRepositoryDefault.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureRepositoryDefault.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureRepositoryDefault.java
index 87b4ab2..70fbbb4 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureRepositoryDefault.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureRepositoryDefault.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureType.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureType.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureType.java
index bd8b12a..5c3be39 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureType.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/appfeat/ApplicationFeatureType.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/devutils/MemberType.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/devutils/MemberType.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/devutils/MemberType.java
index 5db18bc..ff067ce 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/devutils/MemberType.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/devutils/MemberType.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2013~2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusIdLong.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusIdLong.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusIdLong.java
index 15e2120..34bcf7e 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusIdLong.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusIdLong.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2015-2016 Eurocommercial Properties NV
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionLong.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionLong.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionLong.java
index 0bf2603..d52a8d4 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionLong.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionLong.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2015-2016 Eurocommercial Properties NV
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionTimestamp.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionTimestamp.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionTimestamp.java
index 24960a9..86f2069 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionTimestamp.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_datanucleusVersionTimestamp.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2015-2016 Eurocommercial Properties NV
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_downloadJdoMetadata.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_downloadJdoMetadata.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_downloadJdoMetadata.java
index dbb4d28..09244f4 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_downloadJdoMetadata.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/jdosupport/Persistable_downloadJdoMetadata.java
@@ -1,18 +1,20 @@
-/**
- *  Licensed to the Apache Software Foundation (ASF) under one or more
- *  contributor license agreements.  See the NOTICE file distributed with
- *  this work for additional information regarding copyright ownership.
- *  The ASF licenses this file to You 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
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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
+ *        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.
+ *  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 org.apache.isis.core.metamodel.services.jdosupport;
 

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/metamodel/DomainMemberDefault.java
----------------------------------------------------------------------
diff --git 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/metamodel/DomainMemberDefault.java
 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/metamodel/DomainMemberDefault.java
index 1e5a0e0..1e7e8bb 100644
--- 
a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/metamodel/DomainMemberDefault.java
+++ 
b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/metamodel/DomainMemberDefault.java
@@ -1,7 +1,9 @@
 /*
- *  Copyright 2013~2014 Dan Haywood
- *
- *  Licensed under the Apache License, Version 2.0 (the
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/viewer-restfulobjects-rendering/src/main/java/org/apache/isis/viewer/restfulobjects/rendering/domainobjects/MemberType.java
----------------------------------------------------------------------
diff --git 
a/core/viewer-restfulobjects-rendering/src/main/java/org/apache/isis/viewer/restfulobjects/rendering/domainobjects/MemberType.java
 
b/core/viewer-restfulobjects-rendering/src/main/java/org/apache/isis/viewer/restfulobjects/rendering/domainobjects/MemberType.java
index ac17b20..06cd3f3 100644
--- 
a/core/viewer-restfulobjects-rendering/src/main/java/org/apache/isis/viewer/restfulobjects/rendering/domainobjects/MemberType.java
+++ 
b/core/viewer-restfulobjects-rendering/src/main/java/org/apache/isis/viewer/restfulobjects/rendering/domainobjects/MemberType.java
@@ -1,18 +1,20 @@
-/**
- *  Licensed to the Apache Software Foundation (ASF) under one or more
- *  contributor license agreements.  See the NOTICE file distributed with
- *  this work for additional information regarding copyright ownership.
- *  The ASF licenses this file to You 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
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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
+ *        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.
+ *  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 org.apache.isis.viewer.restfulobjects.rendering.domainobjects;
 

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/services/Object_clearHints.java
----------------------------------------------------------------------
diff --git 
a/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/services/Object_clearHints.java
 
b/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/services/Object_clearHints.java
index 61b8df1..a6d1436 100644
--- 
a/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/services/Object_clearHints.java
+++ 
b/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/services/Object_clearHints.java
@@ -1,3 +1,21 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.viewer.wicket.viewer.services;
 
 import javax.inject.Inject;

http://git-wip-us.apache.org/repos/asf/isis/blob/f6b289a1/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/layout/bs3/tabs/TabPanel.java
----------------------------------------------------------------------
diff --git 
a/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/layout/bs3/tabs/TabPanel.java
 
b/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/layout/bs3/tabs/TabPanel.java
index c804d69..20c9f52 100644
--- 
a/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/layout/bs3/tabs/TabPanel.java
+++ 
b/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/layout/bs3/tabs/TabPanel.java
@@ -1,3 +1,21 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 org.apache.isis.viewer.wicket.ui.components.layout.bs3.tabs;
 
 import org.apache.wicket.markup.html.WebMarkupContainer;

Reply via email to