You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@labs.apache.org by si...@apache.org on 2008/09/19 19:45:10 UTC

svn commit: r697161 - in /labs/magma/trunk/foundation-basics/src: main/java/org/apache/magma/basics/utils/ test/java/org/apache/magma/basics/utils/ test/java/org/apache/magma/basics/utils/genericstuff/

Author: simoneg
Date: Fri Sep 19 10:45:10 2008
New Revision: 697161

URL: http://svn.apache.org/viewvc?rev=697161&view=rev
Log:
Apache headers

Modified:
    labs/magma/trunk/foundation-basics/src/main/java/org/apache/magma/basics/utils/GenericClass.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericClass.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericField.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericParameter.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestWhatBeanutilsDo.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/CompicatedThing.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/ConcreteThing.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericFieldsHolder.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericThing.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/IntermediateThing.java
    labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/OtherThing.java

Modified: labs/magma/trunk/foundation-basics/src/main/java/org/apache/magma/basics/utils/GenericClass.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/main/java/org/apache/magma/basics/utils/GenericClass.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/main/java/org/apache/magma/basics/utils/GenericClass.java (original)
+++ labs/magma/trunk/foundation-basics/src/main/java/org/apache/magma/basics/utils/GenericClass.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils;
 
 import java.lang.reflect.Constructor;

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericClass.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericClass.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericClass.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericClass.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils;
 
 import static org.hamcrest.CoreMatchers.equalTo;

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericField.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericField.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericField.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericField.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils;
 
 import static org.hamcrest.CoreMatchers.equalTo;

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericParameter.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericParameter.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericParameter.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestGenericParameter.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils;
 
 import static org.hamcrest.CoreMatchers.equalTo;

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestWhatBeanutilsDo.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestWhatBeanutilsDo.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestWhatBeanutilsDo.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/TestWhatBeanutilsDo.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils;
 
 import static org.hamcrest.CoreMatchers.*;

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/CompicatedThing.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/CompicatedThing.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/CompicatedThing.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/CompicatedThing.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils.genericstuff;
 
 public class CompicatedThing extends IntermediateThing<Boolean> {

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/ConcreteThing.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/ConcreteThing.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/ConcreteThing.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/ConcreteThing.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils.genericstuff;
 
 public class ConcreteThing extends GenericThing<String, Integer> {

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericFieldsHolder.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericFieldsHolder.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericFieldsHolder.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericFieldsHolder.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils.genericstuff;
 
 public class GenericFieldsHolder {

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericThing.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericThing.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericThing.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/GenericThing.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils.genericstuff;
 
 public class GenericThing<T,I> {

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/IntermediateThing.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/IntermediateThing.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/IntermediateThing.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/IntermediateThing.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils.genericstuff;
 
 public class IntermediateThing<K> extends GenericThing<String, K> {

Modified: labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/OtherThing.java
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/OtherThing.java?rev=697161&r1=697160&r2=697161&view=diff
==============================================================================
--- labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/OtherThing.java (original)
+++ labs/magma/trunk/foundation-basics/src/test/java/org/apache/magma/basics/utils/genericstuff/OtherThing.java Fri Sep 19 10:45:10 2008
@@ -1,3 +1,19 @@
+/*
+ * 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.magma.basics.utils.genericstuff;
 
 import java.math.BigDecimal;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org