summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/beust/jcommander/args
diff options
context:
space:
mode:
authorCedric Beust <cedric@beust.com>2010-08-05 21:28:33 -0700
committerCedric Beust <cedric@beust.com>2010-08-05 21:28:33 -0700
commit58a4af720c30d8dba072a96e3713577c8d30aeae (patch)
treeafa16895d0687f4ed1c709450222001fd6eb673d /src/test/java/com/beust/jcommander/args
parent89eccf1687656dfd0870b4f033fffdd8638d51c5 (diff)
downloadplatform_external_jcommander-58a4af720c30d8dba072a96e3713577c8d30aeae.tar.gz
platform_external_jcommander-58a4af720c30d8dba072a96e3713577c8d30aeae.tar.bz2
platform_external_jcommander-58a4af720c30d8dba072a96e3713577c8d30aeae.zip
Added license headers with mvn -P license license:format
Diffstat (limited to 'src/test/java/com/beust/jcommander/args')
-rw-r--r--src/test/java/com/beust/jcommander/args/Args1.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/Args2.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsArityInteger.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsArityString.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsBooleanArity.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsConverter.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsConverterFactory.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsDefault.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsI18N1.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsI18N2.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsI18N2New.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsMainParameter1.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsMainParameter2.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsMaster.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsMultipleUnparsed.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsPassword.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsPrivate.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsSlave.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/ArgsSlaveBogus.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/CommandLineArgs.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/CommandLineArgs2.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/IHostPorts.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/SeparatorColon.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/SeparatorEqual.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/SeparatorMixed.java18
-rw-r--r--src/test/java/com/beust/jcommander/args/SlashSeparator.java18
26 files changed, 468 insertions, 0 deletions
diff --git a/src/test/java/com/beust/jcommander/args/Args1.java b/src/test/java/com/beust/jcommander/args/Args1.java
index d89ad96..5d5b1b0 100644
--- a/src/test/java/com/beust/jcommander/args/Args1.java
+++ b/src/test/java/com/beust/jcommander/args/Args1.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/Args2.java b/src/test/java/com/beust/jcommander/args/Args2.java
index dbcb80c..89f622b 100644
--- a/src/test/java/com/beust/jcommander/args/Args2.java
+++ b/src/test/java/com/beust/jcommander/args/Args2.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsArityInteger.java b/src/test/java/com/beust/jcommander/args/ArgsArityInteger.java
index cb21cd3..9c1611f 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsArityInteger.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsArityInteger.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsArityString.java b/src/test/java/com/beust/jcommander/args/ArgsArityString.java
index 709290b..056ae85 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsArityString.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsArityString.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsBooleanArity.java b/src/test/java/com/beust/jcommander/args/ArgsBooleanArity.java
index 8b3c77d..242e347 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsBooleanArity.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsBooleanArity.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsConverter.java b/src/test/java/com/beust/jcommander/args/ArgsConverter.java
index 04c98cc..8d88022 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsConverter.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsConverter.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsConverterFactory.java b/src/test/java/com/beust/jcommander/args/ArgsConverterFactory.java
index 56f29c0..f8463a0 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsConverterFactory.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsConverterFactory.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.HostPort;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsDefault.java b/src/test/java/com/beust/jcommander/args/ArgsDefault.java
index 6a853a1..1adcd73 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsDefault.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsDefault.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsI18N1.java b/src/test/java/com/beust/jcommander/args/ArgsI18N1.java
index ba9018b..80e29e2 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsI18N1.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsI18N1.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsI18N2.java b/src/test/java/com/beust/jcommander/args/ArgsI18N2.java
index dd4baf5..772d041 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsI18N2.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsI18N2.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsI18N2New.java b/src/test/java/com/beust/jcommander/args/ArgsI18N2New.java
index 4265160..1f55306 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsI18N2New.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsI18N2New.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsMainParameter1.java b/src/test/java/com/beust/jcommander/args/ArgsMainParameter1.java
index 19d17e3..b223fd9 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsMainParameter1.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsMainParameter1.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.HostPort;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsMainParameter2.java b/src/test/java/com/beust/jcommander/args/ArgsMainParameter2.java
index 332e47e..739c13e 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsMainParameter2.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsMainParameter2.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.HostPort;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsMaster.java b/src/test/java/com/beust/jcommander/args/ArgsMaster.java
index ba78fe5..ebcba67 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsMaster.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsMaster.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsMultipleUnparsed.java b/src/test/java/com/beust/jcommander/args/ArgsMultipleUnparsed.java
index 91583db..f7b0628 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsMultipleUnparsed.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsMultipleUnparsed.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsPassword.java b/src/test/java/com/beust/jcommander/args/ArgsPassword.java
index 6fefa17..06c468e 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsPassword.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsPassword.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsPrivate.java b/src/test/java/com/beust/jcommander/args/ArgsPrivate.java
index 885418c..16e4b4e 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsPrivate.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsPrivate.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsSlave.java b/src/test/java/com/beust/jcommander/args/ArgsSlave.java
index 4c5d318..dabeb57 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsSlave.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsSlave.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/ArgsSlaveBogus.java b/src/test/java/com/beust/jcommander/args/ArgsSlaveBogus.java
index 5615984..1abdf1f 100644
--- a/src/test/java/com/beust/jcommander/args/ArgsSlaveBogus.java
+++ b/src/test/java/com/beust/jcommander/args/ArgsSlaveBogus.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/CommandLineArgs.java b/src/test/java/com/beust/jcommander/args/CommandLineArgs.java
index 6374a72..7c8414f 100644
--- a/src/test/java/com/beust/jcommander/args/CommandLineArgs.java
+++ b/src/test/java/com/beust/jcommander/args/CommandLineArgs.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/CommandLineArgs2.java b/src/test/java/com/beust/jcommander/args/CommandLineArgs2.java
index ce1b4cf..ac62792 100644
--- a/src/test/java/com/beust/jcommander/args/CommandLineArgs2.java
+++ b/src/test/java/com/beust/jcommander/args/CommandLineArgs2.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/IHostPorts.java b/src/test/java/com/beust/jcommander/args/IHostPorts.java
index ba48734..2020c77 100644
--- a/src/test/java/com/beust/jcommander/args/IHostPorts.java
+++ b/src/test/java/com/beust/jcommander/args/IHostPorts.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.HostPort;
diff --git a/src/test/java/com/beust/jcommander/args/SeparatorColon.java b/src/test/java/com/beust/jcommander/args/SeparatorColon.java
index 7ef2e98..ab454fc 100644
--- a/src/test/java/com/beust/jcommander/args/SeparatorColon.java
+++ b/src/test/java/com/beust/jcommander/args/SeparatorColon.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/SeparatorEqual.java b/src/test/java/com/beust/jcommander/args/SeparatorEqual.java
index 42b47f3..a135207 100644
--- a/src/test/java/com/beust/jcommander/args/SeparatorEqual.java
+++ b/src/test/java/com/beust/jcommander/args/SeparatorEqual.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/SeparatorMixed.java b/src/test/java/com/beust/jcommander/args/SeparatorMixed.java
index 4717b1e..aa2641f 100644
--- a/src/test/java/com/beust/jcommander/args/SeparatorMixed.java
+++ b/src/test/java/com/beust/jcommander/args/SeparatorMixed.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;
diff --git a/src/test/java/com/beust/jcommander/args/SlashSeparator.java b/src/test/java/com/beust/jcommander/args/SlashSeparator.java
index d212956..64d3930 100644
--- a/src/test/java/com/beust/jcommander/args/SlashSeparator.java
+++ b/src/test/java/com/beust/jcommander/args/SlashSeparator.java
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2010 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package com.beust.jcommander.args;
import com.beust.jcommander.Parameter;