]> source.dussan.org Git - aspectj.git/commitdiff
Update to 1.9.5.BUILD-SNAPSHOT in poms
authorAndy Clement <aclement@pivotal.io>
Mon, 3 Jun 2019 17:03:51 +0000 (10:03 -0700)
committerAndy Clement <aclement@pivotal.io>
Mon, 3 Jun 2019 17:03:51 +0000 (10:03 -0700)
33 files changed:
ajbrowser/pom.xml
ajbrowser/src/main/java/org/aspectj/tools/ajbrowser/ui/swing/MessageHandlerPanel.java
ajde.core/pom.xml
ajde/pom.xml
ajde/src/main/java/org/aspectj/ajde/internal/BuildConfigManager.java
ajde/src/main/java/org/aspectj/ajde/internal/LstBuildConfigManager.java
ajde/src/main/java/org/aspectj/ajde/ui/StructureViewProperties.java
ajdoc/pom.xml
asm/pom.xml
aspectjrt/pom.xml
aspectjtools/pom.xml
aspectjweaver/pom.xml
bcel-builder/pom.xml
bridge/pom.xml
build/pom.xml
docs/pom.xml
installer/pom.xml
loadtime/pom.xml
org.aspectj.ajdt.core/pom.xml
org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/core/builder/EmacsStructureModelManager.java
org.aspectj.matcher/pom.xml
org.eclipse.jdt.core/pom.xml
pom.xml
run-all-junit-tests/pom.xml
runtime/pom.xml
taskdefs/pom.xml
testing-client/pom.xml
testing-drivers/pom.xml
testing-util/pom.xml
testing/pom.xml
tests/pom.xml
util/pom.xml
weaver/pom.xml

index b301ea927123f001b33827d23b72ee1f1d258cac..79bf8eb6d98df28212627d8615aab45ea7ac135c 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 32224832cc5c22d02405535238b83e6694e1db85..fa24f709fde1a1c91c077c0cadb729bcd4727933 100644 (file)
@@ -1,11 +1,11 @@
 /********************************************************************
- * Copyright (c) 2007 Contributors. All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: IBM Corporation - initial API and implementation 
+ * Copyright (c) 2007 Contributors. All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors: IBM Corporation - initial API and implementation
  *                              Helen Hawkins   - initial version (bug 148190)
  *******************************************************************/
 package org.aspectj.tools.ajbrowser.ui.swing;
