aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-05-05 15:10:46 +0000
committerwisberg <wisberg>2003-05-05 15:10:46 +0000
commitd2cba1ffb6bfa8beedbd530fa0ec0e879da374ee (patch)
treead5b5788d8e4db235dfae804e11fe2ba4ef82ba8
parent7d043c7a6303051f25f397b42c10fc42bfaccd9c (diff)
downloadaspectj-d2cba1ffb6bfa8beedbd530fa0ec0e879da374ee.tar.gz
aspectj-d2cba1ffb6bfa8beedbd530fa0ec0e879da374ee.zip
NPE guard
-rw-r--r--ajde/src/org/aspectj/ajde/ui/swing/BrowserViewManager.java9
-rw-r--r--ajde/src/org/aspectj/ajde/ui/swing/SwingTreeViewNodeRenderer.java9
-rw-r--r--asm/src/org/aspectj/asm/StructureModelManager.java16
3 files changed, 23 insertions, 11 deletions
diff --git a/ajde/src/org/aspectj/ajde/ui/swing/BrowserViewManager.java b/ajde/src/org/aspectj/ajde/ui/swing/BrowserViewManager.java
index 68f7741aa..a1798c125 100644
--- a/ajde/src/org/aspectj/ajde/ui/swing/BrowserViewManager.java
+++ b/ajde/src/org/aspectj/ajde/ui/swing/BrowserViewManager.java
@@ -27,6 +27,7 @@ import org.aspectj.asm.InheritanceAssociation;
import org.aspectj.asm.LinkNode;
import org.aspectj.asm.ProgramElementNode;
import org.aspectj.asm.StructureNode;
+import org.aspectj.bridge.ISourceLocation;
/**
* Responsible for displaying and controlling the configuration and output of a
@@ -74,8 +75,12 @@ public class BrowserViewManager {
} else {
currNode = (ProgramElementNode)structureNode;
}
- Ajde.getDefault().getEditorManager().addViewForSourceLine(currNode.getSourceLocation().getSourceFile().getAbsolutePath(),
- currNode.getSourceLocation().getLine());
+ ISourceLocation sourceLoc = currNode.getSourceLocation();
+ if (null != sourceLoc) {
+ Ajde.getDefault().getEditorManager().addViewForSourceLine(
+ sourceLoc.getSourceFile().getAbsolutePath(),
+ sourceLoc.getLine());
+ }
}
}
diff --git a/ajde/src/org/aspectj/ajde/ui/swing/SwingTreeViewNodeRenderer.java b/ajde/src/org/aspectj/ajde/ui/swing/SwingTreeViewNodeRenderer.java
index 66f73fb69..a2ba8a601 100644
--- a/ajde/src/org/aspectj/ajde/ui/swing/SwingTreeViewNodeRenderer.java
+++ b/ajde/src/org/aspectj/ajde/ui/swing/SwingTreeViewNodeRenderer.java
@@ -27,6 +27,7 @@ import org.aspectj.asm.ProgramElementNode;
import org.aspectj.asm.RelationNode;
import org.aspectj.asm.StructureNode;
import org.aspectj.bridge.IMessage;
+import org.aspectj.bridge.ISourceLocation;
/**
* @author Mik Kersten
@@ -45,10 +46,12 @@ class SwingTreeViewNodeRenderer extends DefaultTreeCellRenderer {
StructureNode node = viewNode.getStructureNode();
if (node instanceof LinkNode) {
- if (((LinkNode)node).getProgramElementNode().getSourceLocation().getSourceFile().getAbsolutePath() == null) {
- setTextNonSelectionColor(AjdeWidgetStyles.LINK_NODE_NO_SOURCE_COLOR);
- } else {
+ ISourceLocation sourceLoc = ((LinkNode)node).getProgramElementNode().getSourceLocation();
+ if ((null != sourceLoc)
+ && (null != sourceLoc.getSourceFile().getAbsolutePath())) {
setTextNonSelectionColor(AjdeWidgetStyles.LINK_NODE_COLOR);
+ } else {
+ setTextNonSelectionColor(AjdeWidgetStyles.LINK_NODE_NO_SOURCE_COLOR);
}
} else {
setTextNonSelectionColor(new Color(0, 0, 0));
diff --git a/asm/src/org/aspectj/asm/StructureModelManager.java b/asm/src/org/aspectj/asm/StructureModelManager.java
index 4a868d9fe..1dbf2981d 100644
--- a/asm/src/org/aspectj/asm/StructureModelManager.java
+++ b/asm/src/org/aspectj/asm/StructureModelManager.java
@@ -16,7 +16,8 @@ package org.aspectj.asm;
import java.util.*;
import java.io.*;
-import org.aspectj.asm.*;
+
+import org.aspectj.bridge.ISourceLocation;
/**
* @author Mik Kersten
@@ -72,12 +73,15 @@ public class StructureModelManager {
ProgramElementNode peNode = (ProgramElementNode)it.next();
List entries = new ArrayList();
entries.add(peNode);
- Integer hash = new Integer(peNode.getSourceLocation().getLine());
- List existingEntry = (List)annotations.get(hash);
- if (existingEntry != null) {
- entries.addAll(existingEntry);
+ ISourceLocation sourceLoc = peNode.getSourceLocation();
+ if (null != sourceLoc) {
+ Integer hash = new Integer(sourceLoc.getLine());
+ List existingEntry = (List)annotations.get(hash);
+ if (existingEntry != null) {
+ entries.addAll(existingEntry);
+ }
+ annotations.put(hash, entries);
}
- annotations.put(hash, entries);
}
return annotations;
}