Author: niallp Date: Thu Jun 21 09:41:13 2007 New Revision: 549538 URL: http://svn.apache.org/viewvc?view=rev&rev=549538 Log: Add missing license headers
Modified: jakarta/commons/proper/modeler/trunk/build.properties.default jakarta/commons/proper/modeler/trunk/build.properties.sample jakarta/commons/proper/modeler/trunk/build.xml jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/Arg.java jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/ant.properties jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/package.html jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans-descriptors.dtd jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans/MBeanProxy.java jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsDynamicMBeanSource.java jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsSerSource.java jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSource.java jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSourceMBean.java jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/ModelerSource.java jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/package.html jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/package.html jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/demo/mbeans-descriptors.xml jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/mbeans-descriptors.xml jakarta/commons/proper/modeler/trunk/xdocs/index.xml Modified: jakarta/commons/proper/modeler/trunk/build.properties.default URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/build.properties.default?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/build.properties.default (original) +++ jakarta/commons/proper/modeler/trunk/build.properties.default Thu Jun 21 09:41:13 2007 @@ -1,3 +1,18 @@ +# 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. + # ----- Proxy setup ----- #proxy.host=proxy.domain #proxy.port=8080 Modified: jakarta/commons/proper/modeler/trunk/build.properties.sample URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/build.properties.sample?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/build.properties.sample (original) +++ jakarta/commons/proper/modeler/trunk/build.properties.sample Thu Jun 21 09:41:13 2007 @@ -1,3 +1,18 @@ +# 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. + # build.properties.sample - Sample build.properties for "modeler" # Base properties for expansion below Modified: jakarta/commons/proper/modeler/trunk/build.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/build.xml?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/build.xml (original) +++ jakarta/commons/proper/modeler/trunk/build.xml Thu Jun 21 09:41:13 2007 @@ -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. +--> <project name="Modeler" default="compile" basedir="."> Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/Arg.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/Arg.java?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/Arg.java (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/Arg.java Thu Jun 21 09:41:13 2007 @@ -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.commons.modeler.ant; /** Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/ant.properties URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/ant.properties?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/ant.properties (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/ant.properties Thu Jun 21 09:41:13 2007 @@ -1,3 +1,17 @@ +# 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. modeler=org.apache.commons.modeler.ant.ModelerTask MLET=org.apache.commons.modeler.ant.MLETTask mbean=org.apache.commons.modeler.ant.MLETTask Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/package.html URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/package.html?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/package.html (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/package.html Thu Jun 21 09:41:13 2007 @@ -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. +--> <html> <head> <title>Package Documentation for org.apache.commons.modeler.ant Package</title> Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans-descriptors.dtd URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans-descriptors.dtd?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans-descriptors.dtd (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans-descriptors.dtd Thu Jun 21 09:41:13 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <!-- Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans/MBeanProxy.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans/MBeanProxy.java?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans/MBeanProxy.java (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/mbeans/MBeanProxy.java Thu Jun 21 09:41:13 2007 @@ -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.commons.modeler.mbeans; import java.util.HashMap; Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsDynamicMBeanSource.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsDynamicMBeanSource.java?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsDynamicMBeanSource.java (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsDynamicMBeanSource.java Thu Jun 21 09:41:13 2007 @@ -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.commons.modeler.modules; import java.util.ArrayList; Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsSerSource.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsSerSource.java?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsSerSource.java (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansDescriptorsSerSource.java Thu Jun 21 09:41:13 2007 @@ -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.commons.modeler.modules; import java.io.InputStream; Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSource.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSource.java?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSource.java (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSource.java Thu Jun 21 09:41:13 2007 @@ -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.commons.modeler.modules; import java.io.FileNotFoundException; Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSourceMBean.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSourceMBean.java?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSourceMBean.java (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/MbeansSourceMBean.java Thu Jun 21 09:41:13 2007 @@ -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.commons.modeler.modules; import java.util.List; Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/ModelerSource.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/ModelerSource.java?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/ModelerSource.java (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/ModelerSource.java Thu Jun 21 09:41:13 2007 @@ -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.commons.modeler.modules; import java.io.File; Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/package.html URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/package.html?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/package.html (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/modules/package.html Thu Jun 21 09:41:13 2007 @@ -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. +--> <html> <head> <title>org.apache.commons.modeler.modules</title> Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/package.html URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/package.html?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/package.html (original) +++ jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/package.html Thu Jun 21 09:41:13 2007 @@ -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. +--> <html> <head> <title>Package Documentation for COMMONS-MODELER</title> Modified: jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/demo/mbeans-descriptors.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/demo/mbeans-descriptors.xml?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/demo/mbeans-descriptors.xml (original) +++ jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/demo/mbeans-descriptors.xml Thu Jun 21 09:41:13 2007 @@ -1,4 +1,20 @@ <?xml version="1.0"?> +<!-- + 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. +--> <!DOCTYPE mbeans-descriptors PUBLIC "-//Apache Software Foundation//DTD Model MBeans Configuration File" "http://jakarta.apache.org/commons/dtds/mbeans-descriptors.dtd"> Modified: jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/mbeans-descriptors.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/mbeans-descriptors.xml?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/mbeans-descriptors.xml (original) +++ jakarta/commons/proper/modeler/trunk/src/test/org/apache/commons/modeler/mbeans-descriptors.xml Thu Jun 21 09:41:13 2007 @@ -1,4 +1,20 @@ <?xml version="1.0"?> +<!-- + 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. +--> <!DOCTYPE mbeans-descriptors PUBLIC "-//Apache Software Foundation//DTD Model MBeans Configuration File" "http://jakarta.apache.org/commons/dtds/mbeans-descriptors.dtd"> Modified: jakarta/commons/proper/modeler/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/xdocs/index.xml?view=diff&rev=549538&r1=549537&r2=549538 ============================================================================== --- jakarta/commons/proper/modeler/trunk/xdocs/index.xml (original) +++ jakarta/commons/proper/modeler/trunk/xdocs/index.xml Thu Jun 21 09:41:13 2007 @@ -1,4 +1,22 @@ <?xml version="1.0"?> +<!-- +/* + * 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. + */ + --> <document> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]