public static final boolean DEBUG = false;
// The singleton instance
- private static AssignmentTracingUI singleton;
+ private static AssignmentTracingUI singleton = new AssignmentTracingUI();
/**
* Def/use annotations applied currently in the current editor
* @return the singleton instance
*/
public static AssignmentTracingUI getInstance() {
- if (singleton == null) {
- singleton = new AssignmentTracingUI();
- }
return singleton;
}
}
}
Position pos = astNamePositionList.get(positionIndex);
- getActiveCEditor().selectAndReveal(pos.getOffset(), pos.getLength());
+ CEditor cEditor = getActiveCEditor();
+ if (cEditor != null) {
+ cEditor.selectAndReveal(pos.getOffset(), pos.getLength());
+ }
}
}
}
}
Position pos = astNamePositionList.get(positionIndex);
- getActiveCEditor().selectAndReveal(pos.getOffset(), pos.getLength());
+ CEditor cEditor = getActiveCEditor();
+ if (cEditor != null) {
+ cEditor.selectAndReveal(pos.getOffset(), pos.getLength());
+ }
}
}
-* 2.0.0\r
-- Tizen 2.0 release\r
-== hyukmin0530.kwon <hyukmin0530.kwon@samsung.com> 2013-01-11\r
+* 1.0.18
+- Version up for Tizen 2.1
+== hyukmin0530.kwon <hyukmin0530.kwon@samsung.com> 2013-03-19 12:04
+* 1.0.17
+- Synchronization to the tizen_2.0 branch
+== hyukmin0530.kwon <hyukmin0530.kwon@samsung.com> 2013-03-08 11:45
-Version:2.0.0
+Version:1.0.18
Maintainer:Woongsik Choi <woongsik76.choi@samsung.com>, Hyukmin Kwon <hyukmin0530.kwon@samsung.com>, Wooyoung Cho <wooyoung1.cho@samsung.com>, Yoonseok Ko <ys597.ko@samsung.com>, Jaeheung Kim <jaeheung.kim@samsung.com>, Sujin Kim <sujin921.kim@samsung.com>
Source: assignmenttracing-eplugin