├── code_comments_coherence ├── coherence_dataset │ ├── __init__.py │ ├── tests.py │ ├── views.py │ ├── settings.py │ ├── admin.py │ └── models.py ├── code_comments_coherence │ ├── __init__.py │ └── wsgi.py ├── media │ ├── jfreechart │ │ ├── 0.6.0 │ │ │ └── jfreechart-060zip │ │ │ │ ├── extracted │ │ │ │ ├── target_identifiers.txt │ │ │ │ ├── LINSEN_report_files │ │ │ │ │ └── getnotify.txt │ │ │ │ ├── jfreechart-0.6.0 │ │ │ │ │ └── source │ │ │ │ │ │ └── com │ │ │ │ │ │ └── jrefinery │ │ │ │ │ │ └── chart │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── PlotFitAlgorithm.xml │ │ │ │ │ │ └── LinearPlotFitAlgorithm.xml │ │ │ │ │ │ ├── event │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ ├── AxisChangeListener.xml │ │ │ │ │ │ ├── PlotChangeListener.xml │ │ │ │ │ │ ├── ChartChangeListener.xml │ │ │ │ │ │ ├── TitleChangeListener.xml │ │ │ │ │ │ ├── LegendChangeListener.xml │ │ │ │ │ │ ├── PlotChangeEvent.xml │ │ │ │ │ │ ├── LegendChangeEvent.xml │ │ │ │ │ │ ├── TitleChangeEvent.xml │ │ │ │ │ │ └── AxisChangeEvent.xml │ │ │ │ │ │ ├── Legend.java │ │ │ │ │ │ ├── JFreeChartFrame.java │ │ │ │ │ │ ├── JFreeChartPanel.java │ │ │ │ │ │ ├── StandardLegend.java │ │ │ │ │ │ ├── ui │ │ │ │ │ │ └── package.html │ │ │ │ │ │ ├── XYItemRenderer.xml │ │ │ │ │ │ ├── HorizontalCategoryItemRenderer.xml │ │ │ │ │ │ ├── VerticalAxis.xml │ │ │ │ │ │ ├── HorizontalAxis.xml │ │ │ │ │ │ ├── PlotException.xml │ │ │ │ │ │ ├── VerticalValuePlot.xml │ │ │ │ │ │ ├── HorizontalValuePlot.xml │ │ │ │ │ │ ├── AxisNotCompatibleException.xml │ │ │ │ │ │ ├── PlotNotCompatibleException.xml │ │ │ │ │ │ ├── NumberTickUnit.xml │ │ │ │ │ │ ├── CategoryPlot.xml │ │ │ │ │ │ ├── CategoryAxis.xml │ │ │ │ │ │ ├── JFreeChartFrame.xml │ │ │ │ │ │ ├── TickUnit.java │ │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── DescriptionPanel.xml │ │ │ │ │ │ └── SampleXYDatasetThread.xml │ │ │ │ │ │ ├── TickUnit.xml │ │ │ │ │ │ ├── VerticalBarRenderer.xml │ │ │ │ │ │ └── HorizontalBarRenderer.xml │ │ │ │ └── target_sourcefiles │ │ │ │ │ └── getnotify.java │ │ │ │ └── jfreechart-0.6.0.zip │ │ └── 0.7.1 │ │ │ ├── jfreechart-071zip │ │ │ ├── jfreechart-0.7.1.zip │ │ │ ├── jfreechart-0.7.1_1.zip │ │ │ └── extracted │ │ │ │ └── jfreechart-0.7.1 │ │ │ │ ├── jars │ │ │ │ ├── jcommon-0.5.3.jar │ │ │ │ └── jfreechart-0.7.1.jar │ │ │ │ ├── source │ │ │ │ └── com │ │ │ │ │ └── jrefinery │ │ │ │ │ └── chart │ │ │ │ │ ├── package.html │ │ │ │ │ ├── tooltips │ │ │ │ │ └── package.html │ │ │ │ │ ├── data │ │ │ │ │ └── package.html │ │ │ │ │ ├── event │ │ │ │ │ └── package.html │ │ │ │ │ ├── Legend.java │ │ │ │ │ ├── JFreeChartPanel.java │ │ │ │ │ ├── StandardLegend.java │ │ │ │ │ ├── demo │ │ │ │ │ └── JFreeChartDemo.java │ │ │ │ │ └── ui │ │ │ │ │ └── package.html │ │ │ │ └── servlet │ │ │ │ └── web.xml │ │ │ └── jfreechart-071_1zip │ │ │ └── extracted │ │ │ └── jfreechart-0.7.1 │ │ │ ├── source │ │ │ └── com │ │ │ │ └── jrefinery │ │ │ │ └── chart │ │ │ │ ├── tooltips │ │ │ │ └── package.html │ │ │ │ ├── package.html │ │ │ │ ├── data │ │ │ │ └── package.html │ │ │ │ ├── event │ │ │ │ └── package.html │ │ │ │ ├── Legend.java │ │ │ │ ├── JFreeChartPanel.java │ │ │ │ ├── StandardLegend.java │ │ │ │ ├── demo │ │ │ │ └── JFreeChartDemo.java │ │ │ │ └── ui │ │ │ │ └── package.html │ │ │ ├── jars │ │ │ ├── jcommon-0.5.3.jar │ │ │ └── jfreechart-0.7.1.jar │ │ │ └── servlet │ │ │ └── web.xml │ ├── coffeemaker │ │ └── 1.0 │ │ │ └── coffeemaker_webzip │ │ │ ├── extracted │ │ │ └── CoffeeMaker_Web │ │ │ │ ├── WebContent │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── head.jsp │ │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ └── edu │ │ │ │ │ └── ncsu │ │ │ │ │ └── csc326 │ │ │ │ │ └── coffeemaker │ │ │ │ │ ├── Main.class │ │ │ │ │ ├── Recipe.class │ │ │ │ │ ├── Inventory.class │ │ │ │ │ ├── RecipeBook.class │ │ │ │ │ ├── CoffeeMaker.class │ │ │ │ │ └── exceptions │ │ │ │ │ ├── RecipeException.class │ │ │ │ │ └── InventoryException.class │ │ │ │ ├── src │ │ │ │ └── edu │ │ │ │ │ └── ncsu │ │ │ │ │ └── csc326 │ │ │ │ │ └── coffeemaker │ │ │ │ │ └── exceptions │ │ │ │ │ ├── RecipeException.java │ │ │ │ │ └── InventoryException.java │ │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ │ ├── org.eclipse.jst.common.project.facet.core.prefs │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ └── org.eclipse.wst.common.component │ │ │ │ └── .classpath │ │ │ └── CoffeeMaker_Web.zip │ └── jhotdraw │ │ └── 7.4.1 │ │ └── jhotdraw7zip │ │ ├── jhotdraw7.zip │ │ └── extracted │ │ └── jhotdraw7 │ │ └── src │ │ └── main │ │ ├── resources │ │ └── JHotDrawIcons.png │ │ └── java │ │ ├── org │ │ └── jhotdraw │ │ │ ├── samples │ │ │ ├── net │ │ │ │ ├── Labels_de.properties │ │ │ │ ├── images │ │ │ │ │ ├── createLink.png │ │ │ │ │ └── createNode.png │ │ │ │ ├── Labels.properties │ │ │ │ ├── Main.xml │ │ │ │ └── NetFactory.xml │ │ │ ├── pert │ │ │ │ ├── Labels_de.properties │ │ │ │ ├── images │ │ │ │ │ ├── PERT1.gif │ │ │ │ │ ├── PERT2.gif │ │ │ │ │ ├── PERT3.gif │ │ │ │ │ ├── createTask.png │ │ │ │ │ └── createDependency.png │ │ │ │ ├── Labels.properties │ │ │ │ ├── Main.xml │ │ │ │ └── PertFactory.xml │ │ │ ├── svg │ │ │ │ ├── action │ │ │ │ │ ├── images │ │ │ │ │ │ ├── moveUp.png │ │ │ │ │ │ ├── actions.png │ │ │ │ │ │ ├── alignEast.png │ │ │ │ │ │ ├── alignGrid.png │ │ │ │ │ │ ├── alignWest.png │ │ │ │ │ │ ├── editRedo.png │ │ │ │ │ │ ├── editUndo.png │ │ │ │ │ │ ├── moveDown.png │ │ │ │ │ │ ├── alignNorth.png │ │ │ │ │ │ ├── alignSouth.png │ │ │ │ │ │ ├── createArrow.png │ │ │ │ │ │ ├── createImage.png │ │ │ │ │ │ ├── createLine.png │ │ │ │ │ │ ├── createText.png │ │ │ │ │ │ ├── moveToBack.png │ │ │ │ │ │ ├── moveToFront.png │ │ │ │ │ │ ├── alignVertical.png │ │ │ │ │ │ ├── attributeFont.png │ │ │ │ │ │ ├── attributesPick.png │ │ │ │ │ │ ├── createEllipse.png │ │ │ │ │ │ ├── createPolygon.png │ │ │ │ │ │ ├── createScribble.png │ │ │ │ │ │ ├── createTextArea.png │ │ │ │ │ │ ├── selectionTool.png │ │ │ │ │ │ ├── alignHorizontal.png │ │ │ │ │ │ ├── attributeOpacity.png │ │ │ │ │ │ ├── attributesApply.png │ │ │ │ │ │ ├── createRectangle.png │ │ │ │ │ │ ├── attributeFillColor.png │ │ │ │ │ │ ├── attributeFontBold.png │ │ │ │ │ │ ├── attributeFontItalic.png │ │ │ │ │ │ ├── attributeFontSize.png │ │ │ │ │ │ ├── attributeStrokeCap.png │ │ │ │ │ │ ├── attributeStrokeJoin.png │ │ │ │ │ │ ├── attributeStrokeColor.png │ │ │ │ │ │ ├── attributeStrokeDashes.png │ │ │ │ │ │ ├── attributeStrokeWidth.png │ │ │ │ │ │ ├── attribute.color.noColor.png │ │ │ │ │ │ ├── attributeFontUnderline.png │ │ │ │ │ │ ├── attributeStrokeDecoration.png │ │ │ │ │ │ └── attribute.color.colorChooser.png │ │ │ │ │ └── SplitAction.xml │ │ │ │ ├── io │ │ │ │ │ └── SVGElementFactory.xml │ │ │ │ ├── figures │ │ │ │ │ └── SVGFigure.xml │ │ │ │ ├── Main.xml │ │ │ │ └── SVGConstants.xml │ │ │ ├── odg │ │ │ │ ├── io │ │ │ │ │ ├── ODGFigureFactory.xml │ │ │ │ │ └── DefaultODGFigureFactory.xml │ │ │ │ ├── figures │ │ │ │ │ └── ODGFigure.xml │ │ │ │ ├── ODGConstants.xml │ │ │ │ └── Main.xml │ │ │ ├── draw │ │ │ │ ├── Main.xml │ │ │ │ ├── DrawFigureFactory.xml │ │ │ │ ├── DrawApplet.html │ │ │ │ └── DrawLiveConnectApplet.html │ │ │ ├── teddy │ │ │ │ ├── Main.xml │ │ │ │ ├── regex │ │ │ │ │ └── MatchType.xml │ │ │ │ └── text │ │ │ │ │ └── NumberedEditorKit.xml │ │ │ └── mini │ │ │ │ ├── BorderRectangleFigure.xml │ │ │ │ ├── EditorSample.xml │ │ │ │ ├── LayouterSample.xml │ │ │ │ ├── FileIconsSample.xml │ │ │ │ └── CreationToolSample.xml │ │ │ ├── undo │ │ │ ├── images │ │ │ │ ├── editRedo.png │ │ │ │ └── editUndo.png │ │ │ ├── Labels_de.properties │ │ │ └── Labels.properties │ │ │ ├── app │ │ │ ├── resources │ │ │ │ ├── editCopy.png │ │ │ │ ├── editCut.png │ │ │ │ ├── editRedo.png │ │ │ │ ├── editUndo.png │ │ │ │ ├── fileNew.png │ │ │ │ ├── fileOpen.png │ │ │ │ ├── fileSave.png │ │ │ │ ├── editPaste.png │ │ │ │ ├── filePrint.png │ │ │ │ └── spacerIcon.png │ │ │ ├── action │ │ │ │ ├── images │ │ │ │ │ ├── editCut.png │ │ │ │ │ ├── fileNew.png │ │ │ │ │ ├── editCopy.png │ │ │ │ │ ├── editPaste.png │ │ │ │ │ ├── editRedo.png │ │ │ │ │ ├── editUndo.png │ │ │ │ │ ├── fileOpen.png │ │ │ │ │ ├── filePrint.png │ │ │ │ │ ├── fileSave.png │ │ │ │ │ └── spacerIcon.png │ │ │ │ ├── file │ │ │ │ │ ├── NewWindowAction.xml │ │ │ │ │ ├── SaveFileAsAction.xml │ │ │ │ │ ├── CloseFileAction.xml │ │ │ │ │ ├── LoadDirectoryAction.xml │ │ │ │ │ └── OpenDirectoryAction.xml │ │ │ │ ├── edit │ │ │ │ │ └── AbstractFindAction.xml │ │ │ │ ├── app │ │ │ │ │ ├── AbstractPreferencesAction.xml │ │ │ │ │ ├── AboutAction.xml │ │ │ │ │ ├── OpenApplicationAction.xml │ │ │ │ │ └── ReOpenApplicationAction.xml │ │ │ │ └── window │ │ │ │ │ └── ArrangeWindowsAction.xml │ │ │ └── PrintableView.xml │ │ │ ├── draw │ │ │ ├── action │ │ │ │ ├── images │ │ │ │ │ ├── _notes │ │ │ │ │ │ ├── fileNew.png.mno │ │ │ │ │ │ ├── actions.png.mno │ │ │ │ │ │ ├── alignEast.png.mno │ │ │ │ │ │ ├── alignGrid.png.mno │ │ │ │ │ │ ├── alignWest.png.mno │ │ │ │ │ │ ├── createLine.png.mno │ │ │ │ │ │ ├── createText.png.mno │ │ │ │ │ │ ├── editCopy.png.mno │ │ │ │ │ │ ├── editCut.png.mno │ │ │ │ │ │ ├── editPaste.png.mno │ │ │ │ │ │ ├── editRedo.png.mno │ │ │ │ │ │ ├── editUndo.png.mno │ │ │ │ │ │ ├── fileOpen.png.mno │ │ │ │ │ │ ├── filePrint.png.mno │ │ │ │ │ │ ├── fileSave.png.mno │ │ │ │ │ │ ├── moveDown.png.mno │ │ │ │ │ │ ├── moveEast.png.mno │ │ │ │ │ │ ├── moveNorth.png.mno │ │ │ │ │ │ ├── moveSouth.png.mno │ │ │ │ │ │ ├── moveToBack.png.mno │ │ │ │ │ │ ├── moveUp.png.mno │ │ │ │ │ │ ├── moveWest.png.mno │ │ │ │ │ │ ├── popupIcon.png.mno │ │ │ │ │ │ ├── alignGridSmall.png.mno │ │ │ │ │ │ ├── alignHorizontal.png.mno │ │ │ │ │ │ ├── alignNorth.png.mno │ │ │ │ │ │ ├── alignSouth.png.mno │ │ │ │ │ │ ├── alignVertical.png.mno │ │ │ │ │ │ ├── attributeFont.png.mno │ │ │ │ │ │ ├── attributeOpacity.png.mno │ │ │ │ │ │ ├── attributesApply.png.mno │ │ │ │ │ │ ├── attributesPick.png.mno │ │ │ │ │ │ ├── createArrow.png.mno │ │ │ │ │ │ ├── createDiamond.png.mno │ │ │ │ │ │ ├── createEllipse.png.mno │ │ │ │ │ │ ├── createImage.png.mno │ │ │ │ │ │ ├── createPolygon.png.mno │ │ │ │ │ │ ├── createRectangle.png.mno │ │ │ │ │ │ ├── createScribble.png.mno │ │ │ │ │ │ ├── createTextArea.png.mno │ │ │ │ │ │ ├── createTriangle.png.mno │ │ │ │ │ │ ├── moveToFront.png.mno │ │ │ │ │ │ ├── selectionGroup.png.mno │ │ │ │ │ │ ├── selectionTool.png.mno │ │ │ │ │ │ ├── selectionUngroup.png.mno │ │ │ │ │ │ ├── attributeFillColor.png.mno │ │ │ │ │ │ ├── attributeFontBold.png.mno │ │ │ │ │ │ ├── attributeFontItalic.png.mno │ │ │ │ │ │ ├── attributeStrokeCap.png.mno │ │ │ │ │ │ ├── attributeStrokeColor.png.mno │ │ │ │ │ │ ├── attributeStrokeJoin.png.mno │ │ │ │ │ │ ├── attributeStrokeType.png.mno │ │ │ │ │ │ ├── attributeStrokeWidth.png.mno │ │ │ │ │ │ ├── attributeTextColor.png.mno │ │ │ │ │ │ ├── createElbowConnection.png.mno │ │ │ │ │ │ ├── createLineConnection.png.mno │ │ │ │ │ │ ├── createRoundRectangle.png.mno │ │ │ │ │ │ ├── attributeFontBold_de.png.mno │ │ │ │ │ │ ├── attributeFontItalic_de.png.mno │ │ │ │ │ │ ├── attributeFontUnderline.png.mno │ │ │ │ │ │ ├── attributeStrokeDashes.png.mno │ │ │ │ │ │ ├── attributeStrokeDecoration.png.mno │ │ │ │ │ │ ├── attributeStrokePlacement.png.mno │ │ │ │ │ │ ├── createCurvedConnection.png.mno │ │ │ │ │ │ └── attributeFontUnderline_de.png.mno │ │ │ │ │ ├── moveUp.png │ │ │ │ │ ├── actions.png │ │ │ │ │ ├── editCopy.png │ │ │ │ │ ├── editCut.png │ │ │ │ │ ├── editRedo.png │ │ │ │ │ ├── editUndo.png │ │ │ │ │ ├── fileNew.png │ │ │ │ │ ├── fileOpen.png │ │ │ │ │ ├── fileSave.png │ │ │ │ │ ├── moveDown.png │ │ │ │ │ ├── moveEast.png │ │ │ │ │ ├── moveWest.png │ │ │ │ │ ├── alignEast.png │ │ │ │ │ ├── alignGrid.png │ │ │ │ │ ├── alignNorth.png │ │ │ │ │ ├── alignSouth.png │ │ │ │ │ ├── alignWest.png │ │ │ │ │ ├── createArrow.png │ │ │ │ │ ├── createImage.png │ │ │ │ │ ├── createLine.png │ │ │ │ │ ├── createText.png │ │ │ │ │ ├── editPaste.png │ │ │ │ │ ├── filePrint.png │ │ │ │ │ ├── moveNorth.png │ │ │ │ │ ├── moveSouth.png │ │ │ │ │ ├── moveToBack.png │ │ │ │ │ ├── moveToFront.png │ │ │ │ │ ├── popupIcon.png │ │ │ │ │ ├── spacerIcon.png │ │ │ │ │ ├── alignVertical.png │ │ │ │ │ ├── attributeFont.png │ │ │ │ │ ├── createDiamond.png │ │ │ │ │ ├── createEllipse.png │ │ │ │ │ ├── createPolygon.png │ │ │ │ │ ├── selectionTool.png │ │ │ │ │ ├── alignGridSmall.png │ │ │ │ │ ├── alignHorizontal.png │ │ │ │ │ ├── attributeOpacity.png │ │ │ │ │ ├── attributesApply.png │ │ │ │ │ ├── attributesPick.png │ │ │ │ │ ├── createRectangle.png │ │ │ │ │ ├── createScribble.png │ │ │ │ │ ├── createTextArea.png │ │ │ │ │ ├── createTriangle.png │ │ │ │ │ ├── selectionGroup.png │ │ │ │ │ ├── selectionUngroup.png │ │ │ │ │ ├── attributeFillColor.png │ │ │ │ │ ├── attributeFontBold.png │ │ │ │ │ ├── attributeStrokeCap.png │ │ │ │ │ ├── attributeTextColor.png │ │ │ │ │ ├── attributeFontBold_de.png │ │ │ │ │ ├── attributeFontItalic.png │ │ │ │ │ ├── attributeStrokeColor.png │ │ │ │ │ ├── attributeStrokeDashes.png │ │ │ │ │ ├── attributeStrokeJoin.png │ │ │ │ │ ├── attributeStrokeType.png │ │ │ │ │ ├── attributeStrokeWidth.png │ │ │ │ │ ├── createElbowConnection.png │ │ │ │ │ ├── createLineConnection.png │ │ │ │ │ ├── createRoundRectangle.png │ │ │ │ │ ├── attribute.color.noColor.png │ │ │ │ │ ├── attributeFontItalic_de.png │ │ │ │ │ ├── attributeFontUnderline.png │ │ │ │ │ ├── createCurvedConnection.png │ │ │ │ │ ├── attributeFontUnderline_de.png │ │ │ │ │ ├── attributeStrokeDecoration.png │ │ │ │ │ ├── attributeStrokePlacement.png │ │ │ │ │ └── attribute.color.colorChooser.png │ │ │ │ ├── Colors.xml │ │ │ │ └── UngroupAction.xml │ │ │ ├── tool │ │ │ │ ├── SelectAreaTracker.xml │ │ │ │ ├── DragTracker.xml │ │ │ │ └── HandleTracker.xml │ │ │ ├── handle │ │ │ │ └── HandleAttributeKeys.xml │ │ │ ├── event │ │ │ │ ├── FigureSelectionListener.xml │ │ │ │ ├── CompositeFigureListener.xml │ │ │ │ └── HandleListener.xml │ │ │ ├── DecoratedFigure.xml │ │ │ ├── locator │ │ │ │ ├── Locator.xml │ │ │ │ └── AbstractLocator.xml │ │ │ ├── layouter │ │ │ │ ├── Layouter.xml │ │ │ │ ├── AbstractLayouter.xml │ │ │ │ ├── VerticalLayouter.xml │ │ │ │ └── HorizontalLayouter.xml │ │ │ ├── GroupFigure.xml │ │ │ ├── liner │ │ │ │ └── Liner.xml │ │ │ ├── ListFigure.xml │ │ │ ├── FigureLayerComparator.xml │ │ │ └── decoration │ │ │ │ └── LineDecoration.xml │ │ │ ├── color │ │ │ ├── Generic CMYK Profile.icc │ │ │ ├── images │ │ │ │ ├── Slider.northThumbs.small.png │ │ │ │ └── Slider.westThumbs.small.png │ │ │ ├── ColorSystem.xml │ │ │ └── AbstractColorSystem.xml │ │ │ ├── beans │ │ │ └── Disposable.xml │ │ │ ├── gui │ │ │ ├── plaf │ │ │ │ ├── FontChooserUI.xml │ │ │ │ └── palette │ │ │ │ │ └── PaletteBorders.xml │ │ │ ├── event │ │ │ │ └── SheetListener.xml │ │ │ ├── fontchooser │ │ │ │ └── FontChooserModel.xml │ │ │ ├── datatransfer │ │ │ │ └── ClipboardUtil.xml │ │ │ └── DisclosureIcon.xml │ │ │ ├── xml │ │ │ └── DOMStorable.xml │ │ │ ├── net │ │ │ └── URIUtil.xml │ │ │ ├── geom │ │ │ ├── Shapes.xml │ │ │ └── GrowStroke.xml │ │ │ └── util │ │ │ └── ReversedList.xml │ │ └── net │ │ └── n3 │ │ └── nanoxml │ │ └── XMLParseException.xml ├── agreement_evaluations │ ├── models.py │ ├── tests.py │ ├── admin.py │ ├── views.py │ └── __init__.py ├── source_code_analysis │ ├── tests.py │ ├── views.py │ ├── templatetags │ │ ├── __init__.py │ │ └── admin_filter_forms.py │ ├── code_analysis │ │ └── __init__.py │ ├── fixtures │ │ ├── initial_data.json.tar.bz2 │ │ └── unpack_instructions.md │ ├── __init__.py │ └── templates │ │ └── admin │ │ ├── change_form_no_save.html │ │ └── change_list_extra_head.html ├── djcelery │ └── style.css ├── scripts │ ├── Report JHotDraw.zip │ ├── Log Processing JHotDraw Versions.pdf │ ├── methods_report_JHotDraw_7.1_7.2.xlsx │ ├── methods_report_JHotDraw_7.2_7.3.xlsx │ ├── methods_report_JHotDraw_7.0.9_7.1.xlsx │ ├── methods_report_JHotDraw_7.3_7.3.1.xlsx │ ├── methods_report_JHotDraw_7.5.1_7.6.xlsx │ ├── methods_report_JHotDraw_7.0.7_7.0.8.xlsx │ ├── methods_report_JHotDraw_7.0.8.2_7.0.9.xlsx │ ├── methods_report_JHotDraw_7.3.1_7.4.1.xlsx │ └── methods_report_JHotDraw_7.4.1_7.5.1.xlsx ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── it │ │ └── LC_MESSAGES │ │ │ └── django.mo │ └── en-us │ │ └── LC_MESSAGES │ │ └── django.mo ├── __init__.py ├── manage.py └── templates │ └── admin │ └── app_index.html ├── .gitignore └── RUNNING_Servers.md /code_comments_coherence/coherence_dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | comments_classification/scripts 3 | -------------------------------------------------------------------------------- /code_comments_coherence/code_comments_coherence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/coherence_dataset/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/target_identifiers.txt: -------------------------------------------------------------------------------- 1 | boolean 2 | getNotify 3 | -------------------------------------------------------------------------------- /code_comments_coherence/agreement_evaluations/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/agreement_evaluations/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/coherence_dataset/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/agreement_evaluations/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/agreement_evaluations/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /code_comments_coherence/djcelery/style.css: -------------------------------------------------------------------------------- 1 | .form-row.field-traceback p { 2 | font-family: monospace; 3 | white-space: pre; 4 | } 5 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/LINSEN_report_files/getnotify.txt: -------------------------------------------------------------------------------- 1 | boolean:=boolean, 2 | getNotify:=get,notify, 3 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /code_comments_coherence/scripts/Report JHotDraw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/Report JHotDraw.zip -------------------------------------------------------------------------------- /code_comments_coherence/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /code_comments_coherence/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /code_comments_coherence/locale/en-us/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/locale/en-us/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /code_comments_coherence/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 3 | Dummy __init__ module file necessary to allow notebooks (in the `notebooks` 4 | folder) to import this Django Project as a parent module. 5 | 6 | """ 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | :Author: Valerio Maggio 3 | :Organization: University of Naples Federico II 4 | :Contact: valerio.maggio@unina.it 5 | 6 | """ 7 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/code_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | :Author: Valerio Maggio 3 | :Organization: University of Naples Federico II 4 | :Contact: valerio.maggio@unina.it 5 | 6 | """ 7 | -------------------------------------------------------------------------------- /code_comments_coherence/scripts/Log Processing JHotDraw Versions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/Log Processing JHotDraw Versions.pdf -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.1_7.2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.1_7.2.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.2_7.3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.2_7.3.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/jhotdraw7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/jhotdraw7.zip -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.0.9_7.1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.0.9_7.1.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.3_7.3.1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.3_7.3.1.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.5.1_7.6.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.5.1_7.6.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.0.7_7.0.8.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.0.7_7.0.8.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.0.8.2_7.0.9.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.0.8.2_7.0.9.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.3.1_7.4.1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.3.1_7.4.1.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/scripts/methods_report_JHotDraw_7.4.1_7.5.1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/scripts/methods_report_JHotDraw_7.4.1_7.5.1.xlsx -------------------------------------------------------------------------------- /code_comments_coherence/agreement_evaluations/__init__.py: -------------------------------------------------------------------------------- 1 | # Adding App Label Translation support 2 | from django.utils.translation import gettext_noop 3 | 4 | gettext_noop("Agreement_Evaluations") 5 | gettext_noop("agreement_evaluations") -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/fixtures/initial_data.json.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/source_code_analysis/fixtures/initial_data.json.tar.bz2 -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/CoffeeMaker_Web.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/CoffeeMaker_Web.zip -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/jfreechart-0.6.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/jfreechart-0.6.0.zip -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/jfreechart-0.7.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/jfreechart-0.7.1.zip -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/jfreechart-0.7.1_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/jfreechart-0.7.1_1.zip -------------------------------------------------------------------------------- /code_comments_coherence/coherence_dataset/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Author: Valerio Maggio (@leriomaggio) 3 | Mail: valeriomaggio@gmail.com 4 | """ 5 | 6 | COHERENT = 1 7 | NOT_COHERENT = 0 8 | 9 | COHERENCE_CHOICES = ( 10 | (COHERENT, 'Positive'), 11 | (NOT_COHERENT, 'Negative'), 12 | ) -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The main classes in the JFreeChart class library; 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/tooltips/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for adding tooltips to charts. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/jars/jcommon-0.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/jars/jcommon-0.5.3.jar -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The main classes in the JFreeChart class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/tooltips/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for adding tooltips to charts. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/resources/JHotDrawIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/resources/JHotDrawIcons.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/jars/jcommon-0.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/jars/jcommon-0.5.3.jar -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The main classes in the JFreeChart class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | # Adding App Label Translation support 2 | from django.utils.translation import gettext_noop 3 | 4 | gettext_noop("Source_Code_Analysis") # Title case version for Admin Index 5 | gettext_noop("source_code_analysis") # lower case version for breadcrumbs -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/data/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Plot fitting classes contributed by Matthew Wright; 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The event classes in the JFreeChart class library; 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/jars/jfreechart-0.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/jars/jfreechart-0.7.1.jar -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/data/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Plot fitting classes contributed by Matthew Wright. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/event/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The event classes in the JFreeChart class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/jars/jfreechart-0.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/jars/jfreechart-0.7.1.jar -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/data/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Plot fitting classes contributed by Matthew Wright. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/event/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The event classes in the JFreeChart class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/Labels_de.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | 3 | 4 | nodeDefaultName=Knoten 5 | 6 | createNode.toolTipText=Knoten 7 | 8 | createLink.toolTipText=Verbindung 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/templates/admin/change_form_no_save.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/change_form.html" %} 2 | {% load i18n admin_urls admin_static admin_modify %} 3 | 4 | 5 | {% block submit_buttons_bottom %} 6 | {% if user.is_superuser %} 7 | {% submit_row %} 8 | {% endif %} 9 | {% endblock %} -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/templates/admin/change_list_extra_head.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/change_list.html" %} 2 | 3 | {% block extrastyle %} 4 | {{ block.super }} 5 | 10 | {% endblock %} 11 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/undo/images/editRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/undo/images/editRedo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/undo/images/editUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/undo/images/editUndo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/Legend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/Legend.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/Legend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/Legend.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editCopy.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editCut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editCut.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editRedo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editUndo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/fileNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/fileNew.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/fileOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/fileOpen.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/fileSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/fileSave.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/Legend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/Legend.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editCut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editCut.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/fileNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/fileNew.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editPaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/editPaste.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/filePrint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/filePrint.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/spacerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/resources/spacerIcon.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/fileNew.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveUp.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/Labels_de.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | 3 | 4 | pert.task.defaultName=Vorgang 5 | 6 | edit.createTask.toolTipText=Vorgang 7 | 8 | edit.createDependency.toolTipText=Abh\u00E4ngigkeit 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/PERT1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/PERT1.gif -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/PERT2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/PERT2.gif -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/PERT3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/PERT3.gif -------------------------------------------------------------------------------- /code_comments_coherence/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "code_comments_coherence.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editCopy.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editPaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editPaste.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editRedo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/editUndo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/fileOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/fileOpen.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/filePrint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/filePrint.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/fileSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/fileSave.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/Generic CMYK Profile.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/Generic CMYK Profile.icc -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/actions.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignEast.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignGrid.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignWest.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createLine.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createText.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/editCopy.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/editCut.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/editPaste.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/editRedo.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/editUndo.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/fileOpen.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/filePrint.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/fileSave.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveDown.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveEast.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveNorth.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveSouth.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveToBack.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveUp.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveWest.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/popupIcon.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/actions.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editCopy.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editCut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editCut.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editRedo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editUndo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/fileNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/fileNew.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/fileOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/fileOpen.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/fileSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/fileSave.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveDown.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveEast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveEast.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveWest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveWest.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/JFreeChartFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/JFreeChartFrame.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/JFreeChartPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/JFreeChartPanel.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/StandardLegend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/StandardLegend.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/JFreeChartPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/JFreeChartPanel.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/StandardLegend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/StandardLegend.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/spacerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/images/spacerIcon.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignGridSmall.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignHorizontal.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignNorth.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignSouth.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/alignVertical.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFont.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeOpacity.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributesApply.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributesPick.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createArrow.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createDiamond.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createEllipse.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createImage.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createPolygon.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createRectangle.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createScribble.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createTextArea.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createTriangle.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/moveToFront.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/selectionGroup.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/selectionTool.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/selectionUngroup.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignEast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignEast.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignGrid.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignNorth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignNorth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignSouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignSouth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignWest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignWest.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createArrow.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createImage.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createLine.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createText.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editPaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/editPaste.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/filePrint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/filePrint.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveNorth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveNorth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveSouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveSouth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveToBack.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/moveToFront.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/popupIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/popupIcon.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/spacerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/spacerIcon.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/images/createLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/images/createLink.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/images/createNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/images/createNode.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/createTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/createTask.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/JFreeChartPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/JFreeChartPanel.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/StandardLegend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/StandardLegend.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFillColor.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFontBold.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFontItalic.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokeCap.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokeColor.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokeJoin.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokeType.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokeWidth.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeTextColor.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createElbowConnection.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createLineConnection.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createRoundRectangle.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignVertical.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFont.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createDiamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createDiamond.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createEllipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createEllipse.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createPolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createPolygon.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/selectionTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/selectionTool.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveUp.png -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/Main.class -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/demo/JFreeChartDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/demo/JFreeChartDemo.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFontBold_de.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFontItalic_de.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFontUnderline.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokeDashes.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokeDecoration.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeStrokePlacement.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/createCurvedConnection.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignGridSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignGridSmall.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/alignHorizontal.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeOpacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeOpacity.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributesApply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributesApply.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributesPick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributesPick.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createRectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createRectangle.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createScribble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createScribble.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createTextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createTextArea.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createTriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createTriangle.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/selectionGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/selectionGroup.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/selectionUngroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/selectionUngroup.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/actions.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignEast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignEast.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignGrid.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignWest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignWest.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/editRedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/editRedo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/editUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/editUndo.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveDown.png -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/Recipe.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/Recipe.class -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/demo/JFreeChartDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/demo/JFreeChartDemo.java -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/images/Slider.northThumbs.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/images/Slider.northThumbs.small.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/images/Slider.westThumbs.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/images/Slider.westThumbs.small.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/_notes/attributeFontUnderline_de.png.mno: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFillColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFillColor.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontBold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontBold.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeCap.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeTextColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeTextColor.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/createDependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/images/createDependency.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignNorth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignNorth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignSouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignSouth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createArrow.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createImage.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createLine.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createText.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveToBack.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/moveToFront.png -------------------------------------------------------------------------------- /code_comments_coherence/coherence_dataset/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | 5 | from .models import Example 6 | 7 | class ExampleAdmin(admin.ModelAdmin): 8 | list_display = ['id', 'method', 'target'] 9 | list_filter = ['target', 'method__project'] 10 | 11 | admin.site.register(Example, ExampleAdmin) 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/Inventory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/Inventory.class -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/RecipeBook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/RecipeBook.class -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontBold_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontBold_de.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontItalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontItalic.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeColor.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeDashes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeDashes.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeJoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeJoin.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeType.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeWidth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createElbowConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createElbowConnection.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createLineConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createLineConnection.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createRoundRectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createRoundRectangle.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignVertical.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFont.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributesPick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributesPick.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createEllipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createEllipse.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createPolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createPolygon.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createScribble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createScribble.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createTextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createTextArea.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/selectionTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/selectionTool.png -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/CoffeeMaker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/CoffeeMaker.class -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/target_sourcefiles/getnotify.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns the flag that indicates whether or not the notification mechanism is enabled. 3 | * @return A boolean that indicates whether or not the notification mechanism is enabled; 4 | */ 5 | public boolean getNotify() { 6 | return this.notify; 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attribute.color.noColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attribute.color.noColor.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontItalic_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontItalic_de.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontUnderline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontUnderline.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createCurvedConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/createCurvedConnection.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/alignHorizontal.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeOpacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeOpacity.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributesApply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributesApply.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createRectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/createRectangle.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontUnderline_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeFontUnderline_de.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeDecoration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokeDecoration.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokePlacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attributeStrokePlacement.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFillColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFillColor.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontBold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontBold.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontItalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontItalic.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontSize.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeCap.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeJoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeJoin.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/ui/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | An optional package containing user interface components for editing chart properties (used in the JFreeChart demo application); 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/ui/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | An optional package containing user interface components for editing chart properties (used in the JFreeChart demo application); 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/source/com/jrefinery/chart/ui/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | An optional package containing user interface components for editing chart properties (used in the JFreeChart demo application); 5 | 6 | 7 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attribute.color.colorChooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/images/attribute.color.colorChooser.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeColor.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeDashes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeDashes.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeWidth.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attribute.color.noColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attribute.color.noColor.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontUnderline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeFontUnderline.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeDecoration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attributeStrokeDecoration.png -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attribute.color.colorChooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/images/attribute.color.colorChooser.png -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/exceptions/RecipeException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/exceptions/RecipeException.class -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/exceptions/InventoryException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-coherence-evaluation-tool/master/code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/build/classes/edu/ncsu/csc326/coffeemaker/exceptions/InventoryException.class -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/src/edu/ncsu/csc326/coffeemaker/exceptions/RecipeException.java: -------------------------------------------------------------------------------- 1 | package edu.ncsu.csc326.coffeemaker.exceptions; 2 | 3 | public class RecipeException extends Exception { 4 | 5 | private static final long serialVersionUID = 1L; 6 | 7 | public RecipeException(String msg) { 8 | super(msg); 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/src/edu/ncsu/csc326/coffeemaker/exceptions/InventoryException.java: -------------------------------------------------------------------------------- 1 | package edu.ncsu.csc326.coffeemaker.exceptions; 2 | 3 | public class InventoryException extends Exception { 4 | 5 | private static final long serialVersionUID = 1L; 6 | 7 | public InventoryException(String msg) { 8 | super(msg); 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/.settings/org.eclipse.jst.common.project.facet.core.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 25 10:45:49 EDT 2008 2 | classpath.helper/org.eclipse.jdt.launching.JRE_CONTAINER/owners=jst.java\:5.0 3 | classpath.helper/org.eclipse.jst.server.core.container\:\:org.eclipse.jst.server.tomcat.runtimeTarget\:\:Apache\ Tomcat\ v5.5/owners=jst.web\:2.4 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/tool/SelectAreaTracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/odg/io/ODGFigureFactory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/io/SVGElementFactory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 25 10:45:47 EDT 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.5 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/Labels.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | 3 | 4 | nodeDefaultName=Node 5 | 6 | imageDir=/org/jhotdraw/samples/net/images 7 | 8 | edit.createNode.toolTipText=Node 9 | 10 | edit.createNode.icon=${imageDir}/createNode.png 11 | 12 | edit.createLink.toolTipText=Link 13 | 14 | edit.createLink.icon=${imageDir}/createLink.png 15 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/XYItemRenderer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/beans/Disposable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/PrintableView.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/Labels.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | 3 | 4 | pert.task.defaultName=Task 5 | 6 | imageDir=/org/jhotdraw/samples/pert/images 7 | 8 | edit.createTask.toolTipText=Task 9 | 10 | edit.createTask.icon=${imageDir}/createTask.png 11 | 12 | edit.createDependency.toolTipText=Dependency 13 | 14 | edit.createDependency.icon=${imageDir}/createDependency.png 15 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/AxisChangeListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/PlotChangeListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/gui/plaf/FontChooserUI.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/WebContent/head.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/ChartChangeListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/TitleChangeListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/gui/plaf/palette/PaletteBorders.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/LegendChangeListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/tool/DragTracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/tool/HandleTracker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/gui/event/SheetListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/templates/admin/app_index.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/index.html" %} 2 | {% load i18n %} 3 | 4 | {% if not is_popup %} 5 | {% block breadcrumbs %} 6 | 14 | {% endblock %} 15 | {% endif %} 16 | 17 | {% block sidebar %}{% endblock %} 18 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/HorizontalCategoryItemRenderer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/handle/HandleAttributeKeys.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/code_comments_coherence/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for comments_classification project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "code_comments_coherence.settings") 12 | 13 | from django.core.wsgi import get_wsgi_application 14 | application = get_wsgi_application() 15 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/odg/figures/ODGFigure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/figures/SVGFigure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/gui/fontchooser/FontChooserModel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/event/FigureSelectionListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/VerticalAxis.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/xml/DOMStorable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/HorizontalAxis.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/PlotException.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/draw/Main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/Main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/Main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/Main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/coherence_dataset/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | from source_code_analysis.models import CodeMethod 4 | from .settings import COHERENCE_CHOICES 5 | 6 | class Example(models.Model): 7 | method = models.OneToOneField(CodeMethod, related_name='example') 8 | target = models.IntegerField(choices=COHERENCE_CHOICES) 9 | 10 | @property 11 | def code(self): 12 | return self.method.lexical_info.normalized_code 13 | 14 | @property 15 | def comment(self): 16 | return self.method.lexical_info.normalized_comment 17 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/teddy/Main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/DecoratedFigure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/locator/Locator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/PlotChangeEvent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071_1zip/extracted/jfreechart-0.7.1/servlet/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | JFreeChartServletDemo 12 | com.jrefinery.chart.demo.JFreeChartServletDemo 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.7.1/jfreechart-071zip/extracted/jfreechart-0.7.1/servlet/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | JFreeChartServletDemo 12 | com.jrefinery.chart.demo.JFreeChartServletDemo 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/LegendChangeEvent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/TitleChangeEvent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/layouter/Layouter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/net/NetFactory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/VerticalValuePlot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/pert/PertFactory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/HorizontalValuePlot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/odg/ODGConstants.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/SVGConstants.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/AxisNotCompatibleException.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/PlotNotCompatibleException.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/teddy/regex/MatchType.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/fixtures/unpack_instructions.md: -------------------------------------------------------------------------------- 1 | # How to unpack Initial Data: 2 | 3 | Initial Data are stored in `JSON` format, and are compliant with 4 | the specifications of Django `loaddata` models. 5 | 6 | To **unpack** the archive (`.tar.bz2`), it is simply required 7 | to execute the following command: 8 | 9 | tar -xvjf initial_data.json.tar.bz2 initial_data.json 10 | 11 | To **re-create** the compressed archive in the same `tar.bz2` format, the 12 | following command is required: 13 | 14 | tar -cvjf initial_data.json.tar.bz2 initial_data.json 15 | 16 | 17 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/event/CompositeFigureListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/source_code_analysis/templatetags/admin_filter_forms.py: -------------------------------------------------------------------------------- 1 | """ 2 | :Author: Valerio Maggio 3 | :Organization: University of Naples Federico II 4 | :Contact: valerio.maggio@unina.it 5 | 6 | """ 7 | 8 | from django.template import Library 9 | 10 | register = Library() 11 | 12 | @register.inclusion_tag('admin/admin_filter_forms.html', takes_context=True) 13 | def admin_filter_forms(context): 14 | """Custom templatetag to show `AdminFilterForm` instances. All the forms are in the 15 | context instance. Thus this method needs only to return the context instance in input.""" 16 | return context -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/file/NewWindowAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/layouter/AbstractLayouter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/draw/DrawFigureFactory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RUNNING_Servers.md: -------------------------------------------------------------------------------- 1 | 2 | # HOW to start Servers 3 | 4 | Many servers are required to start before running Django Dev-server: 5 | 6 | * [PostgreSQL](#postgres) 7 | * [rabbitMQ server](#rabitmq) 8 | * [Celery Worker Server](#celery) 9 | * [Django Server](#django) 10 | 11 | ## PostgreSQL 12 | 13 | `postgres -D /usr/local/var/postgres` 14 | 15 | ## rabbitMQ Server 16 | 17 | `sudo rabbitmq-server` 18 | 19 | ## Celery Worker Server 20 | 21 | `celery worker --loglevel=info` 22 | 23 | ## Django Server 24 | 25 | `python manage.py runserver` 26 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/file/SaveFileAsAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/teddy/text/NumberedEditorKit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/undo/Labels_de.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | edit.undo.text=R\u00FCckg\u00E4ngig 3 | 4 | edit.undo.accelerator.default=ctrl Z 5 | 6 | edit.redo.text=Wiederherstellen 7 | 8 | edit.redo.accelerator.default=ctrl Y 9 | 10 | edit.undo.icon=${image.dir}/editUndo.png 11 | 12 | edit.redo.icon=${image.dir}/editRedo.png 13 | 14 | edit.undo.accelerator=${edit.undo.accelerator.[$os]} 15 | edit.undo.accelerator.mac=meta Z 16 | edit.redo.accelerator.mac=meta shift Z 17 | edit.redo.accelerator=${edit.redo.accelerator.[$os]} 18 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/edit/AbstractFindAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/draw/DrawApplet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Applet HTML Page 4 | 5 | 6 | 7 |