@@ -31,7 +31,7 @@ import org.aspectj.tools.ajbrowser.ui.BrowserMessageHandler;
  * Panel used to display messages from the message handler
  */
 public class MessageHandlerPanel extends JPanel {
-       
+
        private static final long serialVersionUID = -2251912345065588977L;
        private JScrollPane jScrollPane1 = new JScrollPane();
        private JList list;
@@ -44,12 +44,12 @@ public class MessageHandlerPanel extends JPanel {
                        return;
                }
                createList(handler.getMessages());
-               
+
                try {
                        jbInit();
                } catch (Exception e) {
                        e.printStackTrace();
-               }               
+               }
                list.setModel(listModel);
 
                MouseListener mouseListener = new MouseAdapter() {
@@ -69,11 +69,11 @@ public class MessageHandlerPanel extends JPanel {
                list.setCellRenderer(new CompilerMessagesCellRenderer());
                setVisible(showPanel);
        }
-       
-       private void createList(List messages) {
+
+       private void createList(List<IMessage> messages) {
                list = new JList();
                listModel = new DefaultListModel();
-               for (Iterator iterator = messages.iterator(); iterator.hasNext();) {
+               for (Iterator<IMessage> iterator = messages.iterator(); iterator.hasNext();) {
                        listModel.addElement(iterator.next());
                }
        }
index 9ce1048033eaf1111bd89e1229dc6641959f002a..bd97d2e2ba58246494d9c470e607f64d618c156d 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 17f6eb9c26de36fe6cdef71aac28018a03b5601b..5e6ba954c8e742488f1fbd01d309b1681bf4f47d 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index f049357c5c9f372a68d81f2e9c688507b714ea3f..390ebbead708861928e7d720e2b630469fc45401 100644 (file)
@@ -1,44 +1,44 @@
 /* *******************************************************************
- * Copyright (c) 1999-2001 Xerox Corporation, 
+ * Copyright (c) 1999-2001 Xerox Corporation,
  *               2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: 
- *     Xerox/PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     Xerox/PARC     initial implementation
  * ******************************************************************/
 
+
 package org.aspectj.ajde.internal;
 
 import java.util.List;
 
 import org.aspectj.ajde.ui.BuildConfigModel;
 
-/** 
+/**
  * @author     Mik Kersten
  */
 public interface BuildConfigManager {
-       
+
        public static final String CONFIG_FILE_SUFFIX = ".lst";
-       
+
        public static final String DEFAULT_CONFIG_LABEL = "<all project files>";
-       
+
        /**
-        * Returns the currently active build configuration file.  The current active 
-        * build configuration file that is set in this class is used for building and 
+        * Returns the currently active build configuration file.  The current active
+        * build configuration file that is set in this class is used for building and
         * for updating the structure model.
-        * 
+        *
         * @return      full path to the file
         */
        public String getActiveConfigFile();
-       
+
        /**
         * Sets the currently active build configuration file.
-        * 
+        *
         * @param       full path to the file
         */
        public void setActiveConfigFile(String currConfigFilePath);
@@ -52,28 +52,28 @@ public interface BuildConfigManager {
         * Remove a configuration listener.
         */
     public void removeListener(BuildConfigListener configurationListener);
-     
+
        /**
         * Build a model for the corresponding configuration file.
-        * 
+        *
         * @param       full path to the file
-        */  
+        */
        public BuildConfigModel buildModel(String configFilePath);
-       
+
        /**
         * Save the given configuration model to the file that it was generated from.
         */
        public void writeModel(BuildConfigModel model);
-       
+
        /**
         * Write a list of source files into a configuration file.  File paths will be
         * written relative to the path of the configuration file.
-        */ 
+        */
        public void writePaths(String configFilePath, List paths);
-       
+
        /**
         * Add files to a configuration.
-        * 
+        *
         * @param configFilePath        full path to the configuration file
         * @param files                 list of full paths to the files to be added
         */
@@ -81,19 +81,17 @@ public interface BuildConfigManager {
 
        /**
         * Remove files from a configuration.
-        * 
+        *
         * @param configFilePath        full path to the configuration file
         * @param files                 list of full paths to the files to be removed
-        */  
+        */
        public void removeFilesFromConfig(String configFilePath, List files);
-       
-       
+
+
        /**
         * @return list (of Strings) of all build configuration files
         * found so far
         */
        public List /*String*/ getAllBuildConfigFiles();
-       
-}
-
 
+}
index 05c4cc2a0b7c4a463a2f69154df5846b7de2f6ff..5a30bbcc74ff217468f0963c02e98906bf4a2933 100644 (file)
@@ -1,14 +1,14 @@
 /* *******************************************************************
- * Copyright (c) 1999-2001 Xerox Corporation, 
+ * Copyright (c) 1999-2001 Xerox Corporation,
  *               2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: 
- *     Xerox/PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     Xerox/PARC     initial implementation
  *     Helen Hawkins  Converted to new interface (bug 148190)
  * ******************************************************************/
 
@@ -107,9 +107,9 @@ public class LstBuildConfigManager implements BuildConfigManager {
                // };
                // model.getRoot().walk(walker);
 
-               List activeSourceFiles = model.getActiveNodes(BuildConfigNode.Kind.FILE_ASPECTJ);
+               List<BuildConfigNode> activeSourceFiles = model.getActiveNodes(BuildConfigNode.Kind.FILE_ASPECTJ);
                activeSourceFiles.addAll(model.getActiveNodes(BuildConfigNode.Kind.FILE_JAVA));
-               List activeImportedFiles = model.getActiveNodes(BuildConfigNode.Kind.FILE_LST);
+               List<BuildConfigNode> activeImportedFiles = model.getActiveNodes(BuildConfigNode.Kind.FILE_LST);
                fileUpdater.writeConfigFile(model.getSourceFile(), activeSourceFiles, activeImportedFiles);
        }
 
@@ -231,17 +231,17 @@ public class LstBuildConfigManager implements BuildConfigManager {
        }
 
        private boolean pruneEmptyDirs(BuildConfigNode node) {
-               List nodesToRemove = new ArrayList();
-               for (Iterator it = node.getChildren().iterator(); it.hasNext();) {
-                       BuildConfigNode currNode = (BuildConfigNode) it.next();
+               List<BuildConfigNode> nodesToRemove = new ArrayList<>();
+               for (Iterator<BuildConfigNode> it = node.getChildren().iterator(); it.hasNext();) {
+                       BuildConfigNode currNode = it.next();
                        boolean hasValidChildren = pruneEmptyDirs(currNode);
                        if (!currNode.isValidResource() && !hasValidChildren) {
                                nodesToRemove.add(currNode);
                        }
                }
 
-               for (Iterator it = nodesToRemove.iterator(); it.hasNext();) {
-                       BuildConfigNode currNode = (BuildConfigNode) it.next();
+               for (Iterator<BuildConfigNode> it = nodesToRemove.iterator(); it.hasNext();) {
+                       BuildConfigNode currNode = it.next();
                        node.removeChild(currNode);
                }
                return node.getChildren().size() > 0;
@@ -278,21 +278,19 @@ public class LstBuildConfigManager implements BuildConfigManager {
        // }
        // }
        //
-       private void sortModel(BuildConfigNode node, Comparator comparator) {
+       private void sortModel(BuildConfigNode node, Comparator<BuildConfigNode> comparator) {
                if (node == null || node.getChildren() == null)
                        return;
                Collections.sort(node.getChildren(), comparator);
-               for (Iterator it = node.getChildren().iterator(); it.hasNext();) {
-                       BuildConfigNode nextNode = (BuildConfigNode) it.next();
+               for (Iterator<BuildConfigNode> it = node.getChildren().iterator(); it.hasNext();) {
+                       BuildConfigNode nextNode = it.next();
                        if (nextNode != null)
                                sortModel(nextNode, comparator);
                }
        }
 
-       private static final Comparator ALPHABETICAL_COMPARATOR = new Comparator() {
-               public int compare(Object o1, Object o2) {
-                       BuildConfigNode n1 = (BuildConfigNode) o1;
-                       BuildConfigNode n2 = (BuildConfigNode) o2;
+       private static final Comparator<BuildConfigNode> ALPHABETICAL_COMPARATOR = new Comparator<BuildConfigNode>() {
+               public int compare(BuildConfigNode n1, BuildConfigNode n2) {
                        return n1.getName().compareTo(n2.getName());
                }
        };
index 5351803d46bbfb57f9f3a4913c66f8ca7cae1d8e..2e44d399e8b86a74ad0b8c8cb4f6d1fcac419e20 100644 (file)
@@ -1,55 +1,57 @@
 /* *******************************************************************
- * Copyright (c) 1999-2001 Xerox Corporation, 
+ * Copyright (c) 1999-2001 Xerox Corporation,
  *               2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: 
- *     Xerox/PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     Xerox/PARC     initial implementation
  * ******************************************************************/
 
 
 package org.aspectj.ajde.ui;
 
 import java.io.ObjectStreamException;
-import java.util.*;
+import java.util.ArrayList;
+import java.util.List;
 
-import org.aspectj.asm.*;
+import org.aspectj.asm.IProgramElement;
+import org.aspectj.asm.IRelationship;
 
-/** 
+/**
  * Nested properties use the typesafe enum pattern.
- * 
+ *
  * @author Mik Kersten
  */
 public class StructureViewProperties {
-       
+
        /**
         * @deprecated
         */
        public static final String SORT_DECLARATIONAL = StructureViewProperties.Sorting.DECLARATIONAL.toString();
-       
+
        /**
         * @deprecated
-        */ 
+        */
        public void setSorting(String sorting) { }
-       
-    private List relations = new ArrayList();
-    private List filteredMemberAccessibility = new ArrayList();
-    private List filteredMemberModifiers = new ArrayList();
-    private List filteredMemberKinds = new ArrayList();
-    private List grouping = new ArrayList();
+
+    private List<IRelationship.Kind> relations = new ArrayList<>();
+    private List<IProgramElement.Accessibility> filteredMemberAccessibility = new ArrayList<>();
+    private List<IProgramElement.Modifiers> filteredMemberModifiers = new ArrayList<>();
+    private List<IProgramElement.Kind> filteredMemberKinds = new ArrayList<>();
+    private List<Grouping> grouping = new ArrayList<>();
     private Sorting sorting = Sorting.DECLARATIONAL;
        private Granularity granularity = StructureViewProperties.Granularity.DECLARED_ELEMENTS;
 
     public List getRelations() {
         return relations;
     }
-    
+
     public void setRelations(List relations) {
-       this.relations = relations;     
+       this.relations = relations;
     }
 
     public void addRelation(IRelationship.Kind kind) {
@@ -71,9 +73,9 @@ public class StructureViewProperties {
     public void addFilteredMemberAccessibility(IProgramElement.Accessibility accessibility) {
                this.filteredMemberAccessibility.add(accessibility);
        }
-       
+
        public void removeFilteredMemberAccessibility(IProgramElement.Accessibility accessibility) {
-               this.filteredMemberAccessibility.remove(accessibility); 
+               this.filteredMemberAccessibility.remove(accessibility);
        }
 
     public List getFilteredMemberModifiers() {
@@ -83,15 +85,15 @@ public class StructureViewProperties {
     public void setFilteredMemberModifiers(List memberModifiers) {
         this.filteredMemberModifiers = memberModifiers;
     }
-    
+
     public void addFilteredMemberModifiers(IProgramElement.Modifiers modifiers) {
                this.filteredMemberModifiers.add(modifiers);
        }
-       
+
        public void removeFilteredMemberModifiers(IProgramElement.Modifiers modifiers) {
-               this.filteredMemberModifiers.remove(modifiers); 
+               this.filteredMemberModifiers.remove(modifiers);
        }
-    
+
     public StructureViewProperties.Sorting getSorting() {
         return sorting;
     }
@@ -99,7 +101,7 @@ public class StructureViewProperties {
     public void setSorting(StructureViewProperties.Sorting sorting) {
         this.sorting = sorting;
     }
-    
+
        public List getFilteredMemberKinds() {
                return filteredMemberKinds;
        }
@@ -107,15 +109,15 @@ public class StructureViewProperties {
        public void setFilteredMemberKinds(List memberKinds) {
                this.filteredMemberKinds = memberKinds;
        }
-       
+
     public void addFilteredMemberKind(IProgramElement.Kind kind) {
                this.filteredMemberKinds.add(kind);
        }
-       
+
        public void removeFilteredMemberKind(IProgramElement.Kind kind) {
-               this.filteredMemberKinds.remove(kind);  
+               this.filteredMemberKinds.remove(kind);
        }
-       
+
        public List getGrouping() {
                return grouping;
        }
@@ -123,8 +125,8 @@ public class StructureViewProperties {
        public void setGrouping(List grouping) {
                this.grouping = grouping;
        }
-       
-       
+
+
        public void addGrouping(Grouping grouping) {
                this.grouping.add(grouping);
        }
@@ -140,37 +142,37 @@ public class StructureViewProperties {
        public void setGranularity(Granularity granularity) {
                this.granularity = granularity;
        }
-       
+
        public String getName() {
                return "<unnamed view>";
        }
-       
+
        public String toString() {
                return "\nView Properties:"
-                       + "\n-> sorting: " + sorting    
+                       + "\n-> sorting: " + sorting
                        + "\n-> grouping: " + grouping
                        + "\n-> filtered member kinds: " + filteredMemberKinds
                        + "\n-> filtered member accessibility: " + filteredMemberAccessibility
                        + "\n-> filtered member modifiers: " + filteredMemberModifiers
                        + "\n-> relations: " + relations;
        }
-       
+
        public static class Hierarchy {
-               
+
                public static final Hierarchy DECLARATION = new Hierarchy("package hierarchy");
                public static final Hierarchy CROSSCUTTING = new Hierarchy("crosscutting structure");
                public static final Hierarchy INHERITANCE = new Hierarchy("type hierarchy");
                public static final Hierarchy[] ALL = { DECLARATION, CROSSCUTTING, INHERITANCE };
-                 
+
                private final String name;
-               
+
                private Hierarchy(String name) {
                        this.name = name;
                }
-               
+
                public String toString() {
                        return name;
-               }       
+               }
 
                // The 4 declarations below are necessary for serialization
                private static int nextOrdinal = 0;
@@ -179,22 +181,22 @@ public class StructureViewProperties {
                        return ALL[ordinal];
                }
        }
-       
+
        public static class Grouping {
-               
+
                public static final Grouping KIND = new Grouping("group by kind");
                public static final Grouping VISIBILITY = new Grouping("group by visibility");
                public static final Grouping[] ALL = { KIND, VISIBILITY };
-               
+
                private final String name;
-               
+
                private Grouping(String name) {
                        this.name = name;
                }
-               
+
                public String toString() {
                        return name;
-               }       
+               }
 
                // The 4 declarations below are necessary for serialization
                private static int nextOrdinal = 0;
@@ -203,22 +205,22 @@ public class StructureViewProperties {
                        return ALL[ordinal];
                }
        }
+
        public static class Sorting {
-       
+
                public static final Sorting ALPHABETICAL = new Sorting("sort alphabetically");
                public static final Sorting DECLARATIONAL = new Sorting("sort declarationally");
                public static final Sorting[] ALL = { ALPHABETICAL, DECLARATIONAL };
-               
+
                private final String name;
-               
+
                private Sorting(String name) {
                        this.name = name;
                }
-               
+
                public String toString() {
                        return name;
-               }       
+               }
 
                // The 4 declarations below are necessary for serialization
                private static int nextOrdinal = 0;
@@ -227,25 +229,25 @@ public class StructureViewProperties {
                        return ALL[ordinal];
                }
        }
-       
+
        public static class Granularity {
-       
+
                public static final Granularity PACKAGE = new Granularity("package");
                public static final Granularity FILE = new Granularity("file");
                public static final Granularity TYPE = new Granularity("type");
                public static final Granularity MEMBER = new Granularity("member");
                public static final Granularity DECLARED_ELEMENTS = new Granularity("declared body elements");
                public static final Granularity[] ALL = { PACKAGE, FILE, TYPE, MEMBER, DECLARED_ELEMENTS };
-               
+
                private final String name;
-               
+
                private Granularity(String name) {
                        this.name = name;
                }
-               
+
                public String toString() {
                        return name;
-               }       
+               }
 
                // The 4 declarations below are necessary for serialization
                private static int nextOrdinal = 0;
index 8dcac03c74bdcfcb519f95290ddb0b52e60338a3..cd749215a4ab781e22d503b8c32b7d626fcac148 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 99e9724465f67dcefb644d28446a47816bf7dc59..e9526d981585fd48d62b0301210acb9aadd45c38 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 2dad4bfcd85c72aaa63e8ef6134e2c76534ab997..a915bbc1ffedc5f2765f9d28d6a66fc192b8379e 100644 (file)
@@ -7,7 +7,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
        </parent>
 
        <artifactId>aspectjrt</artifactId>
index c618341daadde22db063329dbc63409dc24507fa..ac665f78a103b4b0a25e5c403925380ab0f2b90a 100644 (file)
@@ -7,7 +7,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
        </parent>
 
        <artifactId>aspectjtools</artifactId>
index 89143a5614b78825ca4d1b2444dc11a23b922193..fe50f5ed8b1d34d8a564ff3b6675e1e48eaca815 100644 (file)
@@ -7,7 +7,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
        </parent>
 
        <artifactId>aspectjweaver</artifactId>
index 16f8f2a81990650503ca88512069aeacd5b24c4a..2c7fc3a3827e4a344eea72a58ed7a8775bcd2626 100644 (file)
@@ -12,7 +12,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
        </parent>
 
index c23d4c2e984898fa03ef3e9a56577d893928a498..1be665a4ff3dd4c6aaaf1fc3fe656a188ea92ea0 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
                <relativePath>..</relativePath>
        </parent>
 
index f7339119f450afe90cc4741e0b0428c2262e333f..44bd85c800f30111ac518ec08331f24de5e9cd97 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
                <relativePath>..</relativePath>
        </parent>
 
index b762c183c5a9c420d2ba3511d83364c7eefcfd11..2dc1867f14bb1410f099d570de704af29820acef 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
                <relativePath>..</relativePath>
        </parent>
 
index 35a1539ae2e4708a7287af7a6df4cc9ec060908a..8192db45c8aeb95e9db9fbe41c0293de203773bc 100644 (file)
@@ -7,7 +7,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
        </parent>
 
        <artifactId>installer</artifactId>
index e7606379326fd367fee151c7827bda848ef0aae5..070c86ebfb34a4e6dd8f50c31850292b2a9cda49 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
                <relativePath>..</relativePath>
        </parent>
 
index 3183d12849fbb58a52794c8afda8528ca494ef0e..a7e078c4d4fe418caf160244cccc49ca2974e2d3 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 668ac2e8ae31ff903133532e065a00b5920aa346..3322ac30871921260a797afeeb6288666f59f5ea 100644 (file)
@@ -1,14 +1,14 @@
 /* *******************************************************************
- * Copyright (c) 1999-2001 Xerox Corporation, 
+ * Copyright (c) 1999-2001 Xerox Corporation,
  *               2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved. 
- * This program and the accompanying materials are made available 
- * under the terms of the Eclipse Public License v1.0 
- * which accompanies this distribution and is available at 
- * http://www.eclipse.org/legal/epl-v10.html 
- *  
- * Contributors: 
- *     PARC     initial implementation 
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     PARC     initial implementation
  * ******************************************************************/
 
 package org.aspectj.ajdt.internal.core.builder;
@@ -176,7 +176,7 @@ public class EmacsStructureModelManager {
                                print("(");
                                print(") ");
                                print("(");
-                               Iterator it3 = node.getChildren().iterator();
+                               Iterator<IProgramElement> it3 = node.getChildren().iterator();
                                if (it3.hasNext()) {
                                        while (it3.hasNext()) {
                                                // this ignores relations on the compile unit
index 1ab29676c18d9a82a70f78eea907f43f72268932..bf770c3413d3c5c422446c9159170f1805c3dd0c 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 58bcd885647c3cd46882ef27d5e1423ba4205854..592d18d2e46e2bcd3a68e0459a764bb5ebb4701c 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
@@ -33,7 +33,7 @@
                         <configuration>
                             <groupId>org.aspectj</groupId>
                             <artifactId>org.eclipse.jdt.core</artifactId>
-                            <version>1.9.4</version>
+                            <version>1.9.5.BUILD-SNAPSHOT</version>
                             <packaging>jar</packaging>
                             <file>${basedir}/jdtcore-for-aspectj.jar</file>
                             <createChecksum>true</createChecksum>
@@ -49,7 +49,7 @@
                         <configuration>
                             <groupId>org.aspectj</groupId>
                             <artifactId>org.eclipse.jdt.core</artifactId>
-                            <version>1.9.4</version>
+                            <version>1.9.5.BUILD-SNAPSHOT</version>
                             <packaging>jar</packaging>
                             <file>${basedir}/jdtcore-for-aspectj-src.zip</file>
                             <createChecksum>true</createChecksum>
diff --git a/pom.xml b/pom.xml
index c803a3b71d2f0864cf626e5a4350ad551f59078a..864e4d70adc920d56caf1e759a3b66080ee202cd 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -12,7 +12,7 @@
        <groupId>org.aspectj</groupId>
        <artifactId>aspectj-parent</artifactId>
        <packaging>pom</packaging>
-       <version>1.9.4</version>
+       <version>1.9.5.BUILD-SNAPSHOT</version>
        <name>AspectJ Parent Project</name>
 
        <modules>
index 2e5be8ee126e9abfabfd0992c940fbde17a0a242..cd3f7e285f60724ee34826aa8cd2b87ceef4f048 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
                <relativePath>..</relativePath>
        </parent>
 
index 7457054aacf2dd831c0dd5bb23a0bf044a1f59f5..2c0a53242abc2603cd4176cb346b085c19156a1d 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
                <relativePath>..</relativePath>
        </parent>
 
index fc000b4aad596169821882695b2eccf9944cc2ec..7f75d359ef23d558ab2b886f7fee9a3584e6c0af 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 262027b6093434438ecb77082261631cc9292c1b..16c1bce6b7456aceccca1376b667c358f5288b77 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 247de17defa243b7276e6fd8345ea7f7c3b27656..0e19304a52b68f47e04ecace85c01f971e8630f3 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index cfa0354e4b2abb7bbda758b3ae5610b2657ebfcc..d4f966ff2645b3d0b02d6c93aa11f5f19fe076e6 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index 8d98c0a2b3a128bd1a208e5c8ea81d8980b5fffa..3796d749d05ff5e8bcfbe348313871c70c7afca0 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
index edd151b9f3a1aad49bc4210ba4cedb7517a68c8c..7e65f2f0f1df80cde2ca0cbc02ba06446ae4d1e1 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectj-parent</artifactId>
-               <version>1.9.4</version>
+               <version>1.9.5.BUILD-SNAPSHOT</version>
                <relativePath>..</relativePath>
        </parent>
 
index 47cc983a9583d49a25ffa3e8fff5718826b76964..2f602146404bae1f9329c7854db8429e43cefab0 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
   </parent>
 
   <artifactId>util</artifactId>
index 92230b8defcd05f7103d99eefb479633f100d1c9..91870a62d8c885101c10a471c543f62845524f8b 100644 (file)
@@ -6,7 +6,7 @@
   <parent>
     <groupId>org.aspectj</groupId>
     <artifactId>aspectj-parent</artifactId>
-    <version>1.9.4</version>
+    <version>1.9.5.BUILD-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>