From 1742012c230f5e853702357e73f6be80df7c5c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20R=C3=B6sch?= Date: Fri, 8 Feb 2019 07:14:32 +0100 Subject: [PATCH] Use JIDE 3.7.5. --- assertj-swing-jide/pom.xml | 6 +++--- .../assertj/swing/conditions/ComponentFocusedCondition.java | 4 ++-- .../assertj/swing/conditions/ComponentVisibleCondition.java | 4 ++-- .../assertj/swing/conditions/FocusInContainerCondition.java | 4 ++-- .../main/java/org/assertj/swing/jide/JideFrameFixture.java | 4 ++-- .../org/assertj/swing/jide/action/CommandBarFixture.java | 4 ++-- .../assertj/swing/jide/action/driver/CommandBarDriver.java | 4 ++-- .../swing/jide/action/format/CommandBarFormatter.java | 4 ++-- .../swing/jide/components/CollapsiblePaneFixture.java | 4 ++-- .../assertj/swing/jide/components/JideStatusBarFixture.java | 4 ++-- .../org/assertj/swing/jide/components/StatusBarDriver.java | 4 ++-- .../swing/jide/components/driver/CollapsiblePaneDriver.java | 4 ++-- .../org/assertj/swing/jide/grids/AssertJSwingTableUtil.java | 4 ++-- .../org/assertj/swing/jide/grids/DateComboBoxFixture.java | 4 ++-- .../assertj/swing/jide/grids/ExtendedItemGroupFixture.java | 4 ++-- .../org/assertj/swing/jide/grids/ExtendedTableFixture.java | 4 ++-- .../java/org/assertj/swing/jide/grids/JideTableFixture.java | 4 ++-- .../org/assertj/swing/jide/grids/ListComboBoxFixture.java | 4 ++-- .../assertj/swing/jide/grids/TableScrollPaneFixture.java | 4 ++-- .../driver/AbstractComboBoxAccessibleEditorValidator.java | 4 ++-- .../swing/jide/grids/driver/AbstractComboBoxCellReader.java | 4 ++-- .../swing/jide/grids/driver/AbstractComboBoxDriver.java | 4 ++-- .../grids/driver/AbstractComboBoxDropDownListFinder.java | 4 ++-- .../jide/grids/driver/AbstractComboBoxEditableQuery.java | 4 ++-- .../grids/driver/AbstractComboBoxItemIndexValidator.java | 4 ++-- .../assertj/swing/jide/grids/driver/DateComboBoxDriver.java | 4 ++-- .../swing/jide/grids/driver/JideTableCellReader.java | 4 ++-- .../assertj/swing/jide/grids/driver/ListComboBoxDriver.java | 4 ++-- .../jide/grids/driver/ListComboBoxSetSelectedIndexTask.java | 4 ++-- 29 files changed, 59 insertions(+), 59 deletions(-) diff --git a/assertj-swing-jide/pom.xml b/assertj-swing-jide/pom.xml index e72cd5a7..525981b6 100644 --- a/assertj-swing-jide/pom.xml +++ b/assertj-swing-jide/pom.xml @@ -4,7 +4,7 @@ org.assertj assertj-swing-parent-pom - 3.8.0 + 3.9.2 assertj-swing-jide @@ -14,7 +14,7 @@ JIDE specific extensions for testing - 3.6.21 + 3.7.5 @@ -27,7 +27,7 @@ org.assertj assertj-swing - 3.7.0 + 3.9.2 diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentFocusedCondition.java b/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentFocusedCondition.java index 1445e777..d1173ded 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentFocusedCondition.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentFocusedCondition.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.conditions; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentVisibleCondition.java b/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentVisibleCondition.java index 75016879..b8a5d328 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentVisibleCondition.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/ComponentVisibleCondition.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.conditions; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/FocusInContainerCondition.java b/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/FocusInContainerCondition.java index 6e031b12..2622b056 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/FocusInContainerCondition.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/conditions/FocusInContainerCondition.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.conditions; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/JideFrameFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/JideFrameFixture.java index 42456d50..63a4e3e3 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/JideFrameFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/JideFrameFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/CommandBarFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/CommandBarFixture.java index bd4a660b..7d611bdf 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/CommandBarFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/CommandBarFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.action; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/driver/CommandBarDriver.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/driver/CommandBarDriver.java index 5aafd76f..be114db0 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/driver/CommandBarDriver.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/driver/CommandBarDriver.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.action.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/format/CommandBarFormatter.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/format/CommandBarFormatter.java index a2d88d10..64a911d4 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/format/CommandBarFormatter.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/action/format/CommandBarFormatter.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.action.format; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/CollapsiblePaneFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/CollapsiblePaneFixture.java index 52203615..98c45761 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/CollapsiblePaneFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/CollapsiblePaneFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.components; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/JideStatusBarFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/JideStatusBarFixture.java index df40ac75..b68019fd 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/JideStatusBarFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/JideStatusBarFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.components; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/StatusBarDriver.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/StatusBarDriver.java index 55479c75..0bf90825 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/StatusBarDriver.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/StatusBarDriver.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.components; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/driver/CollapsiblePaneDriver.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/driver/CollapsiblePaneDriver.java index 7699c03d..2ea0c929 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/driver/CollapsiblePaneDriver.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/components/driver/CollapsiblePaneDriver.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.components.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/AssertJSwingTableUtil.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/AssertJSwingTableUtil.java index a2a90552..a497e7a5 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/AssertJSwingTableUtil.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/AssertJSwingTableUtil.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/DateComboBoxFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/DateComboBoxFixture.java index 2694ba7e..b1138c1f 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/DateComboBoxFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/DateComboBoxFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedItemGroupFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedItemGroupFixture.java index 48f8585f..4660948a 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedItemGroupFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedItemGroupFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedTableFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedTableFixture.java index be6635d4..88b6ef81 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedTableFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ExtendedTableFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/JideTableFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/JideTableFixture.java index 3b5b9e75..c1f963bb 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/JideTableFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/JideTableFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ListComboBoxFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ListComboBoxFixture.java index 7e798de0..a5a2504f 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ListComboBoxFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/ListComboBoxFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/TableScrollPaneFixture.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/TableScrollPaneFixture.java index 74470868..1653c64e 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/TableScrollPaneFixture.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/TableScrollPaneFixture.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxAccessibleEditorValidator.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxAccessibleEditorValidator.java index 6a19ec26..7bec2e3d 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxAccessibleEditorValidator.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxAccessibleEditorValidator.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxCellReader.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxCellReader.java index 9523b34c..6d014b47 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxCellReader.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxCellReader.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDriver.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDriver.java index e6c06704..a921767f 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDriver.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDriver.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDropDownListFinder.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDropDownListFinder.java index d47dc671..333440c0 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDropDownListFinder.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxDropDownListFinder.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxEditableQuery.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxEditableQuery.java index e7883e6e..0c82cda6 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxEditableQuery.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxEditableQuery.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxItemIndexValidator.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxItemIndexValidator.java index 77876cfb..539095e6 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxItemIndexValidator.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/AbstractComboBoxItemIndexValidator.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/DateComboBoxDriver.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/DateComboBoxDriver.java index 60e15eee..adf3df9b 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/DateComboBoxDriver.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/DateComboBoxDriver.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/JideTableCellReader.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/JideTableCellReader.java index 514af507..cbeb6f5c 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/JideTableCellReader.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/JideTableCellReader.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxDriver.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxDriver.java index 8f80a051..c8f8b924 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxDriver.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxDriver.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver; diff --git a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxSetSelectedIndexTask.java b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxSetSelectedIndexTask.java index 141c6052..7d7785d0 100644 --- a/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxSetSelectedIndexTask.java +++ b/assertj-swing-jide/src/main/java/org/assertj/swing/jide/grids/driver/ListComboBoxSetSelectedIndexTask.java @@ -1,4 +1,4 @@ -/** +/* * 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 * @@ -8,7 +8,7 @@ * 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. * - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2018 the original author or authors. */ package org.assertj.swing.jide.grids.driver;