Applet HTML Page

8 | 9 |

10 | 13 | 16 | 17 |

18 | 19 |
Generated by NetBeans IDE 20 | 21 | 22 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/odg/io/DefaultODGFigureFactory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/net/URIUtil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/coffeemaker/1.0/coffeemaker_webzip/extracted/CoffeeMaker_Web/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/NumberTickUnit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/CategoryPlot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/data/PlotFitAlgorithm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/GroupFigure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/draw/DrawLiveConnectApplet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Applet HTML Page 4 | 5 | 6 | 7 |


Applet HTML Page

8 | 9 |

10 | 12 | 13 | 14 |

15 | 16 |
Generated by NetBeans IDE 17 | 18 | 19 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/liner/Liner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/geom/Shapes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/odg/Main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/app/AbstractPreferencesAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/ColorSystem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/ListFigure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/geom/GrowStroke.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/CategoryAxis.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/JFreeChartFrame.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/event/AxisChangeEvent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/TickUnit.java: -------------------------------------------------------------------------------- 1 | package com.jrefinery.chart; 2 | 3 | /** 4 | * Base class representing a tick unit. This determines the spacing of the tick marks on an 5 | * axis. 6 | *

7 | * This class (and subclasses) should be immutable. 8 | */ 9 | public abstract class TickUnit implements Comparable { 10 | 11 | protected Number value; 12 | 13 | public TickUnit(Number value) { 14 | this.value = value; 15 | } 16 | 17 | public Number getValue() { 18 | return this.value; 19 | } 20 | 21 | public abstract int compareTo(Object o); 22 | 23 | } -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/Colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/demo/DescriptionPanel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/demo/SampleXYDatasetThread.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/net/n3/nanoxml/XMLParseException.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/app/AboutAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/layouter/VerticalLayouter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/FigureLayerComparator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/layouter/HorizontalLayouter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/file/CloseFileAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/action/UngroupAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/undo/Labels.properties: -------------------------------------------------------------------------------- 1 | # Sample ResourceBundle properties file 2 | edit.redo.accelerator.default=ctrl Y 3 | edit.redo.accelerator.mac=meta shift Z 4 | edit.redo.accelerator=${edit.redo.accelerator.[$os]} 5 | edit.redo.icon=${image.dir}/editRedo.png 6 | edit.redo.mnemonic= 7 | edit.redo.text=Redo 8 | edit.redo.toolTipText= 9 | edit.undo.accelerator.default=ctrl Z 10 | edit.undo.accelerator.mac=meta Z 11 | edit.undo.accelerator=${edit.undo.accelerator.[$os]} 12 | edit.undo.icon=${image.dir}/editUndo.png 13 | edit.undo.mnemonic= 14 | edit.undo.text=Undo 15 | edit.undo.toolTipText= 16 | image.dir=/org/jhotdraw/undo/images 17 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/color/AbstractColorSystem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/event/HandleListener.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/locator/AbstractLocator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/svg/action/SplitAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/draw/decoration/LineDecoration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/gui/datatransfer/ClipboardUtil.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/mini/BorderRectangleFigure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/mini/EditorSample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/file/LoadDirectoryAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/file/OpenDirectoryAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/mini/LayouterSample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/app/OpenApplicationAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/mini/FileIconsSample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/window/ArrangeWindowsAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/TickUnit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/app/action/app/ReOpenApplicationAction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/samples/mini/CreationToolSample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/util/ReversedList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/VerticalBarRenderer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jhotdraw/7.4.1/jhotdraw7zip/extracted/jhotdraw7/src/main/java/org/jhotdraw/gui/DisclosureIcon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/HorizontalBarRenderer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /code_comments_coherence/media/jfreechart/0.6.0/jfreechart-060zip/extracted/jfreechart-0.6.0/source/com/jrefinery/chart/data/LinearPlotFitAlgorithm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | --------------------------------------------------------------------------------