rem
stringlengths
0
477k
add
stringlengths
0
313k
context
stringlengths
6
599k
meta
stringlengths
141
403
{ registry = ctx; canUpdate = true; EventBus bus = registry.getEventBus(); bus.register(this, ImageLoaded.class); bus.register(this, DisplayRendering.class); }
{ registry = ctx; canUpdate = true; EventBus bus = registry.getEventBus(); bus.register(this, ImageLoaded.class); bus.register(this, DisplayRendering.class); }
public void setContext(Registry ctx) { registry = ctx; canUpdate = true; EventBus bus = registry.getEventBus(); bus.register(this, ImageLoaded.class); bus.register(this, DisplayRendering.class); }
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/1722ebf9ac60fc8e45cdc8d0049e85db5b86715c/RenderingAgt.java/clean/SRC/org/openmicroscopy/shoola/agents/rnd/RenderingAgt.java
output.dumpInt(obj.getInstanceVariables().size()); for (Iterator iter = obj.instanceVariableNames(); iter.hasNext();) {
Map iVars = obj.getInstanceVariablesSnapshot(); output.dumpInt(iVars.size()); for (Iterator iter = iVars.keySet().iterator(); iter.hasNext();) {
public void writeInstanceVars(IRubyObject obj, MarshalStream output) throws IOException { IRuby runtime = obj.getRuntime(); output.dumpInt(obj.getInstanceVariables().size()); for (Iterator iter = obj.instanceVariableNames(); iter.hasNext();) { String name = (String) iter.next();...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/8ba215b45e1c5d4c7c521b253d9715a3cfdd6a34/MarshalStream.java/clean/src/org/jruby/runtime/marshal/MarshalStream.java
IRubyObject value = obj.getInstanceVariable(name); if (value != null) { output.dumpObject(runtime.newSymbol(name)); output.dumpObject(value); }
IRubyObject value = (IRubyObject)iVars.get(name); output.dumpObject(runtime.newSymbol(name)); output.dumpObject(value);
public void writeInstanceVars(IRubyObject obj, MarshalStream output) throws IOException { IRuby runtime = obj.getRuntime(); output.dumpInt(obj.getInstanceVariables().size()); for (Iterator iter = obj.instanceVariableNames(); iter.hasNext();) { String name = (String) iter.next();...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/8ba215b45e1c5d4c7c521b253d9715a3cfdd6a34/MarshalStream.java/clean/src/org/jruby/runtime/marshal/MarshalStream.java
if (ChainBuilderAgent.DEBUG)
if (ChainBuilderAgent.DEBUG > 4)
public void mouseDoubleClicked(GenericEventHandler handler, PInputEvent event) { try { if (ChainBuilderAgent.DEBUG) System.err.println("Saving chain snapshot..."); PBounds b = chainView.getFullBounds(); BufferedImage image = (BufferedImage) chainView.toImage((int) (b.getWidth()*2), (in...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/630a53d68f5d29c53d2485557b18599785befb83/ChainBox.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainBox.java
if (ChainBuilderAgent.DEBUG)
if (ChainBuilderAgent.DEBUG>4)
public void mouseDoubleClicked(GenericEventHandler handler, PInputEvent event) { try { if (ChainBuilderAgent.DEBUG) System.err.println("Saving chain snapshot..."); PBounds b = chainView.getFullBounds(); BufferedImage image = (BufferedImage) chainView.toImage((int) (b.getWidth()*2), (in...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/630a53d68f5d29c53d2485557b18599785befb83/ChainBox.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainBox.java
if (ChainBuilderAgent.DEBUG)
if (ChainBuilderAgent.DEBUG >4 )
public void mouseDoubleClicked(GenericEventHandler handler, PInputEvent event) { try { if (ChainBuilderAgent.DEBUG) System.err.println("Saving chain snapshot..."); PBounds b = chainView.getFullBounds(); BufferedImage image = (BufferedImage) chainView.toImage((int) (b.getWidth()*2), (in...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/630a53d68f5d29c53d2485557b18599785befb83/ChainBox.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainBox.java
exitStatus |= checkPackageCoverageLevels(packageBranchCoverageRate, packageLineCoverageRate);
public Main(String[] args) throws MalformedPatternException { int exitStatus = 0; Header.print(System.out); File dataFile = CoverageDataFileHandler.getDefaultDataFile(); double branchCoverageRate = 0.0; double lineCoverageRate = 0.0; double totalBranchCoverageRate = 0.0; double totalLineCoverageRate = 0.0; for...
50197 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50197/e6b9546f524ec82a34db61772929657e87625501/Main.java/clean/cobertura/src/net/sourceforge/cobertura/check/Main.java
task.createArg().setValue("test.xml");
task.createArg().setValue(BASEDIR + "/test.xml");
private static void runTestAntScript(String testName, String target) throws IOException { Java task = new Java(); task.setTaskName("java"); task.setProject(new Project()); task.init(); // Call ant launcher. Requires ant-lancher.jar. task.setClassname("org.apache.tools.ant.launch.Launcher"); task.setFork(true);...
50197 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50197/5b30351fa9d71ab4016d2fcbdce172b2f16c1c45/FunctionalTest.java/buggy/cobertura/test/net/sourceforge/cobertura/ant/FunctionalTest.java
public XMLReport(Map coverageData, File outputDir, File sourceDirectory)
public XMLReport(Coverage coverage, File outputDir, File sourceDirectory)
public XMLReport(Map coverageData, File outputDir, File sourceDirectory) throws IOException { pw = new PrintWriter(new FileWriter(new File(outputDir, "coverage.xml"))); try { println("<?xml version=\"1.0\"?>"); if (sourceDirectory == null) { println("<coverage>"); } else { println("<coverage ...
50197 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50197/1fc76069b3c268690aea68cfb654d632b23e3b49/XMLReport.java/buggy/cobertura/src/net/sourceforge/cobertura/reporting/xml/XMLReport.java
dump(coverageData.entrySet().iterator());
dumpPackages(coverage);
public XMLReport(Map coverageData, File outputDir, File sourceDirectory) throws IOException { pw = new PrintWriter(new FileWriter(new File(outputDir, "coverage.xml"))); try { println("<?xml version=\"1.0\"?>"); if (sourceDirectory == null) { println("<coverage>"); } else { println("<coverage ...
50197 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50197/1fc76069b3c268690aea68cfb654d632b23e3b49/XMLReport.java/buggy/cobertura/src/net/sourceforge/cobertura/reporting/xml/XMLReport.java
Ruby ruby = self.toRubyObject().getRuntime();
Ruby ruby = self.getRuntime();
public static Block createBlock(INode var, ICallable method, IRubyObject self) { Ruby ruby = self.toRubyObject().getRuntime(); return new Block(var, method, self, ruby.getCurrentFrame(), ruby.currentScope(), ruby.getRubyClass(), ruby.getCurrentIter(), ruby.getDynamicVars()/*, null*/); }
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/f235ab756f32ea9496f8f880066b46ad95ebb692/Block.java/clean/org/jruby/runtime/Block.java
return Collections.EMPTY_LIST;
return EMPTY_LIST;
public List childNodes() { return Collections.EMPTY_LIST; }
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/SelfNode.java/buggy/src/org/jruby/ast/SelfNode.java
c.setLayout(new GridBagLayout());
private void buildGUI() { Container c = getContentPane(); c.setLayout(new GridBagLayout()); // Create and initialize the tabs JTabbedPane tabs = new JTabbedPane(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); tabs.setAlignmentX(LEFT_ALIGNMENT)...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/4452ed7ff305a481226e32b652063e076c2e3b1e/RendererUI.java/clean/SRC/org/openmicroscopy/shoola/agents/imviewer/rnd/RendererUI.java
GridBagConstraints gbc = new GridBagConstraints(); gbc.fill = GridBagConstraints.BOTH; gbc.anchor = GridBagConstraints.CENTER; c.add(tabs, gbc); gbc.gridy = 1; gbc.fill = GridBagConstraints.NONE; gbc.anchor = GridBagConstraints.EAST; c.add(createButtonPanel(),gbc);
c.setLayout(new BorderLayout()); c.add(tabs,BorderLayout.NORTH); c.add(createButtonPanel(),BorderLayout.SOUTH);
private void buildGUI() { Container c = getContentPane(); c.setLayout(new GridBagLayout()); // Create and initialize the tabs JTabbedPane tabs = new JTabbedPane(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); tabs.setAlignmentX(LEFT_ALIGNMENT)...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/4452ed7ff305a481226e32b652063e076c2e3b1e/RendererUI.java/clean/SRC/org/openmicroscopy/shoola/agents/imviewer/rnd/RendererUI.java
return Collections.EMPTY_LIST;
return EMPTY_LIST;
public List childNodes() { return Collections.EMPTY_LIST; }
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/XStrNode.java/clean/src/org/jruby/ast/XStrNode.java
public IRubyObject at(RubyNumeric pos) { return entry(pos.getLongValue());
public IRubyObject at(IRubyObject pos) { return entry(convertToLong(pos));
public IRubyObject at(RubyNumeric pos) { return entry(pos.getLongValue()); }
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/c7dd68582671accbda88be7e8c056244923e780a/RubyArray.java/clean/src/org/jruby/RubyArray.java
arrayClass.defineMethod("at", callbackFactory.getMethod("at", RubyNumeric.class));
arrayClass.defineMethod("at", callbackFactory.getMethod("at", IRubyObject.class));
public static RubyClass createArrayClass(Ruby runtime) { RubyClass arrayClass = runtime.defineClass("Array", runtime.getClasses().getObjectClass()); arrayClass.includeModule(runtime.getModule("Enumerable")); CallbackFactory callbackFactory = runtime.callbackFactory(RubyArray.class); arra...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/c7dd68582671accbda88be7e8c056244923e780a/RubyArray.java/clean/src/org/jruby/RubyArray.java
if (argc != 0) { if (args[0] instanceof RubyNumeric) { len = RubyNumeric.fix2long(args[0]); } else if (args[0] instanceof RubyArray) {
if (argc > 0) { if (args[0] instanceof RubyArray) {
public IRubyObject initialize(IRubyObject[] args) { int argc = checkArgumentCount(args, 0, 2); RubyArray arrayInitializer = null; long len = 0; if (argc != 0) { if (args[0] instanceof RubyNumeric) { len = RubyNumeric.fix2long(args[0]); } else if (args[0] instance...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/c7dd68582671accbda88be7e8c056244923e780a/RubyArray.java/clean/src/org/jruby/RubyArray.java
} else { len = convertToLong(args[0]);
public IRubyObject initialize(IRubyObject[] args) { int argc = checkArgumentCount(args, 0, 2); RubyArray arrayInitializer = null; long len = 0; if (argc != 0) { if (args[0] instanceof RubyNumeric) { len = RubyNumeric.fix2long(args[0]); } else if (args[0] instance...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/c7dd68582671accbda88be7e8c056244923e780a/RubyArray.java/clean/src/org/jruby/RubyArray.java
result.setFrozen(isFrozen());
public IRubyObject rbClone() { RubyArray result = getRuntime().newArray(new ArrayList(list)); result.initCopy(this); return result; }
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/c7dd68582671accbda88be7e8c056244923e780a/RubyArray.java/clean/src/org/jruby/RubyArray.java
(TranslatorUtil.TranslationType)translatorBox.getSelectedItem();
(TranslatorUtil.TranslationType)translatorBox.getSelectedItem();
public void initialize() { // Retrieve ChatManager from the SparkManager ChatManager chatManager = SparkManager.getChatManager(); // Add to a new ChatRoom when the ChatRoom opens. chatManager.addChatRoomListener(new ChatRoomListenerAdapter() { public void chatRoomOpened(ChatRo...
52006 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/52006/93b8449904967783211de8a56a69f1cec482d118/TranslatorPlugin.java/clean/src/plugins/translator/src/java/org/jivesoftware/spark/translator/TranslatorPlugin.java
(TranslatorUtil.TranslationType)translatorBox.getSelectedItem();
(TranslatorUtil.TranslationType)translatorBox.getSelectedItem();
public void chatRoomOpened(ChatRoom room) { // only do the translation for single chat if (room instanceof ChatRoomImpl) { final ChatRoomImpl roomImpl = (ChatRoomImpl)room; // Create a new ChatRoomButton. final JComboBox ...
52006 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/52006/93b8449904967783211de8a56a69f1cec482d118/TranslatorPlugin.java/clean/src/plugins/translator/src/java/org/jivesoftware/spark/translator/TranslatorPlugin.java
(TranslatorUtil.TranslationType)translatorBox.getSelectedItem();
(TranslatorUtil.TranslationType)translatorBox.getSelectedItem();
public void sendingMessage(Message message) { String currentBody = message.getBody(); TranslatorUtil.TranslationType type = (TranslatorUtil.TranslationType)translatorBox.getSelectedItem(); ...
52006 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/52006/93b8449904967783211de8a56a69f1cec482d118/TranslatorPlugin.java/clean/src/plugins/translator/src/java/org/jivesoftware/spark/translator/TranslatorPlugin.java
for (DisplayedNote child : displayedNotes) {
while (displayedNotes.size() > 0) { DisplayedNote child = displayedNotes.get(0);
public void deleteSelfAndChildren() { for (DisplayedNote child : displayedNotes) { child.deleteSelfAndChildren(); } treeNode.dispose(); if (tab != null) tab.dispose(); holder.removeDisplayedNote(this); note.getHolder().removeNote(note); }
57508 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/57508/7ad283aaa04b8b53a82e0693b22ac284bcd6637b/DisplayedNote.java/buggy/trunk/src/de/berlios/koalanotes/display/DisplayedNote.java
41, 387, 11, 10, 11, 444, 666, 263, 693, 59, 695, 671, 10, 310, 58, 59, 402, 94, 44, 342, 61, 10, 342, 100, 10, 280, 10, 10, 51, 44, 361, 53, 2, 3, 4, 5, 113, 10, 8, 9, 10, 11, 59, 10, 14, 15, 16, 94, 310, 19, 15, 16, 32, 0, 19, ...
41, 387, 11, 10, 11, 444, 269, 693, 271, 59, 310, 697, 10, 310, 58, 59, 402, 94, 44, 263, 61, 10, 666, 100, 10, 280, 10, 671, 51, 44, 342, 53, 2, 3, 4, 5, 113, 10, 8, 9, 10, 11, 59, 10, 14, 15, 16, 94, 10, 19, 15, 16, 342, 0, 19, ...
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
271, 337, 262, 267, 309, 310, 311, 312, 313, 314,
271, 337, 61, 267, 309, 310, 311, 312, 313, 314,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
350, 264, 222, 223, 308, 310, 368, 342, 61, 301, 345, 346, 59, 348, 306, 59, 340, 352, 346, 267,
350, 339, 222, 223, 262, 310, 368, 342, 44, 301, 345, 346, 59, 348, 306, 264, 340, 352, 346, 267,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
349, 246, 247, 341, 369, 279, 256, 339, 727, 725,
349, 246, 247, 341, 369, 339, 256, 308, 727, 725,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
339, 414, 427, 401, 308, 407, 776, 432, 433, 434, 425, 340, 414, 425, 363, 340, 441, 799, 267, 444, 342, 799, 447, 330, 267, 772, 91, 425, 91, 454, 337, 44, 342, 431, 44, 345, 346, 342, 348, 349, 350, 269, 352, 271, 267, 330, 358, 361, 397, 398,
61, 414, 427, 401, 339, 407, 776, 432, 433, 434, 425, 340, 414, 425, 363, 59, 441, 799, 267, 444, 308, 799, 447, 330, 267, 772, 91, 425, 91, 454, 337, 279, 342, 431, 340, 345, 346, 342, 348, 349, 350, 269, 352, 271, 267, 330, 358, 44, 397, 398,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
370, 371, 330, 337, 369, 319, 349, 319, 44, 337, 849, 319, 10, 383, 342, 279, 339, 387, 368, 826,
370, 371, 330, 337, 369, 44, 349, 342, 44, 337, 849, 310, 10, 383, 342, 279, 315, 387, 368, 826,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
393, 401, 10, 41, 337, 91, 330, 10, 428, 342, 41, 59, 41, 337, 511, 44, 263, 264, 272, 516, 274, 275, 549, 311, 312, 522, 523, 358, 361, 290, 291, 431, 61, 93, 454, 428, 125, 554, 41, 454, 306, 44, 371, 10, 358, 340, 554, 313, 314, 574, 58, 59, 574, 453, 240...
393, 401, 10, 319, 337, 91, 330, 10, 428, 342, 319, 59, 319, 337, 511, 41, 263, 264, 361, 516, 369, 370, 549, 311, 312, 522, 523, 358, 361, 339, 272, 431, 274, 275, 454, 428, 41, 554, 41, 454, 306, 44, 93, 10, 358, 340, 554, 313, 314, 574, 58, 59, 574, 453, 24...
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
615, 19, 10, 542, 619, 311, 312, 544, 26, 346, 330, 16, 59, 269, 19, 630, 267, 337, 264, 41, 44, 41, 44, 10, 44, 268, 269, 566, 643, 47, 48, 49, 690, 41, 271, 53, 44, 41, 630, 61, 655, 61, 349, 350, 544, 545, 657, 662, 663, 263, 264, 59, 44, 668, 669...
615, 19, 10, 542, 619, 268, 269, 544, 26, 371, 330, 16, 59, 44, 19, 630, 346, 337, 264, 41, 269, 41, 44, 10, 44, 349, 350, 566, 643, 47, 48, 49, 690, 41, 267, 53, 44, 41, 630, 61, 655, 61, 263, 264, 544, 545, 657, 662, 663, 56, 57, 59, 271, 668, 669...
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
630, 339, 14, 633, 339, 630, 264, 264, 404, 93, 732, 269, 59, 271, 683, 10, 44, 627, 628, 702, 650, 44, 767, 310, 769, 91, 264, 657, 658, 349,
630, 339, 14, 633, 339, 630, 264, 93, 404, 264, 732, 269, 59, 271, 683, 10, 264, 627, 628, 702, 650, 44, 767, 310, 769, 91, 44, 657, 658, 349,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
47, 246, 247, 264, 125, 263, 834, 264, 721, 722, 723, 91, 867, 41, 869, 847, 308, 279, 280, 279, 280, 44, 877, 44, 58, 59, 881, 767, 264, 264, 44, 771, 772, 41, 93, 262, 263, 264, 58, 59,
47, 246, 247, 264, 125, 263, 834, 44, 721, 722, 723, 91, 867, 264, 869, 847, 41, 279, 280, 279, 280, 264, 877, 308, 58, 59, 881, 767, 264, 44, 44, 771, 772, 41, 264, 262, 263, 264, 58, 59,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
308, 279, 792, 264, 264, 44, 10, 91, 771, 125,
308, 279, 792, 93, 264, 44, 10, 91, 771, 125,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
330, 91, 342, 14, 41, 337, 41, 337, 93, 792, 342, 93, 342, 125, 342, 44, 826, 345, 346, 41,
330, 91, 342, 14, 41, 337, 41, 337, 41, 792, 342, 93, 342, 93, 342, 44, 826, 345, 346, 125,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
307, 308, 309, 836, 330, 247, 414, 0, 695, 264, 695, 337, 71, 268, 269, -1, 107, 304, -1, -1,
307, 308, 309, 836, 330, 247, 414, 0, 697, 264, 697, 337, 71, 268, 269, -1, 107, 304, -1, -1,
private static final short[] yyCheck1() { return new short[] { 15, 16, 215, 14, 19, 7, 247, 15, 16, 6, 378, 19, 15, 16, 21, 375, 19, 71, 6, 7, 392, 51, 27, 15, 16, 27, 342, 19, 43, 44, 10, 3, 398, 370, 49, 50...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
62, 588, 221, 215, 218, 617, 762, 435, 783, 217, 786, 766, 492, 469, 382, 217, 606, 353, 441, 244, 60, 363, 247, 248, 216, 337, 308, 253, 109, 444, 256, 285, 79, 79, 110, 110, 353, 216, 79, 210, 210, 210, 492, 89, 225, 210, 210, 354, 387, 210, 235, 235, 295, 492, 235...
62, 588, 221, 215, 218, 617, 393, 783, 394, 217, 469, 786, 492, 387, 382, 217, 606, 353, 441, 435, 60, 363, 762, 248, 216, 337, 308, 766, 109, 444, 244, 285, 79, 79, 110, 110, 353, 216, 79, 210, 210, 210, 492, 89, 225, 210, 210, 354, 441, 210, 235, 235, 247, 492, 235...
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
536, 379, 210, 210, 380, 455, 550, 234, 389, 471, 524, 527, 492, 234, 476, 396, 406, 538, 531, 492,
536, 352, 210, 210, 377, 455, 550, 234, 376, 471, 524, 527, 492, 234, 476, 379, 406, 538, 531, 492,
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
265, 235, 417, 518, 234, 403, 79, 388, 617, 802,
265, 235, 417, 518, 234, 388, 79, 380, 617, 802,
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
390, 622, 634, 518, 399, 614, 564, 637, 638, 639, 632, 363, 624, 203, 543, 406, 234, 841, 492, 234, 426, 839, 234, 273, 82, 825, 454, 190, 835, 234, 273, 407, 210, 518, 410, 210, 210, 269, 210, 79, 279, 482, 210, 482, 84, 492, 61, 428, 600, 600,
389, 622, 634, 518, 390, 614, 564, 637, 638, 639, 632, 363, 624, 203, 543, 396, 234, 841, 492, 234, 399, 839, 234, 273, 82, 825, 454, 190, 835, 234, 273, 403, 210, 518, 406, 210, 210, 269, 210, 79, 279, 482, 210, 482, 84, 492, 61, 407, 600, 600,
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
79, 210, 278, 628, 269, 309, 264, 432, 79, 278, 617, 433, 492, 79, 473, 64, 434, 210, 549, 855,
79, 210, 278, 628, 269, 410, 264, 426, 79, 278, 617, 455, 492, 79, 473, 64, 463, 210, 549, 855,
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
592, 549, 356, 436, 472, 278, 385, 445, 79, 472, 437, 492, 63, 386, 666, 71, 492, 492, 445, 671, 448, 449, 670, 260, 261, 674, 676, 69, 472, 307, 308, 549, 61, 446, 210, 635, 450, 688, 445, 269, 422, 445, 464, 459, 64, 217, 190, 423, 424, 701, 356, 356, 203, 549, 4...
592, 549, 356, 309, 472, 278, 385, 445, 79, 472, 432, 492, 433, 386, 666, 436, 492, 492, 428, 671, 456, 457, 670, 357, 358, 674, 676, 69, 472, 434, 445, 549, 448, 449, 210, 635, 437, 688, 445, 269, 422, 445, 446, 459, 64, 217, 190, 423, 424, 701, 356, 356, 203, 549, 4...
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
94, 94, 94, 94, 459, 468, 234, 94, 94, 455, 234, 94, 454, 682, 234, 357, 358, 683, 94, 540, 430, 242, 459, 579, 243, 234, 583, 431, 596, 76, 608, 78, 76, 492, 78, 709, 579, 692, 744, 94, 94, 94, 778, 454, 394, 94, 454, 618, 614, 76, 752, 78, 562, 563, 210...
94, 94, 94, 94, 459, 464, 234, 94, 94, 455, 234, 94, 454, 682, 234, 709, 579, 683, 94, 468, 430, 242, 459, 537, 243, 234, 540, 431, 596, 76, 579, 78, 76, 492, 78, 562, 563, 692, 744, 94, 94, 94, 778, 454, 583, 94, 454, 618, 614, 76, 752, 78, 492, 492, 210...
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
210, 713, 226, 210, 714, 740, 492, 717, 609, 715, 811, 492, 160, 492, 773, 492, 720, 737, 738, 109, 79, 80, 821, 455, 234, 423, 718, 225, 79, 232,
210, 713, 226, 210, 714, 740, 492, 715, 609, 717, 811, 492, 160, 492, 773, 492, 718, 737, 738, 109, 79, 80, 821, 455, 234, 423, 720, 225, 79, 232,
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
84, 415, 418, 818, 820, 94, 518, 819, 799, 800, 801, 473, 234, 827, 234, 868, 832, 76, 472, 78, 473, 829, 234, 847, 85, 85, 234, 210, 842, 843, 849, 79, 79, 852, 873, 492, 492, 492, 88, 88, 853, 854, 492, 94, 94, 94, 94, 94, 94, 94, 94, 89, 79, 871, 875...
84, 415, 418, 818, 820, 94, 518, 829, 799, 800, 801, 473, 234, 819, 234, 868, 827, 76, 472, 78, 473, 842, 234, 832, 85, 85, 234, 210, 843, 847, 849, 79, 79, 852, 854, 492, 492, 492, 88, 88, 853, 871, 492, 94, 94, 94, 94, 94, 94, 94, 94, 89, 79, 873, 875...
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
473, 279, 483, 230, 493, 472, 483, 473, 483, 836, 472, 485, 473, 485, 94, 75, 79, 94, 94, 254,
473, 279, 483, 230, 493, 472, 483, 473, 254, 836, 472, 483, 473, 485, 94, 75, 79, 94, 94, 485,
private static final short[] yyTable1() { return new short[] { 234, 234, 391, 229, 234, 203, 419, 239, 239, 189, 580, 239, 237, 237, 248, 564, 237, 300, 190, 190, 591, 281, 252, 240, 240, 203, 519, 240, 257, 259, 216, 95, 601, 552, 234, 234...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/b1293eda8454686e846e2a9837b348e2983bb423/YyTables.java/clean/src/org/jruby/parser/YyTables.java
getFiles();
try { getFiles(); } catch (PatternSyntaxException e) { return new String[] {}; }
public String[] getNames() { getFiles(); ArrayList allMatchedNames = new ArrayList(); for (Iterator iter = patterns.iterator(); iter.hasNext();) { GlobPattern pattern = (GlobPattern) iter.next(); allMatchedNames.addAll(pattern.getMatchedFiles()); } return (String[]) allMatchedNames.toArr...
50661 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/50661/3806033b2308724fa6c379c1105c8fdac0c16ec5/Glob.java/clean/src/org/jruby/util/Glob.java
super.paintComponent(g);
public void paintComponent(Graphics g) { Graphics2D g2D = (Graphics2D) g; g2D.setColor(PlaneSlicingPanel.bgColor); g2D.fillRect(0, 0, WIDTH, HEIGHT); Font font = g2D.getFont(); FontMetrics fontMetrics = g2D.getFontMetrics(); int hFont = fontMetrics.getHeight(); Rectangle2D rInput = font.getStringBounds("(2) I...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/6a28b54c142c80cf786f76c45b6be256d92fd0bb/PlaneSlicingStaticPanel.java/buggy/SRC/org/openmicroscopy/shoola/agents/rnd/pane/PlaneSlicingStaticPanel.java
return "Classification"+(attributeId==null ? ":Hash"+this.hashCode() : ":"+attributeId);
return "Classification"+(attributeId==null ? ":Hash_"+this.hashCode() : ":Id_"+attributeId);
public String toString(){ return "Classification"+(attributeId==null ? ":Hash"+this.hashCode() : ":"+attributeId); }
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/51a3c546dfc7a7a98b29771a459df19094fc5b51/Classification.java/clean/components/common/src/ome/model/Classification.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse single click");
public void actionPerformed(ActionEvent e) { //System.err.println("mouse single click"); if (cachedEvent != null) doMouseClicked(cachedEvent); cachedEvent = null; timer.stop(); }
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("cancelling module links..."); System.err.println("selected module is..."+selectedModule); }
public void cancelModuleLinks() { //System.err.println("cancelling module links..."); //System.err.println("selected module is..."+selectedModule); Iterator iter = links.iterator(); while (iter.hasNext()) { ParamLink link = (ParamLink) iter.next(); link.remove(); } //System.err.println("cancelling modules li...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("cancelling modules links. link state is NOT_LINKING");
public void cancelModuleLinks() { //System.err.println("cancelling module links..."); //System.err.println("selected module is..."+selectedModule); Iterator iter = links.iterator(); while (iter.hasNext()) { ParamLink link = (ParamLink) iter.next(); link.remove(); } //System.err.println("cancelling modules li...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("canceling link");
private void cancelParamLink() { //System.err.println("canceling link"); if (link != null) link.remove(); link =null; cleanUParamLink(); }
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("mouse clicked.."+e); System.err.println("link state is "+linkState); }
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("cancelled link. set to not linking");
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("linking...");
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("post popup");
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse clicked on .."+node);
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("zooming in on node..."+node); System.err.println("camera view scale was "+camera.getViewScale()); }
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("canvas right click..");
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("zoomed with shhift..");
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("zoomed witout shift...");
public void doMouseClicked(PInputEvent e) { if (postLinkCompletion == true) return; // we only scale if we're not drawing a link. // System.err.println("mouse clicked.."+e); //System.err.println("link state is "+linkState); if (linkState != NOT_LINKING) { if (linkState == LINKING_CANCELLATION) { //System.er...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("got a double click on "+node);
private void doMouseDoubleClicked(PInputEvent e) { PNode node = e.getPickedNode(); //System.err.println("got a double click on "+node); if (node instanceof ModuleView){ selectedModule = (ModuleView) node; // only start links if it's linkable if (selectedModule.isLinkable()) startModuleLinks(e); } else if...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("popup. zooming out of "+n);
private void evaluatePopup(PInputEvent e) { postPopup=true; PNode n = e.getPickedNode(); PNode p = n.getParent(); //System.err.println("popup. zooming out of "+n); if (n instanceof BufferedObject && (p == canvas.getLayer() || p instanceof ChainView)) { // if I'm on a module that's not in a chain or not. ...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("finish module links. state is not_linking");
public void finishModuleLinks(ModuleView mod) { Collection c; // if I started as inputs, get outputs of this node. if (moduleLinksStartedAsInputs == true) c = mod.getOutputParameters(); else c = mod.getInputParameters(); finishModuleLinks(c); links = new Vector(); //System.err.println("finish module li...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("finishing module target link");
private void finishModuleTargetLink(ModuleLinkTarget n) { //first, if input and output are the same, barf. if (n.getModuleView() == moduleLinkOriginTarget.getModuleView()) { showSelfLinkError(); cancelModuleTargetLink(); return; } else if (n.isInputLinkTarget() && moduleLinkOriginTarget.isInputLinkTarge...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("finishing link");
private void finishParamLink() { if (lastParameterEntered.getModuleView() == linkOrigin.getModuleView()) { showSelfLinkError(); cancelParamLink(); } else if (lastParameterEntered.getClass() == linkOrigin.getClass()) { showParameterInputOutputConflictError(linkOrigin); cancelParamLink(); } else if (lastPar...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("finishParamLink. state is NOT_LINKING");
private void finishParamLink() { if (lastParameterEntered.getModuleView() == linkOrigin.getModuleView()) { showSelfLinkError(); cancelParamLink(); } else if (lastParameterEntered.getClass() == linkOrigin.getClass()) { showParameterInputOutputConflictError(linkOrigin); cancelParamLink(); } else if (lastPar...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("a key was pressed ");
public void keyPressed(PInputEvent e) { //System.err.println("a key was pressed "); int key = e.getKeyCode(); if (key != KeyEvent.VK_DELETE && key != KeyEvent.VK_BACK_SPACE) return; if (selectedLink != null) { selectedLink.remove(); selectedLink = null; } else if (selectedModule != null) { selectedMod...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse double click");
public void mouseClicked(PInputEvent e) { if (timer.isRunning()) { //System.err.println("mouse double click"); // this is effectively a double click. timer.stop(); if (wasDoubleClick == true) wasDoubleClick = false; else doMouseDoubleClicked(e); } else { timer.restart(); //System.err.println("c...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("caching click event .."+e);
public void mouseClicked(PInputEvent e) { if (timer.isRunning()) { //System.err.println("mouse double click"); // this is effectively a double click. timer.stop(); if (wasDoubleClick == true) wasDoubleClick = false; else doMouseDoubleClicked(e); } else { timer.restart(); //System.err.println("c...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("CHAIN HANDLER:got a drag event in chain canvas"); System.err.println("mouse dragged..."+e.getPickedNode()); }
public void mouseDragged(PInputEvent e) { //System.err.println("mouse dragged..."+e.getPickedNode()); // System.err.println("CHAIN HANDLER:got a drag event in chain canvas"); mouseMoved(e); super.mouseDragged(e); }
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse entered last entered.."+node);
public void mouseEntered(PInputEvent e) { PNode node = e.getPickedNode(); if (node instanceof FormalParameter) { lastParameterEntered = (FormalParameter) node; //System.err.println("mouse entered last entered.."+ if (linkState == NOT_LINKING) { // turn on params for this parameter lastParameterEntered.s...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("last parameter entered cleared");
public void mouseExited(PInputEvent e) { PNode node = e.getPickedNode(); lastParameterEntered = null; //System.err.println("last parameter entered cleared"); if (node instanceof FormalParameter) { FormalParameter param = (FormalParameter) node; if (linkState == NOT_LINKING) { param.setParamsHighlighted(fal...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("setting end of module link..");
public void mouseMoved(PInputEvent e) { Point2D pos = e.getPosition(); if (linkState == LINKING_PARAMS) { link.setEndCoords((float) pos.getX(),(float) pos.getY()); } else if (linkState == LINKING_MODULES) { Iterator iter = links.iterator(); ParamLink lnk; while (iter.hasNext()) { lnk = (ParamLink) iter....
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse pressed on "+e.getPickedNode());
public void mousePressed(PInputEvent e) { postLinkCompletion = false; //System.err.println("mouse pressed on "+e.getPickedNode()); if (wasDoubleClick == true) { //System.err.println("just came from double click.."); wasDoubleClick = false; return; } if (e.isPopupTrigger()) { //System.err.println("mous...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("just came from double click..");
public void mousePressed(PInputEvent e) { postLinkCompletion = false; //System.err.println("mouse pressed on "+e.getPickedNode()); if (wasDoubleClick == true) { //System.err.println("just came from double click.."); wasDoubleClick = false; return; } if (e.isPopupTrigger()) { //System.err.println("mous...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse pressed..");
public void mousePressed(PInputEvent e) { postLinkCompletion = false; //System.err.println("mouse pressed on "+e.getPickedNode()); if (wasDoubleClick == true) { //System.err.println("just came from double click.."); wasDoubleClick = false; return; } if (e.isPopupTrigger()) { //System.err.println("mous...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("setting selected link to not be selected, in mousePressed");
public void mousePressed(PInputEvent e) { postLinkCompletion = false; //System.err.println("mouse pressed on "+e.getPickedNode()); if (wasDoubleClick == true) { //System.err.println("just came from double click.."); wasDoubleClick = false; return; } if (e.isPopupTrigger()) { //System.err.println("mous...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse pressed..setting link state to not linking..");
public void mousePressed(PInputEvent e) { postLinkCompletion = false; //System.err.println("mouse pressed on "+e.getPickedNode()); if (wasDoubleClick == true) { //System.err.println("just came from double click.."); wasDoubleClick = false; return; } if (e.isPopupTrigger()) { //System.err.println("mous...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("clearing link selection target.. not_LINKING.");
private void mousePressedChangingPoint(PNode node,PInputEvent e) { if (node instanceof PCamera) { //System.err.println("clearing link selection target.. not_LINKING."); linkState = NOT_LINKING; if (selectionTarget != null) { Link link = selectionTarget.getLink(); if (link != null) link.setSelected(fa...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse pressed linking module targets "+e);
private void mousePressedLinkingModuleTargets(PNode node,PInputEvent e) { //System.err.println("mouse pressed linking module targets "+e); PNode n = e.getPickedNode(); if (e.getClickCount() ==2) { cancelModuleTargetLink(); //System.err.println("mouse pressed linking params. setting to linking cancellation"); ...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse pressed linking params. setting to linking cancellation");
private void mousePressedLinkingModuleTargets(PNode node,PInputEvent e) { //System.err.println("mouse pressed linking module targets "+e); PNode n = e.getPickedNode(); if (e.getClickCount() ==2) { cancelModuleTargetLink(); //System.err.println("mouse pressed linking params. setting to linking cancellation"); ...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("node is..."+node); if (node instanceof ParamLink) System.err.println("param link"); if (node instanceof ModuleLink) System.err.println("module link"); System.err.println("caling mouse pressed linking modules.."); }
private void mousePressedLinkingModules(PNode node,PInputEvent e) { int count = e.getClickCount(); //System.err.println("node is..."+node); //if (node instanceof ParamLink) //System.err.println("param link"); //if (node instanceof ModuleLink) //System.err.println("module link"); //System.err.println("caling...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("2 presses. node is "+node);
private void mousePressedLinkingModules(PNode node,PInputEvent e) { int count = e.getClickCount(); //System.err.println("node is..."+node); //if (node instanceof ParamLink) //System.err.println("param link"); //if (node instanceof ModuleLink) //System.err.println("module link"); //System.err.println("caling...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("on camera"); System.err.println("adding an intermediate point to modules link"); }
private void mousePressedLinkingModules(PNode node,PInputEvent e) { int count = e.getClickCount(); //System.err.println("node is..."+node); //if (node instanceof ParamLink) //System.err.println("param link"); //if (node instanceof ModuleLink) //System.err.println("module link"); //System.err.println("caling...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse pressed linking params. setting to linking cancellation");
private void mousePressedLinkingParams(PNode node,PInputEvent e) { //System.err.println("mouse pressed linking params "+e); if (e.getClickCount() ==2) { cancelParamLink(); //System.err.println("mouse pressed linking params. setting to linking cancellation"); linkState = LINKING_CANCELLATION; postLinkComple...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("got mouse presssed not linking..");
private void mousePressedNotLinking(PNode node,PInputEvent e) { //System.err.println("got mouse presssed not linking.."); if (node instanceof FormalParameter) { if (lastParameterEntered == null) mouseEntered(e); FormalParameter param = (FormalParameter) node; //System.err.println("starting a link from .."+...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("starting a link from .."+param.getParameter().getName());
private void mousePressedNotLinking(PNode node,PInputEvent e) { //System.err.println("got mouse presssed not linking.."); if (node instanceof FormalParameter) { if (lastParameterEntered == null) mouseEntered(e); FormalParameter param = (FormalParameter) node; //System.err.println("starting a link from .."+...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("pressing on module link target...");
private void mousePressedNotLinking(PNode node,PInputEvent e) { //System.err.println("got mouse presssed not linking.."); if (node instanceof FormalParameter) { if (lastParameterEntered == null) mouseEntered(e); FormalParameter param = (FormalParameter) node; //System.err.println("starting a link from .."+...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("pressiing on target.."); System.err.println("mouse pressed not linking. setting to link changing point"); }
private void mousePressedNotLinking(PNode node,PInputEvent e) { //System.err.println("got mouse presssed not linking.."); if (node instanceof FormalParameter) { if (lastParameterEntered == null) mouseEntered(e); FormalParameter param = (FormalParameter) node; //System.err.println("starting a link from .."+...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
private void mousePressedNotLinking(PNode node,PInputEvent e) { //System.err.println("got mouse presssed not linking.."); if (node instanceof FormalParameter) { if (lastParameterEntered == null) mouseEntered(e); FormalParameter param = (FormalParameter) node; //System.err.println("starting a link from .."+...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) { System.err.println("pressing on selection target.."); System.err.println("mousePressedSelectionTarget.... setting link state to changing point"); }
private void mousePressedSelectionTarget(PNode node) { //System.err.println("pressing on selection target.."); selectionTarget = (LinkSelectionTarget) node; selectionTarget.getLink().setSelected(true); //System.err.println("mousePressedSelectionTarget.... setting link state to changing point"); linkState = LINK_C...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
private void mousePressedSelectionTarget(PNode node) { //System.err.println("pressing on selection target.."); selectionTarget = (LinkSelectionTarget) node; selectionTarget.getLink().setSelected(true); //System.err.println("mousePressedSelectionTarget.... setting link state to changing point"); linkState = LINK_C...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("mouse released");
public void mouseReleased(PInputEvent e) { if (e.isPopupTrigger()) { // System.err.println("mouse released"); evaluatePopup(e); } }
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("building module links on input side");
private void startModuleLinks(PInputEvent e) { if (selectedModule == null) return; Point2D pos = e.getPosition(); boolean isInput = selectedModule.isOnInputSide(pos); Collection inputs = selectedModule.getInputParameters(); Collection outputs = selectedModule.getOutputParameters(); if (isInput == true || outp...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("building module links on output side");
private void startModuleLinks(PInputEvent e) { if (selectedModule == null) return; Point2D pos = e.getPosition(); boolean isInput = selectedModule.isOnInputSide(pos); Collection inputs = selectedModule.getInputParameters(); Collection outputs = selectedModule.getOutputParameters(); if (isInput == true || outp...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java
if (ChainBuilderAgent.DEBUG) System.err.println("start module links. link state is LINKING_MODULES");
private void startModuleLinks(PInputEvent e) { if (selectedModule == null) return; Point2D pos = e.getPosition(); boolean isInput = selectedModule.isOnInputSide(pos); Collection inputs = selectedModule.getInputParameters(); Collection outputs = selectedModule.getOutputParameters(); if (isInput == true || outp...
54698 /local/tlutelli/issta_data/temp/all_java5context/java/2006_temp/2006/54698/a806bf744289bb0eed666b235887c8680d549d94/ChainCreationEventHandler.java/buggy/SRC/org/openmicroscopy/shoola/agents/chainbuilder/piccolo/ChainCreationEventHandler.java